summaryrefslogtreecommitdiff
path: root/src/ui/color.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-01-03 22:41:26 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-01-03 22:41:26 +0200
commit22e98db6e211b41c802fcf671cf2dd63fdd3f9d5 (patch)
tree735361b4fa418a0970136fc86b0ea8b9e41f3491 /src/ui/color.c
parentfdd459ba738793a2c51adbf2bd8ee904ca060ed3 (diff)
Tweaked text color of Pure White UI theme
Slightly darker.
Diffstat (limited to 'src/ui/color.c')
-rw-r--r--src/ui/color.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/color.c b/src/ui/color.c
index dc19dd39..0cabdc49 100644
--- a/src/ui/color.c
+++ b/src/ui/color.c
@@ -212,7 +212,8 @@ void setThemePalette_Color(enum iColorTheme theme) {
212 copy_(uiBackgroundSelected_ColorId, orange_ColorId); 212 copy_(uiBackgroundSelected_ColorId, orange_ColorId);
213 copy_(uiBackgroundPressed_ColorId, cyan_ColorId); 213 copy_(uiBackgroundPressed_ColorId, cyan_ColorId);
214 copy_(uiBackgroundFramelessHover_ColorId, orange_ColorId); 214 copy_(uiBackgroundFramelessHover_ColorId, orange_ColorId);
215 copy_(uiText_ColorId, gray25_ColorId); 215 set_Color(uiText_ColorId,
216 mix_Color(get_Color(black_ColorId), get_Color(gray25_ColorId), 0.5f));
216 copy_(uiTextPressed_ColorId, black_ColorId); 217 copy_(uiTextPressed_ColorId, black_ColorId);
217 copy_(uiTextDisabled_ColorId, gray75_ColorId); 218 copy_(uiTextDisabled_ColorId, gray75_ColorId);
218 copy_(uiTextStrong_ColorId, black_ColorId); 219 copy_(uiTextStrong_ColorId, black_ColorId);