diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-07-06 09:12:36 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-07-06 09:12:36 +1000 |
| commit | 1e504e9c1e0ba423118ba9c6982c1a8f00760fda (patch) | |
| tree | de7f07bb99fdad06ea4ce596a0e888dd80d70cf9 /pywal/theme.py | |
| parent | f26a8bbb5edcc2a485b2952db57742a2a1053187 (diff) | |
theme: Fix alpha. Closes #271
Diffstat (limited to 'pywal/theme.py')
| -rw-r--r-- | pywal/theme.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/theme.py b/pywal/theme.py index 5c065a0..37936c5 100644 --- a/pywal/theme.py +++ b/pywal/theme.py @@ -72,7 +72,7 @@ def parse(theme_file): data["wallpaper"] = "None" if "alpha" not in data: - data["alpha"] = "100" + data["alpha"] = util.Color.alpha_num # Terminal.sexy format. if "color" in data: |
