1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2013 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  <color name="conference_call_manager_caller_name_text_color">#4d4d4d</color>
20  <!-- Used with some smaller texts in manage conference screen. -->
21  <color name="conference_call_manager_secondary_text_color">#999999</color>
22
23  <color name="incall_dialpad_background">#ffffff</color>
24
25  <!-- Background color for status bar. For portrait this will be ignored. -->
26  <color name="statusbar_background_color">?android:attr/colorPrimary</color>
27
28  <!-- Background colors for InCallUI. This is a set of colors which pass WCAG
29       AA and all have a contrast ratio over 5:1.
30
31      These colors are also used by InCallUIMaterialColorMapUtils to generate
32      primary activity colors.
33  -->
34  <array name="background_colors">
35    <item>#00796B</item>
36    <item>#3367D6</item>
37    <item>#303F9F</item>
38    <item>#7B1FA2</item>
39    <item>#C2185B</item>
40    <item>#C53929</item>
41    <item>#A52714</item>
42  </array>
43
44  <!-- Darker versions of background_colors, two shades darker. These colors are used for the
45       status bar. -->
46  <array name="background_colors_dark">
47    <item>#00695C</item>
48    <item>#2A56C6</item>
49    <item>#283593</item>
50    <item>#6A1B9A</item>
51    <item>#AD1457</item>
52    <item>#B93221</item>
53    <item>#841F10</item>
54  </array>
55
56  <color name="incall_background_gradient_top">#E91141BB</color>
57  <color name="incall_background_gradient_middle">#E91141BB</color>
58  <color name="incall_background_gradient_bottom">#CC229FEB</color>
59
60  <color name="incall_background_multiwindow">#E91141BB</color>
61
62  <color name="incall_background_gradient_spam_top">#E5A30B0B</color>
63  <color name="incall_background_gradient_spam_middle">#D6C01111</color>
64  <color name="incall_background_gradient_spam_bottom">#B8E55135</color>
65
66  <color name="incall_background_multiwindow_spam">#E9C22E2E</color>
67</resources>
68