Border colors in dwm change.

This commit is contained in:
Bartek Stalewski 2022-04-13 14:01:49 +02:00
parent 8e22d830e6
commit e342637824

View File

@ -18,10 +18,10 @@ static const char *fonts[] = { "RobotoMono Nerd Font:style=Medium:size=
static const char normfgcolor[] = "#bbbbbb";
static const char col_fg[] = "#c7c7c7";
static const char col_bg[] = "#161616";
static const char col_bd[] = "#000000";
static const char col_bd[] = "#161616";
static const char col_fg_sel[] = "#ffffff";
static const char col_bg_sel[] = "#005577";
static const char col_bd_sel[] = "#005577";
static const char col_bd_sel[] = "#ffffff";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_fg, col_bg, col_bd },