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

Commit 255eb8fa authored by Bryan Owens's avatar Bryan Owens Committed by Clark Scheff
Browse files

Themes: Expose Hard coded colors in Quick Settings Tiles



Change-Id: Ic65bbd0e3711721b09a0eb0d05fc47b6f037f938
Signed-off-by: default avatarBryan Owens <djbryan3540@gmail.com>
parent 55147e2f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@
            android:paddingLeft="16dp"
            android:paddingRight="16dp"
            android:gravity="center_vertical"
            android:textColor="#80cbc4"
            android:textColor="@color/qs_title_text_color"
            android:text="@string/quick_settings_title_header"/>

    <!-- show weather -->
@@ -46,7 +46,7 @@
            android:paddingLeft="16dp"
            android:paddingRight="16dp"
            android:gravity="center_vertical"
            android:textColor="#80cbc4"
            android:textColor="@color/qs_title_text_color"
            android:text="@string/quick_settings_title_tiles"/>

    <!-- first row large -->
@@ -74,7 +74,7 @@
                android:layout_gravity="center_vertical"
                android:layout_weight="1"
                android:id="@+id/title"
                android:textColor="@android:color/white"
                android:textColor="@color/qs_tile_reset_to_default_text_color"
                android:text="@string/quick_settings_tile_reset_to_default"
                android:contentDescription="@null"/>

+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
            android:layout_gravity="center_vertical"
            android:layout_weight="1"
            android:id="@+id/title"
            android:textColor="@android:color/white"
            android:textColor="@color/qs_row_text_color"
            android:contentDescription="@null"/>

    <Switch
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@
                android:layout_height="match_parent"
                android:gravity="center_vertical"
                android:layout_weight="1"
                android:textColor="@android:color/white"
                android:textColor="@color/qs_edit_header_instruction_text_color"
                android:text="@string/qs_tile_edit_header_instruction"
                android:contentDescription="@null"/>

+6 −0
Original line number Diff line number Diff line
@@ -67,4 +67,10 @@

    <!-- SystemUI Tuner Icon Tint Color -->
    <color name="tuner_icon_tint">#4dffffff</color>

    <!-- QS Settings Text Colors -->
    <color name="qs_tile_reset_to_default_text_color">@android:color/white</color>
    <color name="qs_title_text_color">#80cbc4</color>
    <color name="qs_edit_header_instruction_text_color">@android:color/white</color>
    <color name="qs_row_text_color">@android:color/white</color>
</resources>