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

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

View file

@ -146,7 +146,7 @@ component.
minimize/maximize/close buttons. Default: _22_.
*button-minimize-color*
Minimize button's AARRGGBB color. Default: _ff0000ff_.
Minimize button's AARRGGBB color. Default: _ff1e90ff_.
*button-maximize-color*
Maximize button's AARRGGBB color. Default: _ff00ff00_.

View file

@ -871,7 +871,7 @@ render_csd_button(struct terminal *term, enum csd_surface surf_idx)
switch (surf_idx) {
case CSD_SURF_MINIMIZE:
_color = 0xff0000ff;
_color = 0xff1e90ff;
is_set = &term->conf->csd.color.minimize_set;
conf_color = &term->conf->csd.color.minimize;
is_active = term->active_surface == TERM_SURF_BUTTON_MINIMIZE;