From: Armaan Bhojwani Date: Thu, 15 Jul 2021 20:26:14 +0000 (-0400) Subject: Switch to dark theme X-Git-Url: https://git.armaanb.net/?p=dmenu.git;a=commitdiff_plain;h=3fc3b421eb169fd3587fa01879f9ed92532e76aa Switch to dark theme --- diff --git a/config.h b/config.h index 1f8ab95..0cd6ea0 100644 --- a/config.h +++ b/config.h @@ -10,9 +10,9 @@ 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] = { "#000000", "#ffffff" }, - [SchemeSel] = { "#ffffff", "#000000" }, - [SchemeOut] = { "#000000", "#00ffff" }, + [SchemeNorm] = { "#ffffff", "#000000" }, + [SchemeSel] = { "#000000", "#ffffff" }, + [SchemeOut] = { "#00ffff", "#ffffff" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 0;