summaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2024-03-05 13:31:13 -0500
committerMalfurious <m@lfurio.us>2024-03-05 20:18:45 -0500
commit7e6124d8123768548fc95f6efa5572fd044283ea (patch)
tree4d7798352ffa7213ec8ed7f71784b35cddc2575f /config.def.h
parent7eca502b6a5598a846903495cfa94c115644bcea (diff)
downloaddwm-7e6124d8123768548fc95f6efa5572fd044283ea.tar.gz
dwm-7e6124d8123768548fc95f6efa5572fd044283ea.zip
config: Set colors
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h
index d73818d..2af452a 100644
--- a/config.def.h
+++ b/config.def.h
@@ -7,11 +7,11 @@ 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_gray1[] = "#080808";
+static const char col_gray2[] = "#222222";
static const char col_gray3[] = "#bbbbbb";
static const char col_gray4[] = "#eeeeee";
-static const char col_cyan[] = "#005577";
+static const char col_cyan[] = "#002a3b";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },