|
|
|
@ -21,14 +21,16 @@ static const char col_cyan[] = "#458588";
|
|
|
|
|
static const char col_green[] = "#b8bb26";
|
|
|
|
|
static const char col_red[] = "#fb4934";
|
|
|
|
|
static const char col_yellow[] = "#fabd2f";
|
|
|
|
|
static const char col_teal[] = "#8ec07c";
|
|
|
|
|
static const char col_purple[] = "#b16286";
|
|
|
|
|
static const char *colors[][3] = {
|
|
|
|
|
/* fg bg border */
|
|
|
|
|
[SchemeNorm] = { col_gray4, col_gray1, "#000000" },
|
|
|
|
|
[SchemeSel] = { col_gray3, col_cyan, col_cyan },
|
|
|
|
|
[SchemeStatus] = { col_gray4, col_gray1, "#000000" }, // Statusbar right {text,background,not used but cannot be empty}
|
|
|
|
|
[SchemeTagsSel] = { col_gray3, col_cyan, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty}
|
|
|
|
|
[SchemeTagsNorm] = { col_gray4, col_gray1, "#000000" }, // Tagbar left unselected {text,background,not used but cannot be empty}
|
|
|
|
|
[SchemeInfoSel] = { col_gray3, col_gray1, "#000000" }, // infobar middle selected {text,background,not used but cannot be empty}
|
|
|
|
|
[SchemeTagsSel] = { col_cyan, col_gray1, col_gray1 }, // Tagbar left selected {text,background,not used but cannot be empty}
|
|
|
|
|
[SchemeTagsNorm] = { col_gray4, col_gray1, col_gray1 }, // Tagbar left unselected {text,background,not used but cannot be empty}
|
|
|
|
|
[SchemeInfoSel] = { col_teal, col_gray1, col_gray1 }, // infobar middle selected {text,background,not used but cannot be empty}
|
|
|
|
|
[SchemeInfoNorm] = { col_green, col_gray1, col_gray1}, // infobar middle unselected {text,background,not used but cannot be empty}
|
|
|
|
|
[SchemeWarn] = { col_yellow, col_gray1, col_gray1 },
|
|
|
|
|
[SchemeUrgent]= { col_red, col_gray1, col_gray1},
|
|
|
|
|