about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config.def.h15
-rw-r--r--wal.h13
2 files changed, 13 insertions, 15 deletions
diff --git a/config.def.h b/config.def.h
index 1fa060c..21c7c1a 100644
--- a/config.def.h
+++ b/config.def.h
@@ -15,8 +15,19 @@ static const int showbar            = 1;     /* 0 means no bar */
 static const int topbar             = 1;     /* 0 means bottom bar */
 static const int focusonwheel       = 0;
 static const char *fonts[]          = { "monospace:size=10", "Symbola:size=10", "Symbols Nerd Font Mono:size=10" };
-/* pywal integration */
-#include "wal.h"
+static const char norm_fg[] = "#fbf1c7";
+static const char norm_bg[] = "#282828";
+static const char norm_border[] = "#555753";
+
+static const char sel_fg[] = "#fbf1c7";
+static const char sel_bg[] = "#d65d0e";
+static const char sel_border[] = "#d79921";
+
+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
+};
 
 /* tagging */
 static const char *tags[] = { "1", "2", "3", "4", "5" };
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
-};