Add nordtheme

This commit is contained in:
Marco Thomas
2021-03-28 19:46:12 +02:00
parent 9e231a9408
commit 93ff52cfa4

View File

@@ -8,11 +8,16 @@ static const char *fonts[] = {
"monospace:size=10" "monospace:size=10"
}; };
static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char nord_fg[] = "#D8DEE9";
static const char nord_bg[] = "#2E3440";
static const char nord_blue[] = "#81A1C1";
static const char *colors[SchemeLast][2] = { static const char *colors[SchemeLast][2] = {
/* fg bg */ /* fg bg */
[SchemeNorm] = { "#ffffff", "#1c1b1d" }, [SchemeNorm] = { nord_fg, nord_bg },
[SchemeSel] = { "#1c1b1d", "#98c379" }, [SchemeSel] = { nord_bg, nord_blue },
[SchemeOut] = { "#000000", "#00ffff" }, [SchemeOut] = { nord_fg, nord_bg },
}; };
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */ /* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 6; static unsigned int lines = 6;