about summary refs log tree commit diff stats
path: root/wal.h
diff options
context:
space:
mode:
authorAcid Bong <acid-bong@cock.lt>2022-12-04 00:41:48 +0200
committerAcid Bong <acid-bong@cock.lt>2022-12-04 00:41:48 +0200
commit45f20f2934788ca5f2e7ae6216e695ecfc80682e (patch)
tree4de54ca0df56c4c8b502bf88520dcd88062fd3b5 /wal.h
parentdce66cbb27321b355f3f7e855bfb619faf2ce957 (diff)
downloaddwm-45f20f2934788ca5f2e7ae6216e695ecfc80682e.tar.gz
colours: moved to main config; also gruvbox, baby
Diffstat (limited to 'wal.h')
-rw-r--r--wal.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/wal.h b/wal.h
deleted file mode 100644
index e04f5fc..0000000
--- a/wal.h
+++ /dev/null
@@ -1,13 +0,0 @@
-static const char norm_fg[] = "#e5e5e5";
-static const char norm_bg[] = "#414243";
-static const char norm_border[] = "#414243";
-
-static const char sel_fg[] = "#ebecec";
-static const char sel_bg[] = "#b1421a";
-static const char sel_border[] = "#f19e25";
-
-static const char *colors[][3]      = {
-    /*               fg           bg         border                         */
-    [SchemeNorm] = { norm_fg,     norm_bg,   norm_border }, // unfocused wins
-    [SchemeSel]  = { sel_fg,      sel_bg,    sel_border },  // the focused win
-};