From 140c6bab1fb3e141534c2cacbb7b80be99bc25f8 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 5 Feb 2018 08:28:44 +1100 Subject: [PATCH] colors: Fix comment color in dark themes. Closes #178 --- pywal/colors.py | 1 + 1 file changed, 1 insertion(+) 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,