From 9796d312f488a23f64b025b72993a6e879adcb52 Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Mon, 15 Mar 2021 12:39:52 +0200 Subject: Color: Disabled button color in "Pure White" --- src/ui/color.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/ui') 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) { set_Color(uiText_ColorId, mix_Color(get_Color(black_ColorId), get_Color(gray25_ColorId), 0.5f)); copy_(uiTextPressed_ColorId, black_ColorId); - copy_(uiTextDisabled_ColorId, gray75_ColorId); + set_Color(uiTextDisabled_ColorId, + mix_Color(get_Color(gray75_ColorId), get_Color(gray50_ColorId), 0.5f)); copy_(uiTextStrong_ColorId, black_ColorId); copy_(uiTextDim_ColorId, gray25_ColorId); copy_(uiTextSelected_ColorId, black_ColorId); -- cgit v1.2.3