summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-15 12:39:52 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-15 19:03:41 +0200
commit9796d312f488a23f64b025b72993a6e879adcb52 (patch)
tree891176d7bc0f5fe7cbe19bfc78a941e4b4bde1a0 /src
parent350e8ead5e2397a02c41d4e8e0817f7aad0d9fa3 (diff)
Color: Disabled button color in "Pure White"
Diffstat (limited to 'src')
-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 9776440f..79606cd0 100644
--- a/src/ui/color.c
+++ b/src/ui/color.c
@@ -241,7 +241,8 @@ void setThemePalette_Color(enum iColorTheme theme) {
241 set_Color(uiText_ColorId, 241 set_Color(uiText_ColorId,
242 mix_Color(get_Color(black_ColorId), get_Color(gray25_ColorId), 0.5f)); 242 mix_Color(get_Color(black_ColorId), get_Color(gray25_ColorId), 0.5f));
243 copy_(uiTextPressed_ColorId, black_ColorId); 243 copy_(uiTextPressed_ColorId, black_ColorId);
244 copy_(uiTextDisabled_ColorId, gray75_ColorId); 244 set_Color(uiTextDisabled_ColorId,
245 mix_Color(get_Color(gray75_ColorId), get_Color(gray50_ColorId), 0.5f));
245 copy_(uiTextStrong_ColorId, black_ColorId); 246 copy_(uiTextStrong_ColorId, black_ColorId);
246 copy_(uiTextDim_ColorId, gray25_ColorId); 247 copy_(uiTextDim_ColorId, gray25_ColorId);
247 copy_(uiTextSelected_ColorId, black_ColorId); 248 copy_(uiTextSelected_ColorId, black_ColorId);