From 6bf8456862368e600a1ced1aeb2cf4358c3df25a Mon Sep 17 00:00:00 2001 From: c Date: Tue, 5 Dec 2023 20:50:32 -0500 Subject: README --- config.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index 3ca4e38..ea0b97a 100644 --- a/config.h +++ b/config.h @@ -21,10 +21,14 @@ static char sel_bg_col[] = "#83a598"; static char sel_bor_col[] = "#83a598"; static char sel_fg_col[] = "#282828"; +static char title_bg_col[] = "#282828"; +static char title_fg_col[] = "#83a598"; + static char *colors[][3] = { - /* Scheme, fg, bg, border. */ - [SchemeNorm] = { norm_fg_col, norm_bg_col, norm_bor_col }, - [SchemeSel] = { sel_fg_col, sel_bg_col, sel_bor_col }, + /* Scheme, fg, bg, border. */ + [SchemeNorm] = { norm_fg_col, norm_bg_col, norm_bor_col }, + [SchemeSel] = { sel_fg_col, sel_bg_col, sel_bor_col }, + [SchemeTitle] = { title_fg_col, title_bg_col, NULL }, }; /* Layouts. */ @@ -171,4 +175,3 @@ static const Button buttons[] = { { ClkTagBar, MODKEY, Button1, tag, {0} }, { ClkTagBar, MODKEY, Button3, toggletag, {0} }, }; - -- cgit v1.2.3