dmenu

my build of dmenu
git clone git://git.hanetzok.net/dmenu
Log | Files | Refs | README | LICENSE

commit 0c4505ebd355670125fe51b4de20215e5d13664c
parent c4accbd0dc072364c5921993e0d06301c55313c4
Author: Markus Hanetzok <m.hanetzok@sotronix.de>
Date:   Tue, 10 Jun 2025 13:47:33 +0200

update colors and fix formatting

Diffstat:
Mconfig.def.h | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -10,11 +10,11 @@ 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] = { "#ff79c6", "#282a36" }, - [SchemeSel] = { "#282a36", "#ff79c6" }, - [SchemeSelHighlight] = { "#282a36", "#FF5555" }, - [SchemeNormHighlight] = { "#FF5555", "#282a36" }, - [SchemeOut] = { "#000000", "#00ffff" }, + [SchemeNorm] = { "#0abdc6", "#091833" }, + [SchemeNormHighlight] = { "#ea00d9", "#091833" }, + [SchemeSel] = { "#ea00d9", "#321959" }, + [SchemeSelHighlight] = { "#ea00d9", "#321959" }, + [SchemeOut] = { "#000000", "#00ffff" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 0;