about summary refs log tree commit diff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..ce6d16f
--- /dev/null
+++ b/config.h
@@ -0,0 +1,20 @@
+#ifndef config_def_h_INCLUDED
+#define config_def_h_INCLUDED
+
+static const char *default_font = "Monospace 14";
+
+struct clr_scheme scheme = {
+  /* colors */
+  .bg = {.bgra = {15, 15, 15, 225}},
+  .fg = {.bgra = {45, 45, 45, 225}},
+  .high = {.bgra = {100, 100, 100, 225}},
+  .swipe = {.bgra = {100, 255, 100, 64}},
+  .text = {.color = UINT32_MAX},
+};
+
+/* layers is an ordered list of layouts, used to cycle through */
+static enum layout_id layers[] = {
+  Full, // First layout is the default layout on startup
+};
+
+#endif // config_def_h_INCLUDED