summaryrefslogtreecommitdiff
path: root/dwm/themes/veloren.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'dwm/themes/veloren.def.h')
-rw-r--r--dwm/themes/veloren.def.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/dwm/themes/veloren.def.h b/dwm/themes/veloren.def.h
new file mode 100644
index 0000000..153aaba
--- /dev/null
+++ b/dwm/themes/veloren.def.h
@@ -0,0 +1,25 @@
+static const char norm_fg[] = "#fff";
+static const char norm_bg[] = "#000000";
+static const char norm_border[] = "#862";
+
+static const char sel_fg[] = "#fff";
+static const char sel_bg[] = "#652";
+//static const char sel_border[] = "#862";
+static const char sel_border[] = "#fff";
+
+static const char urg_fg[] = "#dcbdbd";
+static const char urg_bg[] = "#B76779";
+static const char urg_border[] = "#B76779";
+
+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
+// [SchemeUrg] = { urg_fg, urg_bg, urg_border },
+};
+
+static const char col_gray1[] = "#000000";
+static const char col_gray2[] = "#9a8484";
+static const char col_gray3[] = "#dcbdbd";
+static const char col_gray4[] = "#dcbdbd";
+static const char col_cyan[] = "#C16A7F";