mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
theme: update built-in theme colors
Use #dddad6 for active title/border and #f6f5f4 for inactive. It matches default GTK colors reasonably well.
This commit is contained in:
parent
be942a6413
commit
85c775c3b1
2 changed files with 23 additions and 13 deletions
14
src/theme.c
14
src/theme.c
|
|
@ -65,19 +65,19 @@ void theme_builtin(struct theme *theme)
|
|||
{
|
||||
theme->border_width = 1;
|
||||
|
||||
parse_hexstr("#3c7cb7", theme->window_active_border_color);
|
||||
parse_hexstr("#efece6", theme->window_inactive_border_color);
|
||||
parse_hexstr("#dddad6", theme->window_active_border_color);
|
||||
parse_hexstr("#f6f5f4", theme->window_inactive_border_color);
|
||||
|
||||
parse_hexstr("#589bda", theme->window_active_title_bg_color);
|
||||
parse_hexstr("#efece6", theme->window_inactive_title_bg_color);
|
||||
parse_hexstr("#dddad6", theme->window_active_title_bg_color);
|
||||
parse_hexstr("#f6f5f4", theme->window_inactive_title_bg_color);
|
||||
|
||||
parse_hexstr("#ffffff", theme->window_active_button_unpressed_image_color);
|
||||
parse_hexstr("#000000", theme->window_active_button_unpressed_image_color);
|
||||
parse_hexstr("#000000", theme->window_inactive_button_unpressed_image_color);
|
||||
|
||||
parse_hexstr("#fcfbfa", theme->menu_items_bg_color);
|
||||
parse_hexstr("#000000", theme->menu_items_text_color);
|
||||
parse_hexstr("#4a90d9", theme->menu_items_active_bg_color);
|
||||
parse_hexstr("#ffffff", theme->menu_items_active_text_color);
|
||||
parse_hexstr("#dddad6", theme->menu_items_active_bg_color);
|
||||
parse_hexstr("#000000", theme->menu_items_active_text_color);
|
||||
}
|
||||
|
||||
static bool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue