about summary refs log tree commit diff stats
path: root/colors-wal-dwm.h
diff options
context:
space:
mode:
authorAcid Bong <acid-bong@cock.lt>2022-10-18 18:46:12 +0300
committerAcid Bong <acid-bong@cock.lt>2022-10-18 18:46:12 +0300
commit4aa4ed4a5889f6b47f5c00a685a63cb44cf20786 (patch)
treedea092e7d8602fbb44707cb5ad129ea4056deec4 /colors-wal-dwm.h
parent1ba0abf1e079359c1509773b81a20ded9fb550f6 (diff)
downloaddwm-4aa4ed4a5889f6b47f5c00a685a63cb44cf20786.tar.gz
suggested colourscheme by pywal
Diffstat (limited to 'colors-wal-dwm.h')
-rw-r--r--colors-wal-dwm.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/colors-wal-dwm.h b/colors-wal-dwm.h
new file mode 100644
index 0000000..7e04ed2
--- /dev/null
+++ b/colors-wal-dwm.h
@@ -0,0 +1,13 @@
+static const char norm_fg[] = "#bfc0c0";
+static const char norm_bg[] = "#020305";
+static const char norm_border[] = "#414243";
+
+static const char sel_fg[] = "#bfc0c0";
+static const char sel_bg[] = "#b1421a";
+static const char sel_border[] = "#bfc0c0";
+
+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
+};