update colors,

This commit is contained in:
JuliusHerrmann 2023-06-13 23:24:08 +02:00
parent a952bd4bde
commit ccbe07b8ee
5 changed files with 8 additions and 4 deletions

View File

@ -15,22 +15,26 @@ static const int showsystray = 1; /* 0 means no systray */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const int attachmode = 4; /* 0 master (default), 1 = above, 2 = aside, 3 = below, 4 = bottom */
static const char *fonts[] = { "Source Code Pro:size=10", "MaterialIcons:size=11" };
static const char *fonts[] = { "RedHatMono:size=10", "MaterialIcons:size=11" };
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_primary[] = "#d65d0e";
// static const char col_primary[] = "#d65d0e";
// static const char col_primary[] = "#9ccfd8";
static const char col_primary[] = "#94e2d5";
static const char col_tag_sel[] = "#403d52";
static const char col_secondary[] = "#504945";
static const char col_background[] = "#1c1c1c";
// static const char col_secondary[] = "#403d52";
static const char col_background[] = "#191724";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_secondary },
[SchemeSel] = { col_gray4, col_cyan, col_primary },
[SchemeStatus] = { col_gray4, col_background, "#000000" }, // Statusbar right {text,background,not used but cannot be empty}
[SchemeTagsSel] = { col_gray4, col_primary, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty}
[SchemeTagsSel] = { col_gray4, col_tag_sel, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty}
[SchemeTagsNorm] = { col_gray3, col_background, "#000000" }, // Tagbar left unselected {text,background,not used but cannot be empty}
[SchemeInfoSel] = { col_gray4, col_background, "#000000" }, // infobar middle selected {text,background,not used but cannot be empty}
[SchemeInfoNorm] = { col_gray3, col_background, "#000000" }, // infobar middle unselected {text,background,not used but cannot be empty}

BIN
drw.o

Binary file not shown.

BIN
dwm

Binary file not shown.

BIN
dwm.o

Binary file not shown.

BIN
util.o

Binary file not shown.