dwm colors.
This commit is contained in:
parent
88c2f43406
commit
36cf22e45f
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user