Apply statuscolors patch

This commit is contained in:
Alex Selimov 2023-10-08 00:02:49 -04:00
commit a43c37f3ca
3 changed files with 27 additions and 8 deletions

View file

@ -18,6 +18,9 @@ static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#ebdbb2";
static const char col_gray4[] = "#928374";
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 *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray4, col_gray1, "#000000" },
@ -26,7 +29,9 @@ static const char *colors[][3] = {
[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}
[SchemeInfoNorm] = { col_gray4, col_gray1, "#000000" }, // infobar middle unselected {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},
};
/* tagging */