Changed unselected border color

pull/3/head
E. Almqvist 4 years ago
parent 09c013f640
commit eb8a52f567
  1. 3
      config.h

@ -21,6 +21,7 @@ static const char inactive_text_color[] = "#676E7D";
static const char urgent_bg_color[] = "#E53935";
static const char indicator_color[] = "#474747";
static const char border_selected_color[] = "#777777";
static const char border_unselected_color[] = "#000000";
static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444";
@ -29,7 +30,7 @@ static const char col_gray4[] = "#eeeeee";
static const char col_cyan[] = "#005577";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeNorm] = { col_gray3, col_gray1, border_unselected_color },
[SchemeSel] = { col_gray4, col_gray1, border_selected_color },
};

Loading…
Cancel
Save