From b5de7dc48da01733f7a419f2f5f91a58fdacac51 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Fri, 20 Nov 2020 19:59:12 +0100 Subject: [PATCH] Border change --- config.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config.h b/config.h index e8373c1..c66977d 100644 --- a/config.h +++ b/config.h @@ -20,7 +20,8 @@ static const char text_color[] = "#f3f4f5"; static const char inactive_text_color[] = "#676E7D"; static const char urgent_bg_color[] = "#E53935"; static const char indicator_color[] = "#474747"; -static const char border_selected_color[] = "#777777"; +static const char border_selected_color[] = "#ffffff21"; +static const char border_unselected_color[] = "#00000021"; static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; @@ -29,7 +30,7 @@ static const char col_gray4[] = "#eeeeee"; static const char col_cyan[] = "#005577"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, + [SchemeNorm] = { col_gray3, col_gray1, border_unselected_color }, [SchemeSel] = { col_gray4, col_gray1, border_selected_color }, };