summaryrefslogtreecommitdiff
path: root/src/ui/color.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-01-18 19:21:05 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-01-18 19:21:05 +0200
commite39a4035a622e1e9e1573cc567cb43652fdef231 (patch)
tree4df756ec4ad40e179166d24918c6229e51bfc807 /src/ui/color.c
parent1ac1db7f0b508e6219dce4aa2fbd2c5515472506 (diff)
SidebarWidget: New color for feed names
Separate the entry titles from the feed titles.
Diffstat (limited to 'src/ui/color.c')
-rw-r--r--src/ui/color.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/color.c b/src/ui/color.c
index 0cabdc49..0227bd3e 100644
--- a/src/ui/color.c
+++ b/src/ui/color.c
@@ -252,6 +252,10 @@ void setThemePalette_Color(enum iColorTheme theme) {
252 copy_(uiMatching_ColorId, orange_ColorId); 252 copy_(uiMatching_ColorId, orange_ColorId);
253 break; 253 break;
254 } 254 }
255 set_Color(uiSubheading_ColorId,
256 mix_Color(get_Color(uiText_ColorId),
257 get_Color(uiIcon_ColorId),
258 isDark_ColorTheme(theme) ? 0.5f : 0.75f));
255 set_Color(uiBackgroundUnfocusedSelection_ColorId, mix_Color(get_Color(uiBackground_ColorId), 259 set_Color(uiBackgroundUnfocusedSelection_ColorId, mix_Color(get_Color(uiBackground_ColorId),
256 get_Color(uiBackgroundSelected_ColorId), 260 get_Color(uiBackgroundSelected_ColorId),
257 isDark_ColorTheme(theme) ? 0.25f : 0.66f)); 261 isDark_ColorTheme(theme) ? 0.25f : 0.66f));