From eefcb39068773e51a57f908f3f0fe190938b58b2 Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Sat, 9 Oct 2021 12:45:35 +0300 Subject: Color: Adjusted sidebar folder background The light theme folder backgrounds were a tad dark. --- src/ui/color.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/ui/color.c b/src/ui/color.c index 4f275ae5..0f7d4368 100644 --- a/src/ui/color.c +++ b/src/ui/color.c @@ -309,9 +309,10 @@ void setThemePalette_Color(enum iColorTheme theme) { setHsl_Color(uiBackgroundFolder_ColorId, addSatLum_HSLColor(get_HSLColor(uiBackgroundSidebar_ColorId), 0, - theme == pureBlack_ColorTheme ? -1 - : theme == dark_ColorTheme ? -0.04 - : -0.075)); + theme == pureBlack_ColorTheme ? -1 + : theme == dark_ColorTheme ? -0.04 + : theme == pureWhite_ColorTheme ? -0.04 + : -0.055)); set_Color(uiTextShortcut_ColorId, mix_Color(get_Color(uiTextShortcut_ColorId), get_Color(uiBackground_ColorId), 0.4f)); -- cgit v1.2.3