new color scheme (based off nord)

This commit is contained in:
Alexander Bocken 2020-07-01 23:24:12 +02:00
parent 00483f6dc7
commit c21df3f2de

View File

@ -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;
/*