aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
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} },
};
-