diff options
Diffstat (limited to 'scripts/kconfig/lxdialog/util.c')
-rw-r--r-- | scripts/kconfig/lxdialog/util.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/scripts/kconfig/lxdialog/util.c b/scripts/kconfig/lxdialog/util.c index 358f9cc19c53..e73a36df93b4 100644 --- a/scripts/kconfig/lxdialog/util.c +++ b/scripts/kconfig/lxdialog/util.c | |||
@@ -138,6 +138,19 @@ static void set_blackbg_theme(void) | |||
138 | DLG_COLOR(darrow, COLOR_RED, COLOR_BLACK, false); | 138 | DLG_COLOR(darrow, COLOR_RED, COLOR_BLACK, false); |
139 | } | 139 | } |
140 | 140 | ||
141 | static void set_bluetitle_theme(void) | ||
142 | { | ||
143 | set_classic_theme(); | ||
144 | DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true); | ||
145 | DLG_COLOR(button_key_active, COLOR_YELLOW, COLOR_BLUE, true); | ||
146 | DLG_COLOR(button_label_active, COLOR_WHITE, COLOR_BLUE, true); | ||
147 | DLG_COLOR(searchbox_title, COLOR_BLUE, COLOR_WHITE, true); | ||
148 | DLG_COLOR(position_indicator, COLOR_BLUE, COLOR_WHITE, true); | ||
149 | DLG_COLOR(tag, COLOR_BLUE, COLOR_WHITE, true); | ||
150 | DLG_COLOR(tag_key, COLOR_BLUE, COLOR_WHITE, true); | ||
151 | |||
152 | } | ||
153 | |||
141 | /* | 154 | /* |
142 | * Select color theme | 155 | * Select color theme |
143 | */ | 156 | */ |
@@ -145,9 +158,11 @@ static int set_theme(const char *theme) | |||
145 | { | 158 | { |
146 | int use_color = 1; | 159 | int use_color = 1; |
147 | if (!theme) | 160 | if (!theme) |
148 | set_classic_theme(); | 161 | set_bluetitle_theme(); |
149 | else if (strcmp(theme, "classic") == 0) | 162 | else if (strcmp(theme, "classic") == 0) |
150 | set_classic_theme(); | 163 | set_classic_theme(); |
164 | else if (strcmp(theme, "bluetitle") == 0) | ||
165 | set_bluetitle_theme(); | ||
151 | else if (strcmp(theme, "blackbg") == 0) | 166 | else if (strcmp(theme, "blackbg") == 0) |
152 | set_blackbg_theme(); | 167 | set_blackbg_theme(); |
153 | else if (strcmp(theme, "mono") == 0) | 168 | else if (strcmp(theme, "mono") == 0) |