dmenu

[fork] customized build of dmenu, the dynamic menu for X
git clone git://src.adamsgaard.dk/dmenu
Log | Files | Refs | README | LICENSE Back to index

commit 2db99ea239055fbeca880472d3ddfeed1b1d8975
parent 916a6c841463fd96b121d0be85ab75c4fbde0531
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Tue,  3 Nov 2020 16:00:32 +0100

config.h: maximize fg/bg contrast

Diffstat:
Mconfig.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config.h b/config.h @@ -11,8 +11,8 @@ static const char *fonts[] = { static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#c5c8c6", "#1d1f21" }, - [SchemeSel] = { "#1d1f21", "#c5c8c6" }, + [SchemeNorm] = { "#ffffff", "#000000" }, + [SchemeSel] = { "#000000", "#ffffff" }, [SchemeOut] = { "#000000", "#00ffff" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */