More tag schemes.

This commit is contained in:
Bartek Stalewski 2022-08-22 02:46:46 +02:00
parent 1969d28ff0
commit 5bbdf5c439
6 changed files with 72 additions and 88 deletions

View file

@ -21,6 +21,7 @@ static const char col_fg[] = "#ffffff";
static const char col_bg[] = "#272822";
static const char col_bd[] = "#272822";
static const char col_fg_empty[] = "#404040";
static const char col_fg_layout[] = "#909090";
static const char col_fg_urgent[] = "#ffffff";
static const char col_bg_urgent[] = "#770000";
static const char col_bd_urgent[] = "#770000";
@ -32,6 +33,7 @@ static const char *colors[][3] = {
[SchemeNorm] = { col_fg, col_bg, col_bd },
[SchemeSel] = { col_fg_sel, col_bg_sel, col_bd_sel },
[SchemeEmpty] = { col_fg_empty, col_bg, col_bd },
[SchemeLayout] = { col_fg_layout, col_bg, col_bd },
[SchemeUrgent] = { col_fg_urgent, col_bg_urgent, col_bd_urgent },
};