From c4b5a667c94f895c3d3c8a61e4a6739185b7b1b6 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 3 Feb 2018 10:16:05 +1100 Subject: [PATCH] colors: Add light theme support. --- pywal/colors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywal/colors.py b/pywal/colors.py index b93831d..8d5ea87 100644 --- a/pywal/colors.py +++ b/pywal/colors.py @@ -64,7 +64,7 @@ def create_palette(img, colors, light): if light: # Manually adjust colors. raw_colors[7] = raw_colors[0] - raw_colors[0] = util.lighten_color(raw_colors[15], 0.9) + raw_colors[0] = util.lighten_color(raw_colors[15], 0.85) raw_colors[15] = raw_colors[7] raw_colors[8] = util.lighten_color(raw_colors[7], 0.25)