summaryrefslogtreecommitdiff
path: root/theme/frankfurt/colors.h
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2022-10-04 20:42:52 -0500
committerstkhan <personal@slickd.xyz>2022-10-04 20:42:52 -0500
commitadcf16baa5ef16f83931667e8117c3a0a5cce9ac (patch)
tree1434c01c466e4c02c7f7d1e7d70a8d25be99b0cc /theme/frankfurt/colors.h
parent4e89c3fcb632c8f5848c020c717f7ca184bf38d1 (diff)
franfurt theme
Diffstat (limited to 'theme/frankfurt/colors.h')
-rw-r--r--theme/frankfurt/colors.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/theme/frankfurt/colors.h b/theme/frankfurt/colors.h
new file mode 100644
index 0000000..e3fa018
--- /dev/null
+++ b/theme/frankfurt/colors.h
@@ -0,0 +1,47 @@
+/* dwm color configuration */
+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[] = "#7c82a5";
+
+/* st config */
+
+float alpha = 0.7; /* some themes may have this lighter or stronger then others */
+
+static const char *colorname[] = {
+ /* 8 normal colors */
+ "#050704", /* black */
+ "#d80e0e", /* red */
+ "#06f115", /* green */
+ "#d8ff00", /* yellow */
+ "#0050d2", /* blue */
+ "#802bee", /* magenta */
+ "#23f0f2", /* cyan */
+ "#cfcfcf", /* white */
+
+ /* 8 bright colors */
+ "#cfcfcf", /* black */
+ "#ff2857", /* red */
+ "#79fc6a", /* green */
+ "#d7ff62", /* yellow */
+ "#698eff", /* blue */
+ "#a461fb", /* magenta */
+ "#91fff5", /* cyan */
+ "#ffffff", /* white */
+
+ [255] = 0,
+
+ /* special colors */
+ "#cccccc",
+ "#555555",
+ "#000000", /* background */
+ "#cfcfcf", /* foreground */
+};
+/*
+ * tabbed config
+*/
+static const char* normbgcolor = "#222222";
+static const char* normfgcolor = "#cccccc";
+static const char* selbgcolor = "#d29169";
+static const char* selfgcolor = "#7c82a5";