From f7f7c62bde936c52334426c311e960eeaf102bf9 Mon Sep 17 00:00:00 2001 From: _N0x Date: Fri, 21 Jan 2022 03:20:29 +0100 Subject: [PATCH] Fixed some colorings in dmenu as well --- dmenu-5.0/config.def.h | 6 +++--- dwm-6.2/config.def.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dmenu-5.0/config.def.h b/dmenu-5.0/config.def.h index 4ca455c..97e0ca9 100644 --- a/dmenu-5.0/config.def.h +++ b/dmenu-5.0/config.def.h @@ -13,9 +13,9 @@ static const char *prompt = NULL; /* -p option; prompt to the left of static const char *colors[SchemeLast][2] = { /* fg bg */ [SchemeNorm] = { "#bbbbbb", "#222222" }, - [SchemeSel] = { "#eeeeee", "#408977" }, - [SchemeSelHighlight] = { "#ffc978", "#408977" }, - [SchemeNormHighlight] = { "#ffc978", "#222222" }, + [SchemeSel] = { "#2E3440", "#408977" }, + [SchemeSelHighlight] = { "#2E3440", "#408977" }, + [SchemeNormHighlight] = { "#bbbbbb", "#222222" }, [SchemeOut] = { "#000000", "#00ffff" }, [SchemeOutHighlight] = { "#ffc978", "#00ffff" }, }; diff --git a/dwm-6.2/config.def.h b/dwm-6.2/config.def.h index 2d582b3..6a23391 100644 --- a/dwm-6.2/config.def.h +++ b/dwm-6.2/config.def.h @@ -80,7 +80,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_color1, "-sf", col_gray4, "-p", dmenupromt, NULL}; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_color1, "-sf", col_gray1, "-p", dmenupromt, NULL}; static const char *termcmd[] = { "st", NULL }; /* Own commands */