Add Nord colors

This commit is contained in:
Marco Thomas
2021-04-12 12:15:12 +02:00
parent 35633d4567
commit c3ae579725

12
config.h Normal file
View File

@@ -0,0 +1,12 @@
/* user and group to drop privileges to */
static const char *user = "nobody";
static const char *group = "nobody";
static const char *colorname[NUMCOLS] = {
[INIT] = "#2e3440", /* after initialization */
[INPUT] = "#81a1c1", /* during input */
[FAILED] = "#bf616a", /* wrong password */
};
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;