Fiddled with colours for password strength meter.

This commit is contained in:
akwizgran
2014-01-09 01:38:15 +00:00
parent ea47420e99
commit 452f8bd7e1

View File

@@ -18,9 +18,9 @@ public class StrengthMeter extends ProgressBar {
private static final int MAX = 100;
private static final int RED = Color.rgb(255, 0, 0);
private static final int ORANGE = Color.rgb(255, 160, 0);
private static final int YELLOW = Color.rgb(250, 255, 15);
private static final int LIME = Color.rgb(190, 255, 0);
private static final int GREEN = Color.rgb(7, 255, 0);
private static final int YELLOW = Color.rgb(255, 255, 0);
private static final int LIME = Color.rgb(180, 255, 0);
private static final int GREEN = Color.rgb(0, 255, 0);
private final ShapeDrawable bar;