summaryrefslogtreecommitdiff
path: root/colors.h
diff options
context:
space:
mode:
authorrafa_99 <rafa99@protonmail.com>2020-05-26 15:42:48 +0000
committerrafa_99 <rafa99@protonmail.com>2020-05-26 15:42:48 +0000
commit84a31c83e2878243b25adba3da912f42485ba40d (patch)
tree4f970101cf617678e4a94015909082d582638f21 /colors.h
parent47561ed1e0ab18d4be35bad778a8427a2e42a3ab (diff)
Added Custom Config
Diffstat (limited to 'colors.h')
-rw-r--r--colors.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/colors.h b/colors.h
new file mode 100644
index 0000000..bc2470b
--- /dev/null
+++ b/colors.h
@@ -0,0 +1,29 @@
+/* Terminal colors (16 first used in escape sequence) */
+static const char *colorname[] = {
+ /* 8 normal colors */
+ "black",
+ "red3",
+ "green3",
+ "yellow3",
+ "blue2",
+ "magenta3",
+ "cyan3",
+ "gray90",
+
+ /* 8 bright colors */
+ "gray50",
+ "red",
+ "green",
+ "yellow",
+ "#5c5cff",
+ "magenta",
+ "cyan",
+ "white",
+
+ [255] = 0,
+
+ /* more colors can be added after 255 to use with DefaultXX */
+ "#cccccc",
+ "#555555",
+ "black",
+};