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
17<resources>
18    <dimen name="sc_spacing_xxxsmall">2dp</dimen>
19    <dimen name="sc_spacing_xxsmall">4dp</dimen>
20    <dimen name="sc_spacing_xsmall">8dp</dimen>
21    <dimen name="sc_spacing_small">12dp</dimen>
22    <dimen name="sc_spacing_medium">14dp</dimen>
23    <dimen name="sc_spacing_large">16dp</dimen>
24    <dimen name="sc_spacing_xlarge">18dp</dimen>
25    <dimen name="sc_spacing_xxlarge">20dp</dimen>
26    <dimen name="sc_spacing_xxxlarge">24dp</dimen>
27
28    <dimen name="sc_card_margin">@dimen/sc_spacing_xxxsmall</dimen>
29    <dimen name="sc_list_margin">@dimen/sc_spacing_large</dimen>
30    <dimen name="sc_list_margin_top">@dimen/sc_spacing_small</dimen>
31
32    <!-- Only used for small screen views, but doesn't have _small_screen suffix since it's fixed in
33         the overlayable. -->
34    <dimen name="sc_action_button_list_margin">@dimen/sc_spacing_large</dimen>
35    <dimen name="sc_action_button_list_margin_large_screen">@dimen/sc_spacing_large</dimen>
36    <dimen name="sc_top_action_button_margin">@dimen/sc_spacing_xxxlarge</dimen>
37    <dimen name="sc_button_horizontal_padding_small_screen">@dimen/sc_spacing_xxxlarge</dimen>
38    <dimen name="sc_button_horizontal_padding_large_screen">56dp</dimen>
39
40    <dimen name="sc_entry_padding_end">@dimen/sc_spacing_xxxlarge</dimen>
41    <dimen name="sc_entry_group_expanded_padding_top">@dimen/sc_spacing_xxxlarge</dimen>
42    <dimen name="sc_entry_group_expanded_padding_bottom">@dimen/sc_spacing_xsmall</dimen>
43    <dimen name="sc_entry_group_collapsed_padding_top">@dimen/sc_spacing_large</dimen>
44    <dimen name="sc_entry_group_collapsed_padding_bottom">@dimen/sc_spacing_large</dimen>
45    <dimen name="sc_card_margin_bottom">@dimen/sc_spacing_xxxlarge</dimen>
46
47    <dimen name="sc_icon_button_touch_target_size">48dp</dimen>
48    <dimen name="sc_button_corner_radius">12dp</dimen>
49    <dimen name="sc_card_corner_radius_large">28dp</dimen>
50    <dimen name="sc_card_corner_radius_medium">20dp</dimen>
51    <dimen name="sc_card_corner_radius_xsmall">4dp</dimen>
52    <dimen name="sc_card_widget_corner_radius">16dp</dimen>
53
54    <dimen name="sc_qs_max_width">492dp</dimen>
55
56    <dimen name="sc_line_height_xlarge">28sp</dimen>
57    <dimen name="sc_line_height_large">24sp</dimen>
58    <dimen name="sc_line_height_medium">20sp</dimen>
59    <dimen name="sc_line_height_small">16dp</dimen>
60</resources>
61