Support for empty and urgent tags.

This commit is contained in:
Bartek Stalewski 2022-08-21 19:11:35 +02:00
parent 6ba8e12e09
commit 967261bba8
5 changed files with 108 additions and 16 deletions

View file

@ -22,10 +22,12 @@ static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
static const char col_gray4[] = "#eeeeee";
static const char col_cyan[] = "#005577";
static const char col_empty[] = "#525252";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
[SchemeEmpty] = { col_empty, col_gray1, col_gray2 },
};
typedef struct {