mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-14 05:33:59 -04:00
render: csd: close: change default color to a lighter blue
This commit is contained in:
parent
b14c217fb6
commit
63a3d6ce03
2 changed files with 2 additions and 2 deletions
|
|
@ -152,7 +152,7 @@ component.
|
||||||
Maximize button's AARRGGBB color. Default: _ff00ff00_.
|
Maximize button's AARRGGBB color. Default: _ff00ff00_.
|
||||||
|
|
||||||
*button-close-color*
|
*button-close-color*
|
||||||
Close button's AARRGGBB color. Default: _ffff0000_.
|
Close button's AARRGGBB color. Default: _ffff3030_.
|
||||||
|
|
||||||
# FONT FORMAT
|
# FONT FORMAT
|
||||||
|
|
||||||
|
|
|
||||||
2
render.c
2
render.c
|
|
@ -885,7 +885,7 @@ render_csd_button(struct terminal *term, enum csd_surface surf_idx)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CSD_SURF_CLOSE:
|
case CSD_SURF_CLOSE:
|
||||||
_color = 0xffff0000;
|
_color = 0xffff3030;
|
||||||
is_set = &term->conf->csd.color.close_set;
|
is_set = &term->conf->csd.color.close_set;
|
||||||
conf_color = &term->conf->csd.color.close;
|
conf_color = &term->conf->csd.color.close;
|
||||||
is_active = term->active_surface == TERM_SURF_BUTTON_CLOSE;
|
is_active = term->active_surface == TERM_SURF_BUTTON_CLOSE;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue