mirror of
https://github.com/Hopiu/gruvbox-contrib.git
synced 2026-03-16 22:00:23 +00:00
Add color definitions for st
This commit is contained in:
parent
f29d7a0c4d
commit
e1ad3afb13
2 changed files with 60 additions and 0 deletions
30
st/gruvbox-dark.h
Normal file
30
st/gruvbox-dark.h
Normal file
|
|
@ -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;
|
||||||
30
st/gruvbox-light.h
Normal file
30
st/gruvbox-light.h
Normal file
|
|
@ -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;
|
||||||
Loading…
Reference in a new issue