about summary refs log tree commit diff stats
path: root/colors-wal.h
diff options
context:
space:
mode:
Diffstat (limited to 'colors-wal.h')
-rw-r--r--colors-wal.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/colors-wal.h b/colors-wal.h
new file mode 100644
index 0000000..e04f5fc
--- /dev/null
+++ b/colors-wal.h
@@ -0,0 +1,13 @@
+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
+};