From 3fc3b421eb169fd3587fa01879f9ed92532e76aa Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Thu, 15 Jul 2021 16:26:14 -0400 Subject: [PATCH] Switch to dark theme --- config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.39.2