diff options
author | Bruno Martins <bgcngm@gmail.com> | 2020-01-18 19:04:13 +0000 |
---|---|---|
committer | Michael Bestas <mkbestas@lineageos.org> | 2020-12-20 18:54:58 +0200 |
commit | a4a4a9e4296bd8891d67f8bf4e362239772f9859 (patch) | |
tree | f40f1c24b8dc44beef302324ffe7063ff8e900eb /doze/res/values | |
parent | d601fba4350ec4c9ca2755068afd8e97c9b86cc6 (diff) |
sdm660-common: doze: Fix dark theme issues
This brings SwitchBar widget inline with 10 and fixes the
theme issues when the dark mode is enabled.
Change-Id: I6909b77bc649eb9eb760bf01b46f66570363e9d9
Diffstat (limited to 'doze/res/values')
-rw-r--r-- | doze/res/values/colors.xml | 21 | ||||
-rw-r--r-- | doze/res/values/styles.xml | 13 |
2 files changed, 33 insertions, 1 deletions
diff --git a/doze/res/values/colors.xml b/doze/res/values/colors.xml new file mode 100644 index 0000000..bb85f62 --- /dev/null +++ b/doze/res/values/colors.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2020 The LineageOS 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. +--> + +<resources> + <color name="switchbar_background_color">@*android:color/material_grey_600</color> + <color name="switchbar_switch_track_tint">#BFFFFFFF</color> + <color name="switchbar_switch_thumb_tint">@android:color/white</color> +</resources> diff --git a/doze/res/values/styles.xml b/doze/res/values/styles.xml index 3443c0b..314665d 100644 --- a/doze/res/values/styles.xml +++ b/doze/res/values/styles.xml @@ -45,7 +45,10 @@ <item name="android:layout">@layout/preference_material_settings</item> </style> - <style name="Theme.Main.PreferenceTheme"> + <style name="Theme.Main.PreferenceTheme" parent="@style/PreferenceThemeOverlay.SettingsBase"> + <item name="preferenceCategoryTitleTextAppearance"> + @style/Theme.Main.TextAppearance.CategoryTitle + </item> </style> <style name="Theme.Main.SwitchPreferenceStyle" parent="@style/Theme.Main.PreferenceStyle"> @@ -59,4 +62,12 @@ <item name="android:trackTint">@color/switchbar_switch_track_tint</item> <item name="android:thumbTint">@color/switchbar_switch_thumb_tint</item> </style> + + <style name="Theme.Main.TextAppearance.CategoryTitle" + parent="@*android:style/TextAppearance.DeviceDefault.Body2"> + <item name="android:textAllCaps">true</item> + <item name="android:textSize">11sp</item> + <!-- 0.8 Spacing, 0.8/11 = 0.072727273 --> + <item name="android:letterSpacing">0.072727273</item> + </style> </resources> |