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

Commit 702cd25c authored by Tracy Zhou's avatar Tracy Zhou
Browse files

Fix fallback scrim colors for blur

Fallback mode is always dark themed, even if the theme of the device is light theme

Bug: 405048838
Test: manual
Flag: com.android.systemui.notification_shade_blur
Change-Id: Idc4a0ac2388eaf248ab738303ed387059887ea7b
parent b6d8dcd2
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -123,10 +123,6 @@
    <color name="shade_panel_base">@android:color/system_accent1_800</color>
    <color name="notification_scrim_base">@android:color/system_accent1_800</color>

    <!-- Dark theme fallback colors for notification shade/scrim -->
    <color name="shade_panel_fallback">@android:color/system_accent2_800</color>
    <color name="notification_scrim_fallback">@android:color/system_surface_dim_dark</color>

    <!-- Keyboard shortcut helper dialog -->
    <color name="ksh_key_item_color">@*android:color/system_on_surface_variant_dark</color>
</resources>
+2 −2
Original line number Diff line number Diff line
@@ -38,8 +38,8 @@
    <color name="notification_scrim_base">@android:color/system_accent1_100</color>

    <!-- Fallback colors for notification shade/scrim -->
    <color name="shade_panel_fallback">@android:color/system_accent2_200</color>
    <color name="notification_scrim_fallback">@android:color/system_surface_dim_light</color>
    <color name="shade_panel_fallback">@android:color/system_accent2_800</color>
    <color name="notification_scrim_fallback">@android:color/system_surface_dim_dark</color>

    <!-- The color of the background in the separated list of the Global Actions menu -->
    <color name="global_actions_separated_background">#F5F5F5</color>