From 75df2231e55c639536619405a54c919145e54c4b Mon Sep 17 00:00:00 2001 From: Ronald1985 Date: Sun, 2 May 2021 17:36:18 +0100 Subject: [PATCH] Changed the colorscheme to match my dwm --- config.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index 7117d35..24c9d28 100644 --- a/config.h +++ b/config.h @@ -4,14 +4,14 @@ static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "Hack:size=10" + "Iosevko:size=10" }; static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#9ed4bf", "#130f0c" }, - [SchemeSel] = { "#9ed4bf", "#A83626" }, - [SchemeOut] = { "#9ed4bf", "#B37D83" }, + [SchemeNorm] = { "#00FF00", "#000000" }, + [SchemeSel] = { "#eeeeee", "#000000" }, + [SchemeOut] = { "#eeeeee", "#000000" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */