summaryrefslogtreecommitdiff
path: root/miku.h
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-01-01 22:23:40 +0500
committerpryazha <pryadeiniv@mail.ru>2025-01-01 22:23:40 +0500
commit4471aa029fb2f52ce6cfa3c480c6343e8fdb31c4 (patch)
treee453bfb53d930eca2c20df288af1776e8e72373b /miku.h
initial commit
Diffstat (limited to 'miku.h')
-rw-r--r--miku.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/miku.h b/miku.h
new file mode 100644
index 0000000..8449657
--- /dev/null
+++ b/miku.h
@@ -0,0 +1,30 @@
+static const char *colorname[] = {
+ /* 8 normal colors */
+ [0] = "#242829",
+ [1] = "#df2683",
+ [2] = "#13868c",
+ [3] = "#fcfcdf",
+ [4] = "#1a86b9",
+ [5] = "#bc7fd2",
+ [6] = "#7cc7d6",
+ [7] = "#4a4b4b",
+
+ /* 8 bright colors */
+ [8] = "#7b8b99",
+ [9] = "#df2683",
+ [10] = "#13868c",
+ [11] = "#fcfcdf",
+ [12] = "#1a86b9",
+ [13] = "#bc7fd2",
+ [14] = "#7cc7d6",
+ [15] = "#dcd7d7",
+};
+
+/*
+ * Default colors (colorname index)
+ * foreground, background, cursor, reverse cursor
+ */
+unsigned int defaultfg = 15;
+unsigned int defaultbg = 0;
+unsigned int defaultcs = 15;
+static unsigned int defaultrcs = 257;