Use lower case for color code
parent
3d60df3286
commit
1cc07e6f17
|
|
@ -5,7 +5,7 @@ static const char *group = "nogroup";
|
||||||
static const char *colorname[NUMCOLS] = {
|
static const char *colorname[NUMCOLS] = {
|
||||||
[INIT] = "black", /* after initialization */
|
[INIT] = "black", /* after initialization */
|
||||||
[INPUT] = "#005577", /* during input */
|
[INPUT] = "#005577", /* during input */
|
||||||
[FAILED] = "#CC3333", /* wrong password */
|
[FAILED] = "#cc3333", /* wrong password */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* lock screen opacity */
|
/* lock screen opacity */
|
||||||
|
|
|
||||||
4
config.h
4
config.h
|
|
@ -4,8 +4,8 @@ static const char *group = "nobody";
|
||||||
|
|
||||||
static const char *colorname[NUMCOLS] = {
|
static const char *colorname[NUMCOLS] = {
|
||||||
[INIT] = "#000000", /* after initialization */
|
[INIT] = "#000000", /* after initialization */
|
||||||
[INPUT] = "#282A36", /* during input */
|
[INPUT] = "#282a36", /* during input */
|
||||||
[FAILED] = "#FF5555", /* wrong password */
|
[FAILED] = "#ff5555", /* wrong password */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* lock screen opacity */
|
/* lock screen opacity */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue