summaryrefslogtreecommitdiff
path: root/colors.h
diff options
context:
space:
mode:
authorrafa_99 <rafa99@protonmail.com>2021-04-13 14:09:44 +0100
committerrafa_99 <rafa99@protonmail.com>2021-04-13 14:09:44 +0100
commit647758f97b2e427b11419c46dcb8dd7964f87ddb (patch)
treef3ba82d15da9608f9b0f4c70b3881d78424cb2a6 /colors.h
parentd4ad21d69a85cfe907c5834ab4188d40f64e1dc6 (diff)
Stocked Out st
Diffstat (limited to 'colors.h')
-rw-r--r--colors.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/colors.h b/colors.h
deleted file mode 100644
index 7a966a6..0000000
--- a/colors.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/* 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",
-};
-
-
-/*
- * Default colors (colorname index)
- * foreground, background, cursor, reverse cursor
- */
-unsigned int defaultfg = 7;
-unsigned int defaultbg = 258;
-static unsigned int defaultcs = 256;
-static unsigned int defaultrcs = 257;