From a87c31205bf789837253e5f063091395d2b40dda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Sun, 21 Nov 2021 15:55:46 +0100 Subject: config.h: Use monochromatic colorscheme --- config.h | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/config.h b/config.h index 1b9330c..83d3b04 100644 --- a/config.h +++ b/config.h @@ -9,15 +9,13 @@ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "Terminus:size=9", "monospace:size=9" }; static const char dmenufont[] = "Terminus:size=9"; -static const char col_gray1[] = "#222222"; -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_white[] = "#ffffff"; +static const char col_black[] = "#000000"; +static const char col_gray[] = "#666666"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeNorm] = { col_white, col_black, col_gray }, + [SchemeSel] = { col_black, col_white, col_white }, }; /* tagging */ @@ -59,7 +57,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_black, "-nf", col_white, "-sb", col_white, "-sf", col_black, NULL }; static const char *termcmd[] = { "st", NULL }; static Key keys[] = { -- cgit v1.2.3