aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h24
1 files changed, 15 insertions, 9 deletions
diff --git a/config.def.h b/config.def.h
index a2ac963..485ab8d 100644
--- a/config.def.h
+++ b/config.def.h
@@ -7,15 +7,21 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10";
-static const char col_gray1[] = "#222222";
-static const char col_gray2[] = "#444444";
-static const char col_gray3[] = "#bbbbbb";
-static const char col_gray4[] = "#eeeeee";
-static const char col_cyan[] = "#005577";
+
+/*
+ * Base16 dwm template by Daniel Mulford
+ * Tomorrow Night scheme by Chris Kempson (http://chriskempson.com)
+ */
+static const char col_base00[] = "#1d1f21";
+static const char col_base01[] = "#282a2e";
+static const char col_base02[] = "#373b41";
+static const char col_base04[] = "#b4b7b4";
+static const char col_base0C[] = "#8abeb7";
+static const char col_base0D[] = "#81a2be";
static const char *colors[][3] = {
- /* fg bg border */
- [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+ /* fg bg border */
+ [SchemeNorm] = { col_base04, col_base01, col_base02 },
+ [SchemeSel] = { col_base00, col_base0D, col_base0C },
};
/* tagging */
@@ -57,7 +63,7 @@ static const Layout layouts[] = {
/* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
-static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
+static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_base01, "-nf", col_base04, "-sb", col_base0D, "-sf", col_base00, NULL };
static const char *termcmd[] = { "st", NULL };
static Key keys[] = {