render: csd: close: change default color to a lighter blue

This commit is contained in:
Daniel Eklöf 2020-03-02 21:10:25 +01:00
parent b14c217fb6
commit 63a3d6ce03
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 2 additions and 2 deletions

View file

@ -152,7 +152,7 @@ component.
Maximize button's AARRGGBB color. Default: _ff00ff00_.
*button-close-color*
Close button's AARRGGBB color. Default: _ffff0000_.
Close button's AARRGGBB color. Default: _ffff3030_.
# FONT FORMAT

View file

@ -885,7 +885,7 @@ render_csd_button(struct terminal *term, enum csd_surface surf_idx)
break;
case CSD_SURF_CLOSE:
_color = 0xffff0000;
_color = 0xffff3030;
is_set = &term->conf->csd.color.close_set;
conf_color = &term->conf->csd.color.close;
is_active = term->active_surface == TERM_SURF_BUTTON_CLOSE;