aboutsummaryrefslogtreecommitdiffstats
path: root/config.h
diff options
context:
space:
mode:
authorRomain Gonçalves <commit@rgoncalves.se>2021-11-21 15:55:46 +0100
committerRomain Gonçalves <commit@rgoncalves.se>2021-11-21 16:07:48 +0100
commit9c1f2b1833ee5f6db98a152acfe05d8b00ac3346 (patch)
treee55c41193722c0f01a1a6e11191855b21359594a /config.h
parentc61e629bbd75d57cabadbf63fb5aabde056b57db (diff)
downloaddwm-9c1f2b1833ee5f6db98a152acfe05d8b00ac3346.tar.gz
config.h: Use monochromatic colorscheme
Diffstat (limited to 'config.h')
-rw-r--r--config.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/config.h b/config.h
index 1b9330c..83d3b04 100644
--- a/config.h
+++ b/config.h
@@ -9,15 +9,13 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "Terminus:size=9", "monospace:size=9" };
static const char dmenufont[] = "Terminus:size=9";
-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";
+static const char col_white[] = "#ffffff";
+static const char col_black[] = "#000000";
+static const char col_gray[] = "#666666";
static const char *colors[][3] = {
/* fg bg border */
- [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+ [SchemeNorm] = { col_white, col_black, col_gray },
+ [SchemeSel] = { col_black, col_white, col_white },
};
/* tagging */
@@ -59,7 +57,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_black, "-nf", col_white, "-sb", col_white, "-sf", col_black, NULL };
static const char *termcmd[] = { "st", NULL };
static Key keys[] = {
remember that computers suck.