Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 07d8de08 authored by Chun-Ku Lin's avatar Chun-Ku Lin Committed by Android (Google) Code Review
Browse files

Merge "Convert grey200 to grey800" into main

parents a788ddf7 4d019824
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -40,6 +40,9 @@ public class LottieColorUtils {

    static {
        HashMap<String, Integer> map = new HashMap<>();
        map.put(
                ".grey200",
                R.color.settingslib_color_grey800);
        map.put(
                ".grey600",
                R.color.settingslib_color_grey400);
+1 −0
Original line number Diff line number Diff line
@@ -49,6 +49,7 @@ fun Lottie(

object LottieColorUtils {
    private val DARK_TO_LIGHT_THEME_COLOR_MAP = mapOf(
        ".grey200" to R.color.settingslib_color_grey800,
        ".grey600" to R.color.settingslib_color_grey400,
        ".grey800" to R.color.settingslib_color_grey300,
        ".grey900" to R.color.settingslib_color_grey50,