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

Commit 0c3474a2 authored by Marcelo Arteiro's avatar Marcelo Arteiro Committed by Winson Chiu
Browse files

Remove _light / _dark / from "fixed" sys resources

Some _darker were also replaced by _dim

RESOURCES_FINALIZATION=This fixes a broken merge into the device
release branch due to missing resources, which differs from both
the development branch and main branches. The resources added here
brings the files up to match the other branches.
Bug: 270549828
Test: atest ColorTest
Merged-In: I834cb61b87fe98e65534fbd30baa17fa348ac6a9

Change-Id: I423e5bd35b9caa076b0376b4ff04fda1e2d36deb
parent f8e580c2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2041,6 +2041,8 @@ package android {
    field public static final int system_on_tertiary_light;
    field public static final int system_outline_dark;
    field public static final int system_outline_light;
    field public static final int system_outline_variant_dark;
    field public static final int system_outline_variant_light;
    field public static final int system_palette_key_color_neutral_dark;
    field public static final int system_palette_key_color_neutral_light;
    field public static final int system_palette_key_color_neutral_variant_dark;
+11 −5
Original line number Diff line number Diff line
@@ -1312,15 +1312,21 @@
        <!-- The container color of surface the most elevated, which replaces the previous surface
             variant. @hide -->
        <attr name="materialColorSurfaceContainerHighest" format="color"/>
        <!-- undefined @hide -->
        <!-- A tonal variation of the on surface color that passes accessibility guidelines for
             text/iconography when drawn on top of surface variant. @hide -->
        <attr name="materialColorOnSurfaceVariant" format="color"/>
        <!-- undefined @hide -->
        <!-- A color meant to be used in element outlines. @hide -->
        <attr name="materialColorOutline" format="color"/>
        <!-- undefined @hide -->
        <!-- A color meant to be used in element outlines on the surface-variant color. @hide -->
        <attr name="materialColorOutlineVariant" format="color"/>
        <!-- A color that passes accessibility guidelines for text/iconography when drawn on top of
             primary. @hide -->
        <attr name="materialColorOnPrimary" format="color"/>
        <!-- undefined @hide -->
        <!-- A color that passes accessibility guidelines for text/iconography when drawn on top of
             surface. @hide -->
        <attr name="materialColorOnSurface" format="color"/>
        <!-- undefined @hide -->
        <!-- The container color of surface, which replaces the previous surface at elevation level
             2. @hide -->
        <attr name="materialColorSurfaceContainer" format="color"/>
        <!-- The container color of surface, which replaces the previous surface at elevation level
             2. @hide -->
+2 −0
Original line number Diff line number Diff line
@@ -465,6 +465,7 @@
    <color name="system_surface_variant_light">#E1E2EC</color>
    <color name="system_on_surface_variant_light">#44474F</color>
    <color name="system_outline_light">#72747D</color>
    <color name="system_outline_variant_light">#C4C7C5</color>
    <color name="system_error_light">#C00003</color>
    <color name="system_on_error_light">#FFFFFF</color>
    <color name="system_error_container_light">#FFDAD5</color>
@@ -520,6 +521,7 @@
    <color name="system_surface_variant_dark">#44474F</color>
    <color name="system_on_surface_variant_dark">#C4C6D0</color>
    <color name="system_outline_dark">#72747D</color>
    <color name="system_outline_variant_dark">#444746</color>
    <color name="system_error_dark">#FFB4A8</color>
    <color name="system_on_error_dark">#690001</color>
    <color name="system_error_container_dark">#930001</color>
+2 −0
Original line number Diff line number Diff line
@@ -271,6 +271,8 @@
    <public name="system_palette_key_color_tertiary_dark"/>
    <public name="system_palette_key_color_neutral_dark"/>
    <public name="system_palette_key_color_neutral_variant_dark"/>
    <public name="system_outline_variant_light" />
    <public name="system_outline_variant_dark" />
  </staging-public-group>

  <staging-public-group type="array" first-id="0x01c80000">
+1 −0
Original line number Diff line number Diff line
@@ -5027,6 +5027,7 @@
  <java-symbol name="materialColorSurfaceContainerHighest" type="attr"/>
  <java-symbol name="materialColorOnSurfaceVariant" type="attr"/>
  <java-symbol name="materialColorOutline" type="attr"/>
  <java-symbol name="materialColorOutlineVariant" type="attr"/>
  <java-symbol name="materialColorOnPrimary" type="attr"/>
  <java-symbol name="materialColorOnSurface" type="attr"/>
  <java-symbol name="materialColorSurfaceContainer" type="attr"/>
Loading