Increase animation size and dialog width in BiometricPrompt, and change DT->LT color mapping for better visibility

Increases animation asset size in BiometricPrompt, sets BP width to 560dp, and modifies DT->LT color mapping for better visibility

Test: (manual) Open BP, observe new animation size, dialog width, and LT colors
Fixes: 260015824
Change-Id: I6890058668b570ee3c73debdd00f31d78d26b3b1
This commit is contained in:
Grace Cheng
2022-11-29 03:01:36 +00:00
parent 1cd9826aa0
commit 4751acc5c0
2 changed files with 6 additions and 2 deletions

View File

@@ -40,6 +40,7 @@
<color name="settingslib_color_grey800">#3c4043</color>
<color name="settingslib_color_grey700">#5f6368</color>
<color name="settingslib_color_grey600">#80868b</color>
<color name="settingslib_color_grey500">#9AA0A6</color>
<color name="settingslib_color_grey400">#bdc1c6</color>
<color name="settingslib_color_grey300">#dadce0</color>
<color name="settingslib_color_grey200">#e8eaed</color>

View File

@@ -40,10 +40,13 @@ public class LottieColorUtils {
HashMap<String, Integer> map = new HashMap<>();
map.put(
".grey600",
R.color.settingslib_color_grey300);
R.color.settingslib_color_grey400);
map.put(
".grey700",
R.color.settingslib_color_grey500);
map.put(
".grey800",
R.color.settingslib_color_grey200);
R.color.settingslib_color_grey300);
map.put(
".grey900",
R.color.settingslib_color_grey50);