about summary refs log tree commit diff
path: root/config.h
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-11 00:13:14 +0200
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-11 00:13:14 +0200
commit8fea4e55cda7ee8f6263271dc718901d5fa85bbf (patch)
treec97cd69213250fe7ad3403cb1589ce73026f5f7b /config.h
parentUpdated status bar (diff)
downloaddwm-8fea4e55cda7ee8f6263271dc718901d5fa85bbf.tar.gz
dwm-8fea4e55cda7ee8f6263271dc718901d5fa85bbf.tar.bz2
dwm-8fea4e55cda7ee8f6263271dc718901d5fa85bbf.zip
Added separation of colors in config.h for title bar [Patch]
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.h b/config.h
index a454afb..52eb8ad 100644
--- a/config.h
+++ b/config.h
@@ -20,11 +20,15 @@ static const char *colors[][3]      = {
 	/*               fg         bg         border   */
 	[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
 	[SchemeSel]  = { col_gray4, col_cyan,  col_cyan  },
+	[SchemeTitle]= { col_gray4, col_cyan,  col_cyan  },
+
 };
 static const unsigned int alphas[][3]      = {
 	/*               fg      bg        border     */
 	[SchemeNorm] = { OPAQUE, baralpha, borderalpha },
 	[SchemeSel]  = { OPAQUE, baralpha, borderalpha },
+	[SchemeTitle]= { OPAQUE, baralpha,  borderalpha},
+
 };
 
 /* tagging */