gruvbox
This commit is contained in:
parent
5da712dda3
commit
4d5ef9c0a2
1 changed files with 21 additions and 34 deletions
55
config.def.h
55
config.def.h
|
@ -96,48 +96,35 @@ unsigned int tabspaces = 8;
|
||||||
/* Terminal colors (16 first used in escape sequence) */
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
static const char *colorname[] = {
|
static const char *colorname[] = {
|
||||||
/* 8 normal colors */
|
/* 8 normal colors */
|
||||||
[0] = "#121212", /* hard contrast: #1d2021 / soft contrast: #32302f */
|
[0] = "#1d2021", /* hard contrast: #1d2021 / soft contrast: #32302f */
|
||||||
[1] = "#ff5555", /* red */
|
[1] = "#cc241d", /* red */
|
||||||
[2] = "#50fa7b", /* green */
|
[2] = "#98971a", /* green */
|
||||||
[3] = "#f1fa8c", /* yellow */
|
[3] = "#d79921", /* yellow */
|
||||||
[4] = "#bd93f9", /* blue */
|
[4] = "#458588", /* blue */
|
||||||
[5] = "#ff79c6", /* magenta */
|
[5] = "#b16286", /* magenta */
|
||||||
[6] = "#8be9fd", /* cyan */
|
[6] = "#689d6a", /* cyan */
|
||||||
[7] = "#bbbbbb", /* white */
|
[7] = "#a89984", /* white */
|
||||||
|
|
||||||
/* 8 bright colors */
|
/* 8 bright colors */
|
||||||
[8] = "#44475a", /* black */
|
[8] = "#928374", /* black */
|
||||||
[9] = "#ff5555", /* red */
|
[9] = "#fb4934", /* red */
|
||||||
[10] = "#50fa7b", /* green */
|
[10] = "#b8bb26", /* green */
|
||||||
[11] = "#f1fa8c", /* yellow */
|
[11] = "#fabd2f", /* yellow */
|
||||||
[12] = "#bd93f9", /* blue */
|
[12] = "#83a598", /* blue */
|
||||||
[13] = "#ff79c6", /* magenta */
|
[13] = "#d3869b", /* magenta */
|
||||||
[14] = "#8be9fd", /* cyan */
|
[14] = "#8ec07c", /* cyan */
|
||||||
[15] = "#ffffff", /* white */
|
[15] = "#ebdbb2", /* white */
|
||||||
|
|
||||||
/* special colors */
|
|
||||||
[256] = "#121212", /* background */
|
|
||||||
[257] = "#f8f8f2", /* foreground */
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default colors (colorname index)
|
* Default colors (colorname index)
|
||||||
* foreground, background, cursor
|
* foreground, background, cursor, reverse cursor
|
||||||
*/
|
*/
|
||||||
unsigned int defaultfg = 257;
|
unsigned int defaultfg = 15;
|
||||||
unsigned int defaultbg = 256;
|
unsigned int defaultbg = 0;
|
||||||
unsigned int defaultcs = 257;
|
unsigned int defaultcs = 15;
|
||||||
static unsigned int defaultrcs = 257;
|
static unsigned int defaultrcs = 257;
|
||||||
|
|
||||||
/*
|
|
||||||
* Colors used, when the specific fg == defaultfg. So in reverse mode this
|
|
||||||
* will reverse too. Another logic would only make the simple feature too
|
|
||||||
* complex.
|
|
||||||
*/
|
|
||||||
unsigned int defaultitalic = 7;
|
|
||||||
unsigned int defaultunderline = 7;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default shape of cursor
|
* Default shape of cursor
|
||||||
* 2: Block ("█")
|
* 2: Block ("█")
|
||||||
|
|
Loading…
Reference in a new issue