We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d003866 commit 346b6dcCopy full SHA for 346b6dc
library/src/main/java/com/rengwuxian/materialedittext/Colors.java
@@ -12,11 +12,4 @@ public static boolean isLight(int color) {
12
Color.green(color) * Color.green(color) * .691 +
13
Color.blue(color) * Color.blue(color) * .068) > 130;
14
}
15
-
16
- public static int getBaseColor(int color) {
17
- if (isLight(color)) {
18
- return Color.BLACK;
19
- }
20
- return Color.WHITE;
21
22
0 commit comments