Played with colors even more

This commit is contained in:
cannoli-fruit 2026-07-22 05:12:46 -04:00
commit 3406a0f55a

View file

@ -11,11 +11,12 @@ static const char col_gray1[] = "#080808";
static const char col_gray2[] = "#444444"; static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb"; static const char col_gray3[] = "#bbbbbb";
static const char col_gray4[] = "#eeeeee"; static const char col_gray4[] = "#eeeeee";
static const char col_purp[] = "#d183e8"; static const char col_purp[] = "#660066";
static const char col_cyan[] = "#005577";
static const char *colors[][3] = { static const char *colors[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_purp, col_purp }, [SchemeSel] = { col_gray4, col_purp, col_cyan },
}; };
/* tagging */ /* tagging */