summaryrefslogtreecommitdiff
path: root/gruvbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'gruvbox.h')
-rw-r--r--gruvbox.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/gruvbox.h b/gruvbox.h
new file mode 100644
index 0000000..1f62023
--- /dev/null
+++ b/gruvbox.h
@@ -0,0 +1,22 @@
+/* Gruvbox colorscheme */
+static const char *colorname[] = {
+ /* 8 normal colors */
+ [0] = "#282828", /* black */
+ [1] = "#cc241d", /* red */
+ [2] = "#98971a", /* green */
+ [3] = "#d79921", /* yellow */
+ [4] = "#458588", /* blue */
+ [5] = "#b16286", /* magenta */
+ [6] = "#689d6a", /* cyan */
+ [7] = "#a89984", /* white */
+
+ /* 8 bright colors */
+ [8] = "#928374", /* black */
+ [9] = "#fb4934", /* red */
+ [10] = "#b8bb26", /* green */
+ [11] = "#fabd2f", /* yellow */
+ [12] = "#83a598", /* blue */
+ [13] = "#d3869b", /* magenta */
+ [14] = "#8ec07c", /* cyan */
+ [15] = "#ebdbb2", /* white */
+};