1<!--
2  ~ Copyright (C) 2022 The Android Open Source Project
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License.
15  -->
16<resources>
17    <!-- Temperature increment float for degrees celsius (in degrees celsius) -->
18    <item name="celsius_temperature_increment" format="float" type="fraction">0.5</item>
19    <!--
20        Temperature increment float for degrees fahrenheit.
21        Specified in degrees celsius - 0.5555555°C ~= 1°F
22     -->
23    <item name="fahrenheit_temperature_increment" format="float" type="fraction">0.5555555</item>
24
25    <!-- Disabled alpha for userpicker -->
26    <item name="user_picker_disabled_alpha" format="float" type="fraction">0.72</item>
27
28    <!--
29        The amount of dimming to apply to the hvac overlay window when fully opened.
30        Range is from 1.0 for completely opaque to 0.0 for no dim.
31    -->
32    <item name="hvac_overlay_window_dim_amount" format="float" type="fraction">0.72</item>
33</resources>
34