1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2023 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 state on color--> 20 <color name="settingslib_state_on_color">@android:color/system_accent1_100</color> 21 22 <!-- Material next state off color--> 23 <color name="settingslib_state_off_color">@android:color/system_accent1_100</color> 24 25 <!-- Material next thumb disable color--> 26 <color name="settingslib_thumb_disabled_color">@color/settingslib_thumb_off_color</color> 27 28 <!-- Material next thumb off color--> 29 <color name="settingslib_thumb_on_color">@android:color/system_accent1_0</color> 30 31 <!-- Material next thumb off color--> 32 <color name="settingslib_thumb_off_color">@android:color/system_neutral2_500</color> 33 34 <!-- Material next track on color--> 35 <color name="settingslib_track_on_color">@android:color/system_accent1_600</color> 36 37 <!-- Material next track off color--> 38 <color name="settingslib_track_off_color">@android:color/system_surface_container_highest_light</color> 39 40 <!-- Material next track outline color--> 41 <color name="settingslib_track_online_color">@color/settingslib_switch_track_outline_color</color> 42 <!--Deprecated. After sdk 35 don't use it. using materialColorOnSurface--> 43 <color name="settingslib_text_color_primary_device_default">@android:color/system_on_surface_light</color> 44 <!--Deprecated. After sdk 35 don't use it. using materialColorOnSurfaceVariant--> 45 <color name="settingslib_text_color_secondary_device_default">@android:color/system_on_surface_variant_light</color> 46</resources>