diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-02-05 08:28:44 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-02-05 08:28:44 +1100 |
| commit | 140c6bab1fb3e141534c2cacbb7b80be99bc25f8 (patch) | |
| tree | acea59dae644dec0cf097c6686a5e0a2d59aecce /pywal/colors.py | |
| parent | ac2cee675153c17030875459e01913e2cb3f249e (diff) | |
colors: Fix comment color in dark themes. Closes #178
Diffstat (limited to 'pywal/colors.py')
| -rw-r--r-- | pywal/colors.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pywal/colors.py b/pywal/colors.py index 3109a34..8688770 100644 --- a/pywal/colors.py +++ b/pywal/colors.py @@ -75,6 +75,7 @@ def create_palette(img, colors, light): # Manually adjust colors. raw_colors[7] = util.blend_color(raw_colors[7], "#EEEEEE") + raw_colors[8] = util.darken_color(raw_colors[7], 0.30) raw_colors[15] = util.blend_color(raw_colors[15], "#EEEEEE") colors = {"wallpaper": img, "alpha": util.Color.alpha_num, |
