render: csd: maximize: change default color to a lighter green

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

View file

@ -149,7 +149,7 @@ component.
Minimize button's AARRGGBB color. Default: _ff1e90ff_.
*button-maximize-color*
Maximize button's AARRGGBB color. Default: _ff00ff00_.
Maximize button's AARRGGBB color. Default: _ff30ff30_.
*button-close-color*
Close button's AARRGGBB color. Default: _ffff3030_.

View file

@ -878,7 +878,7 @@ render_csd_button(struct terminal *term, enum csd_surface surf_idx)
break;
case CSD_SURF_MAXIMIZE:
_color = 0xff00ff00;
_color = 0xff30ff30;
is_set = &term->conf->csd.color.maximize_set;
conf_color = &term->conf->csd.color.maximize;
is_active = term->active_surface == TERM_SURF_BUTTON_MAXIMIZE;