summaryrefslogtreecommitdiff
path: root/dwm/themes/default.h
diff options
context:
space:
mode:
authorniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2024-03-20 11:56:18 +0100
committerniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2024-03-20 11:56:18 +0100
commit15663cf4d0666670ff1dffcac9d56aef87752c3f (patch)
treeef6de4c178d2d8ffaa257b5df2e040bccdd48df9 /dwm/themes/default.h
a
Diffstat (limited to 'dwm/themes/default.h')
-rw-r--r--dwm/themes/default.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/dwm/themes/default.h b/dwm/themes/default.h
new file mode 100644
index 0000000..5cdceb2
--- /dev/null
+++ b/dwm/themes/default.h
@@ -0,0 +1,14 @@
+static const char col_gray1[] = "#222222";
+static const char col_gray2[] = "#444444";
+static const char col_gray3[] = "#bbbbbb";
+static const char col_gray4[] = "#eeeeee";
+static const char col_cyan[] = "#005577";
+
+
+static const char *colors[][3] = {
+ /* fg bg border */
+ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
+ [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+};
+
+