1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2021 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16 --> 17 18<resources> 19 <!-- Material next thumb disable color--> 20 <color name="settingslib_thumb_disabled_color">@android:color/system_neutral1_700</color> 21 22 <!-- Material next thumb off color--> 23 <color name="settingslib_thumb_off_color">@android:color/system_neutral1_400</color> 24 25 <!-- Material next track on color--> 26 <color name="settingslib_track_on_color">@color/settingslib_switch_track_on</color> 27 28 <!-- Material next track off color--> 29 <color name="settingslib_track_off_color">@android:color/system_neutral1_700</color> 30 31 <!-- Dialog accent color --> 32 <!--Deprecated. After sdk 35 don't use it, using materialColorPrimary--> 33 <color name="settingslib_dialog_accent">@android:color/system_accent1_100</color> 34 <!-- Dialog background color. --> 35 <color name="settingslib_dialog_background">@color/settingslib_surface_dark</color> 36 <!-- Dialog error color. --> 37 <color name="settingslib_dialog_colorError">#f28b82</color> <!-- Red 300 --> 38 39 <!--Deprecated. After sdk 35 don't use it.--> 40 <color name="settingslib_colorSurfaceVariant">@android:color/system_neutral1_700</color> 41 42 <color name="settingslib_colorSurfaceHeader">@android:color/system_neutral1_700</color> 43 44 <!-- copy from accent_primary_variant_dark_device_default--> 45 <!-- TODO: deprecate it after moving into partner code--> 46 <color name="settingslib_accent_primary_variant">@android:color/system_accent1_300</color> 47 48 <color name="settingslib_text_color_primary_device_default">@android:color/system_neutral1_50</color> 49 50 <color name="settingslib_text_color_secondary_device_default">@android:color/system_neutral2_200</color> 51 52 <color name="settingslib_text_color_preference_category_title">@android:color/system_accent1_100</color> 53 54 <!--Deprecated. After sdk 35, don't use it, using materialColorInverseOnSurface in dark theme --> 55 <color name="settingslib_surface_dark">@android:color/system_neutral1_800</color> 56 57 <!--Deprecated. After sdk 35, don't use it--> 58 <color name="settingslib_colorSurface">@color/settingslib_surface_dark</color> 59 60 <color name="settingslib_list_divider_color">@android:color/system_neutral1_700</color> 61</resources>