From 8b679a2e892310e461c3f5028dfaf60b25eea37f Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Fri, 8 Oct 2021 16:00:33 -0700 Subject: fix(theme): consistent theme --- sys/cmd/menu/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/cmd/menu') diff --git a/sys/cmd/menu/config.h b/sys/cmd/menu/config.h index 1e14aa9..fb1614d 100644 --- a/sys/cmd/menu/config.h +++ b/sys/cmd/menu/config.h @@ -11,8 +11,8 @@ static const char *fonts[] = { static const char *prompt = "cmds"; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#bbbbbb", "#323232" }, - [SchemeSel] = { "#eeeeee", "#24aed8" }, + [SchemeNorm] = { "#fbf1c7", "#504945" }, + [SchemeSel] = { "#504945", "#83a598" }, [SchemeOut] = { "#000000", "#00ffff" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ -- cgit v1.2.1