aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorc2023-12-05 20:50:32 -0500
committerc2023-12-05 20:50:32 -0500
commit6bf8456862368e600a1ced1aeb2cf4358c3df25a (patch)
tree59436f510b78fc326581cfa745664277de1055dd /config.h
parent5b8cfb233a4d63cd0c35b7b4a0873da97e25ecce (diff)
README
Diffstat (limited to 'config.h')
-rw-r--r--config.h11
1 files changed, 7 insertions, 4 deletions
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} },
};
-