From 63a3d6ce03f0de8bf5f1d7d8ccc789970c8c11c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 2 Mar 2020 21:10:25 +0100 Subject: [PATCH] render: csd: close: change default color to a lighter blue --- doc/foot.5.scd | 2 +- render.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/foot.5.scd b/doc/foot.5.scd index f4a263d8..8d5f9bab 100644 --- a/doc/foot.5.scd +++ b/doc/foot.5.scd @@ -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 diff --git a/render.c b/render.c index c3ea0744..468b2d31 100644 --- a/render.c +++ b/render.c @@ -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;