summaryrefslogtreecommitdiff
path: root/src/ui/color.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-08-26 19:25:34 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-08-26 19:25:34 +0300
commit12d4ec900bfb57041571ab71f7e09e5d8b818174 (patch)
treeed4b6244ed8e0cc79676be3a9eb18e9e4f58b7d2 /src/ui/color.c
parentc8afe01adf5b6c5e0a0313b5a91279cbdc7079d7 (diff)
LabelWidget: Separate color for disabled buttons
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 441db18d..e6130aad 100644
--- a/src/ui/color.c
+++ b/src/ui/color.c
@@ -84,6 +84,7 @@ void setThemePalette_Color(enum iColorTheme theme) {
84 copy_(uiTextStrong_ColorId, white_ColorId); 84 copy_(uiTextStrong_ColorId, white_ColorId);
85 copy_(uiTextSelected_ColorId, white_ColorId); 85 copy_(uiTextSelected_ColorId, white_ColorId);
86 copy_(uiTextFramelessHover_ColorId, white_ColorId); 86 copy_(uiTextFramelessHover_ColorId, white_ColorId);
87 copy_(uiTextDisabled_ColorId, gray25_ColorId);
87 copy_(uiTextShortcut_ColorId, cyan_ColorId); 88 copy_(uiTextShortcut_ColorId, cyan_ColorId);
88 copy_(uiTextAction_ColorId, cyan_ColorId); 89 copy_(uiTextAction_ColorId, cyan_ColorId);
89 copy_(uiTextCaution_ColorId, orange_ColorId); 90 copy_(uiTextCaution_ColorId, orange_ColorId);
@@ -126,6 +127,7 @@ void setThemePalette_Color(enum iColorTheme theme) {
126 copy_(uiTextPressed_ColorId, black_ColorId); 127 copy_(uiTextPressed_ColorId, black_ColorId);
127 copy_(uiTextStrong_ColorId, white_ColorId); 128 copy_(uiTextStrong_ColorId, white_ColorId);
128 copy_(uiTextSelected_ColorId, white_ColorId); 129 copy_(uiTextSelected_ColorId, white_ColorId);
130 copy_(uiTextDisabled_ColorId, gray50_ColorId);
129 copy_(uiTextFramelessHover_ColorId, white_ColorId); 131 copy_(uiTextFramelessHover_ColorId, white_ColorId);
130 copy_(uiTextShortcut_ColorId, cyan_ColorId); 132 copy_(uiTextShortcut_ColorId, cyan_ColorId);
131 copy_(uiTextAction_ColorId, cyan_ColorId); 133 copy_(uiTextAction_ColorId, cyan_ColorId);
@@ -168,6 +170,7 @@ void setThemePalette_Color(enum iColorTheme theme) {
168 copy_(uiTextStrong_ColorId, teal_ColorId); 170 copy_(uiTextStrong_ColorId, teal_ColorId);
169 copy_(uiTextPressed_ColorId, black_ColorId); 171 copy_(uiTextPressed_ColorId, black_ColorId);
170 copy_(uiTextSelected_ColorId, black_ColorId); 172 copy_(uiTextSelected_ColorId, black_ColorId);
173 copy_(uiTextDisabled_ColorId, gray50_ColorId);
171 copy_(uiTextFramelessHover_ColorId, black_ColorId); 174 copy_(uiTextFramelessHover_ColorId, black_ColorId);
172 copy_(uiTextShortcut_ColorId, brown_ColorId); 175 copy_(uiTextShortcut_ColorId, brown_ColorId);
173 copy_(uiTextAction_ColorId, brown_ColorId); 176 copy_(uiTextAction_ColorId, brown_ColorId);
@@ -208,6 +211,7 @@ void setThemePalette_Color(enum iColorTheme theme) {
208 copy_(uiBackgroundFramelessHover_ColorId, orange_ColorId); 211 copy_(uiBackgroundFramelessHover_ColorId, orange_ColorId);
209 copy_(uiText_ColorId, gray25_ColorId); 212 copy_(uiText_ColorId, gray25_ColorId);
210 copy_(uiTextPressed_ColorId, black_ColorId); 213 copy_(uiTextPressed_ColorId, black_ColorId);
214 copy_(uiTextDisabled_ColorId, gray75_ColorId);
211 copy_(uiTextStrong_ColorId, black_ColorId); 215 copy_(uiTextStrong_ColorId, black_ColorId);
212 copy_(uiTextSelected_ColorId, black_ColorId); 216 copy_(uiTextSelected_ColorId, black_ColorId);
213 copy_(uiTextFramelessHover_ColorId, black_ColorId); 217 copy_(uiTextFramelessHover_ColorId, black_ColorId);