From c21df3f2de6f0ace95cf6bb40d77f3a39ec9701f Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Wed, 1 Jul 2020 23:24:12 +0200 Subject: [PATCH] new color scheme (based off nord) --- config.h | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index b50ee7a..2637fae 100644 --- a/config.h +++ b/config.h @@ -1,6 +1,25 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ +#define bblack "#000000" +#define nord0 "#2E3440" +#define nord1 "#3B4252" +#define nord2 "#434C5E" +#define nord3 "#4C566A" +#define nord4 "#D8DEE9" +#define nord5 "#E5E9F0" +#define nord6 "#ECEFF4" +#define nord7 "#8FBCBB" +#define nord8 "#88C0D0" +#define nord9 "#81A1C1" +#define nord10 "#5E81AC" +#define nord11 "#BF616A" +#define nord12 "#D08770" +#define nord13 "#EBCB8B" +#define nord14 "#A3BE8C" +#define nord15 "#B48EAD" + + 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[] = { @@ -12,15 +31,14 @@ static const char *prompt = NULL; /* -p option; prompt to the left of static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#d7d5d1", "#000000" }, - [SchemeSel] = { "#d7d5d1", "#7D7A63" }, - [SchemeOut] = { "#d7d5d1", "#96A3A8" }, + [SchemeNorm] = { nord4 , nord0 }, + [SchemeSel] = { nord6, nord10 }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 0; -static int instant = 1; +static int instant = 0; static int sidepad = 20; static int vertpad = 10; /*