Home | History | Annotate | Download | only in palette

Lines Matching defs:ColorUtils

31 import com.android.internal.graphics.ColorUtils;
474 this(ColorUtils.HSLToColor(hsl), population);
496 ColorUtils.RGBToHSL(mRed, mGreen, mBlue, mHsl);
530 final int lightBodyAlpha = ColorUtils.calculateMinimumAlpha(
532 final int lightTitleAlpha = ColorUtils.calculateMinimumAlpha(
537 mBodyTextColor = ColorUtils.setAlphaComponent(Color.WHITE, lightBodyAlpha);
538 mTitleTextColor = ColorUtils.setAlphaComponent(Color.WHITE, lightTitleAlpha);
543 final int darkBodyAlpha = ColorUtils.calculateMinimumAlpha(
545 final int darkTitleAlpha = ColorUtils.calculateMinimumAlpha(
550 mBodyTextColor = ColorUtils.setAlphaComponent(Color.BLACK, darkBodyAlpha);
551 mTitleTextColor = ColorUtils.setAlphaComponent(Color.BLACK, darkTitleAlpha);
559 ? ColorUtils.setAlphaComponent(Color.WHITE, lightBodyAlpha)
560 : ColorUtils.setAlphaComponent(Color.BLACK, darkBodyAlpha);
562 ? ColorUtils.setAlphaComponent(Color.WHITE, lightTitleAlpha)
563 : ColorUtils.setAlphaComponent(Color.BLACK, darkTitleAlpha);