From b14c217fb62bbdf4350c2877b889f42fe2ba69b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 2 Mar 2020 21:09:21 +0100 Subject: [PATCH] render: csd: minimize: 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 778809a4..f4a263d8 100644 --- a/doc/foot.5.scd +++ b/doc/foot.5.scd @@ -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_. diff --git a/render.c b/render.c index c9aa8f78..c3ea0744 100644 --- a/render.c +++ b/render.c @@ -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;