From: Spenser Truex <tr...@equwal.com> I find the original blue border difficult to see, and it is especially hard to notice against the same colour status bar. Green is used here instead since it is very visible. --- config.def.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/config.def.h b/config.def.h index 1c0b587..b9859ed 100644 --- a/config.def.h +++ b/config.def.h @@ -12,10 +12,11 @@ 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_green[] = "#00ff00"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeSel] = { col_gray4, col_cyan, col_green }, }; /* tagging */ -- 2.28.0