Browse Source

Update to use gruvbox theme

master
Tovi Jaeschke-Rogers 2 years ago
parent
commit
2407ddda1e
1 changed files with 39 additions and 19 deletions
  1. +39
    -19
      config.h

+ 39
- 19
config.h View File

@ -97,24 +97,44 @@ unsigned int tabspaces = 8;
static const char *colorname[] = {
/* 8 normal colors */
[0] = "#171717", /* black */
[1] = "#d81765", /* red */
[2] = "#97d01a", /* green */
[3] = "#ffa800", /* yellow */
[4] = "#16b1fb", /* blue */
[5] = "#ff2491", /* magenta */
[6] = "#0fdcb6", /* cyan */
[7] = "#ebebeb", /* white */
// [0] = "#171717", /* black */
// [1] = "#d81765", /* red */
// [2] = "#97d01a", /* green */
// [3] = "#ffa800", /* yellow */
// [4] = "#16b1fb", /* blue */
// [5] = "#ff2491", /* magenta */
// [6] = "#0fdcb6", /* cyan */
// [7] = "#ebebeb", /* white */
// /* 8 bright colors */
// [8] = "#38252c", /* black */
// [9] = "#ff0000", /* red */
// [10] = "#76b639", /* green */
// [11] = "#e1a126", /* yellow */
// [12] = "#289cd5", /* blue */
// [13] = "#ff2491", /* magenta */
// [14] = "#0a9b81", /* cyan */
// [15] = "#f8f8f8", /* white */
/* 8 normal colors */
[0] = "#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */
[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] = "#38252c", /* black */
[9] = "#ff0000", /* red */
[10] = "#76b639", /* green */
[11] = "#e1a126", /* yellow */
[12] = "#289cd5", /* blue */
[13] = "#ff2491", /* magenta */
[14] = "#0a9b81", /* cyan */
[15] = "#f8f8f8", /* white */
[8] = "#928374", /* black */
[9] = "#fb4934", /* red */
[10] = "#b8bb26", /* green */
[11] = "#fabd2f", /* yellow */
[12] = "#83a598", /* blue */
[13] = "#d3869b", /* magenta */
[14] = "#8ec07c", /* cyan */
[15] = "#ebdbb2", /* white */
/* special colors */
[256] = "#171717", /* background */
@ -125,9 +145,9 @@ static const char *colorname[] = {
* Default colors (colorname index)
* foreground, background, cursor
*/
unsigned int defaultfg = 257;
unsigned int defaultbg = 256;
static unsigned int defaultcs = 257;
unsigned int defaultfg = 15;
unsigned int defaultbg = 0;
static unsigned int defaultcs = 15;
static unsigned int defaultrcs = 257;
/*


Loading…
Cancel
Save