From e1ad3afb13ce23dc4a1fdd7989ca202089f0ceb4 Mon Sep 17 00:00:00 2001 From: Lukas Werling Date: Tue, 9 Jun 2015 13:26:22 +0200 Subject: [PATCH] Add color definitions for st --- st/gruvbox-dark.h | 30 ++++++++++++++++++++++++++++++ st/gruvbox-light.h | 30 ++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 st/gruvbox-dark.h create mode 100644 st/gruvbox-light.h diff --git a/st/gruvbox-dark.h b/st/gruvbox-dark.h new file mode 100644 index 0000000..5ce5700 --- /dev/null +++ b/st/gruvbox-dark.h @@ -0,0 +1,30 @@ +/* gruvbox-dark colorscheme */ + +/* Terminal colors (16 first used in escape sequence) */ +static const char *colorname[] = { + "#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */ + "#cc241d", + "#98971a", + "#d79921", + "#458588", + "#b16286", + "#689d6a", + "#a89984", + "#928374", + "#fb4934", + "#b8bb26", + "#fabd2f", + "#83a598", + "#d3869b", + "#8ec07c", + "#ebdbb2", +}; + + +/* + * Default colors (colorname index) + * foreground, background, cursor + */ +static unsigned int defaultfg = 15; +static unsigned int defaultbg = 0; +static unsigned int defaultcs = 15; diff --git a/st/gruvbox-light.h b/st/gruvbox-light.h new file mode 100644 index 0000000..189ee35 --- /dev/null +++ b/st/gruvbox-light.h @@ -0,0 +1,30 @@ +/* gruvbox-light colorscheme */ + +/* Terminal colors (16 first used in escape sequence) */ +static const char *colorname[] = { + "#fbf1c7", /* hard contrast: #f9f5d7 / soft contrast: #f2e5bc */ + "#cc241d", + "#98971a", + "#d79921", + "#458588", + "#b16286", + "#689d6a", + "#7c6f64", + "#928374", + "#9d0006", + "#79740e", + "#b57614", + "#076678", + "#8f3f71", + "#427b58", + "#3c3836", +}; + + +/* + * Default colors (colorname index) + * foreground, background, cursor + */ +static unsigned int defaultfg = 15; +static unsigned int defaultbg = 0; +static unsigned int defaultcs = 15;