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

Commit d305df02 authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

Theme settings app according to our palette

parent 60a72db0
Loading
Loading
Loading
Loading
+0 −23
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright (C) 2023 The Android Open Source Project

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_enabled="false"
          android:color="@android:color/system_accent1_100"
          android:alpha="?android:attr/disabledAlpha" />
    <item android:color="@android:color/system_accent1_100"/>
</selector>
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_enabled="false"
          android:color="@android:color/system_accent1_900"
          android:color="@*android:color/e_primary_text_color"
          android:alpha="?android:attr/disabledAlpha" />
    <item android:color="@android:color/system_accent1_900"/>
    <item android:color="@*android:color/e_primary_text_color"/>
</selector>
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -22,5 +22,5 @@
        android:height="24dp">
    <path
        android:pathData="M7 10l5 5 5 -5z"
        android:fillColor="@android:color/black"/>
        android:fillColor="@*android:color/e_primary_text_color"/>
</vector>
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@

                <shape>
                    <corners android:radius="28dp"/>
                    <solid android:color="@android:color/system_accent1_100"/>
                    <solid android:color="@*android:color/e_background"/>
                    <size android:height="@dimen/settingslib_spinner_height"/>
                </shape>
            </item>
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@
            <item>
                <shape>
                    <corners android:radius="10dp"/>
                    <solid android:color="@android:color/system_accent2_100"/>
                    <solid android:color="@*android:color/e_floating_background"/>
                </shape>
            </item>
        </layer-list>
Loading