diff --git a/_desktop/_suckless/dwm/config.h b/_desktop/_suckless/dwm/config.h index 5d41d54..0292745 100644 --- a/_desktop/_suckless/dwm/config.h +++ b/_desktop/_suckless/dwm/config.h @@ -19,19 +19,20 @@ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "RobotoMono Nerd Font:style=Medium:pixelsize=13" }; static const char col_fg[] = "#f8f8f2"; static const char col_bg[] = "#272822"; -static const char col_bd[] = "#161616"; +static const char col_bd[] = "#272822"; static const char col_fg_empty[] = "#525252"; static const char col_fg_urgent[] = "#ffffff"; static const char col_bg_urgent[] = "#770000"; -static const char col_fg_sel[] = "#272822"; -static const char col_bg_sel[] = "#ffffff"; -static const char col_bd_sel[] = "#ffffff"; +static const char col_bd_urgent[] = "#770000"; +static const char col_fg_sel[] = "#f8f8f2"; +static const char col_bg_sel[] = "#005577"; +static const char col_bd_sel[] = "#f8f8f2"; static const char *colors[][3] = { /* fg bg border */ [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 }, - [SchemeUrgent] = { col_fg_urgent, col_bg_urgent, col_bd }, + [SchemeUrgent] = { col_fg_urgent, col_bg_urgent, col_bd_urgent }, }; typedef struct {