/* user and group to drop privileges to */
static const char *user  = "nobody";
static const char *group = "nogroup";

static const char *colorname[NUMCOLS] = {
	[INIT] =   "#3f4f1f",   /* after initialization */
	[INPUT] =  "#3fbf7f",   /* during input */
	[FAILED] = "#bf3f3f",   /* wrong password */
};

/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;
