Change a theme color
This commit is contained in:
parent
490efec089
commit
340076c5df
17
config.h
17
config.h
@ -7,15 +7,28 @@ static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
static const char *fonts[] = { "monospace:size=10" };
|
||||
static const char dmenufont[] = "monospace:size=10";
|
||||
|
||||
static const char col_gray1[] = "#222222";
|
||||
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_blue1[] = "#102D4F";
|
||||
static const char col_blue2[] = "#00537A";
|
||||
static const char col_yellow1[] = "#F5A201";
|
||||
static const char col_yellow2[] = "#FFBA42";
|
||||
static const char col_blush[] = "#F8E5EE";
|
||||
|
||||
static const char col_dark1[] = "#162736";
|
||||
static const char col_dark2[] = "#203449";
|
||||
static const char col_dark3[] = "#708594";
|
||||
static const char col_white[] = "#FFFFFF";
|
||||
|
||||
static const char *colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
||||
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
|
||||
[SchemeNorm] = { col_white, col_dark1, col_dark1 },
|
||||
[SchemeSel ] = { col_white, col_dark3, col_dark3 },
|
||||
};
|
||||
|
||||
/* tagging */
|
||||
|
Loading…
Reference in New Issue
Block a user