Home | History | Annotate | Download | only in util

Lines Matching defs:foregroundColor

204                     int foregroundColor = originalSpan.getForegroundColor();
205 resultSpan = new ForegroundColorSpan(processColor(foregroundColor));
607 public static double calculateContrast(int foregroundColor, int backgroundColor) {
608 return ColorUtilsFromCompat.calculateContrast(foregroundColor, backgroundColor);
611 public static boolean satisfiesTextContrast(int backgroundColor, int foregroundColor) {
612 return NotificationColorUtil.calculateContrast(foregroundColor, backgroundColor) >= 4.5;