config.h 460 B

123456789101112131415161718
  1. static const char *colorname[NUMCOLS] = {
  2. [INIT] = "black", /* after initialization */
  3. [INPUT] = "#005577", /* during input */
  4. [FAILED] = "#CC3333", /* wrong password */
  5. };
  6. /* treat a cleared input like a wrong password (color) */
  7. static const int failonclear = 1;
  8. /*Enable blur*/
  9. #define BLUR
  10. /*Set blur radius*/
  11. static const int blurRadius=5;
  12. /*Enable Pixelation*/
  13. //#define PIXELATION
  14. /*Set pixelation radius*/
  15. static const int pixelSize=0;