summaryrefslogtreecommitdiff
path: root/data/res/values-watch/colors_device_defaults.xml
blob: 6ffd6e697361c8f74e91ec494041fbc0dc051139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2016 The Android Open Source 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.
-->

<!-- Colors specific to Theme.DeviceDefault on watches, as specified via themes_device_default.xml
     Note: These colors specifically proide a darker, high-contrast UI that is suitable for
     wearables with respect to 'glanceability'. OEM customization is supported within this set. -->
<resources>
    <!--
       accent_device_default_dark
         > from values/colors_material/accent_material_dark
         > from values/colors_material/material_deep_teal_200
         = #ff80cbc4
         ! replaced with custom color #5E97F6
         ! OEMS can customize as per specification
    -->
    <color name="accent_device_default_dark">#5E97F6</color>

    <!--
       foreground_device_default_dark
         - introduced to avoid coupling to foreground_material_dark
         - colorForeground typically falls through Theme.DeviceDefault to Theme.Material
         ! fixed as white for optimal glanceability/contrast
         ! OEMs should not customize
    -->
    <color name="foreground_device_default_dark">@color/white</color>

    <!--
       background_device_default_dark
         > from values/colors_material/background_material_dark
         > from values/colors_material/material_grey_850
         = #ff303030
         ! replaced with custom color #000000
         ! OEMs can customized as per specification
           (derived from accent color, constrained by brightness)
    -->
    <color name="background_device_default_dark">#000000</color>

    <!--
       background_floating_device_default_dark
         > from values/colors_material/background_floating_material_dark
         > from values/colors_material/material_grey_800
         = #ff424242
         ! replaced with custom color #1D2E4D
           (derived from accent color, constrained by brightness)
    -->
    <color name="background_floating_device_default_dark">#1D2E4D</color>

    <!--
       primary_device_default_dark
         > from values/colors_material/primary_material_dark
         > from values/colors_material/material_grey_900
         = #ff212121
         ! replaced with custom color #808080
         ! OEMs can customize as per specification
           (derived from background color + foreground @ 50% opacity)
    -->
    <color name="primary_device_default_dark">#808080</color>

    <!--
       primary_dark_device_default_dark
         > from values/colors_material/primary_dark_material_dark
         = @color/black
         ! replaced with custom color #333333
         ! OEMS can customize as per specification
           (derived from background color + foreground @ 20% opacity)
    -->
    <color name="primary_dark_device_default_dark">#333333</color>

    <!--
       button_normal_device_default_dark
         - uses ?attr/disabledAlpha and ?attr/colorPrimaryDark to draw state list
           (used as colorButtonNormal attribute in theme)
         - see color-watch/btn_watch_default_dark.xml
    -->
    <color name="button_normal_device_default_dark">@color/btn_watch_default_dark</color>

    <!--
       error_color_device_default_dark
         - introduced to avoid coupling to error_color_mtterial (also #F4511E)
         - colorError typically falls through Theme.DeviceDefault to Theme.Material
         ! OEMs can customize as per specification
    -->
    <color name="error_color_device_default_dark">#F4511E</color>

    <!-- no customization required/suggested below this point -->

    <!--
       background_cache_hint_selector_device_default
         - note that this is based off of colors/background_cache_hint_selector_device_default
           xml drawable
         - uses ?attr/colorBackground and transparency to draw
         - no color customization required here
    -->

    <!-- deprecated for Wear
         these overrides exist only for compatibility with existing
         WTS theme test heuristics, based on the previous modifications
         to the material theme, they should not be used for customization
         as they are not exposed via publicly accessible attributes -->
    <color name="accent_device_default_dark_60_percent_opacity">#995E97f6</color>
    <color name="accent_device_default_700">#5385DB</color>
    <color name="accent_device_default_light">#75A4F5</color>
    <color name="accent_device_default_50">#93B7F5</color>
</resources>