summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/theme/base/res/values/theme_dialer_light.xml
blob: 1d9ef699e3fa5862ff80de16cd922827e13ab3a6 (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
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2018 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
  -->
<resources>
  <!-- Deprecated: ActionBars are clunky and Toolbar (along with Dialer.ThemeBase.NoActionBar)
      should be used in favor-->
  <style name="Dialer.ThemeBase.ActionBar">
    <!-- These are used to style all actionbars in Dialer. These aren't needed in Dialer.ThemeBase.NoActionBar -->
    <item name="actionBarStyle">@style/DialerActionBarBaseStyle</item>
    <item name="actionBarSize">@dimen/action_bar_height</item>

    <!-- Pulled from Theme.AppCompat.Light.DarkActionbar-->
    <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
    <item name="actionBarWidgetTheme">@null</item>
    <item name="actionBarTheme">@style/DialerActionBarBaseTheme</item>
    <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>

    <item name="android:colorPrimaryDark">@color/settings_primary_dark</item>
    <item name="colorControlHighlight">@color/dialer_ripple_color</item>
  </style>

  <style name="Dialer.ThemeBase.NoActionBar">
    <!-- Copied from Theme.AppCompat.Light.NoActionBar. We can remove this and update the Dialer
        base style once none of our activities depend on ActionBar anymore. -->
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
    <item name="colorControlHighlight">@color/dialer_ripple_color</item>
  </style>

  <!-- Activities and Applications should inherit from one of the themes above. -->
  <style name="Dialer.ThemeBase">
    <item name="android:forceDarkAllowed">true</item>
    <!-- These values should be used to color all backgrounds. -->
    <item name="android:colorBackground">@color/dialer_background_color</item>
    <item name="android:colorBackgroundFloating">@android:color/white</item>

    <!-- These values should be used to set text color. -->
    <item name="android:textColorPrimary">@color/dialer_primary_text_color</item>
    <item name="android:textColorSecondary">@color/dialer_secondary_text_color</item>
    <item name="android:textColorPrimaryInverse">@color/google_grey_300</item>
    <item name="android:textColorSecondaryInverse">@color/google_grey_400</item>
    <item name="android:textColorHint">@color/google_grey_600</item>

    <!-- These will be automatically used to color most Appcompat/Material widgets. -->
    <item name="android:colorPrimary">@color/dialer_theme_color</item>
    <item name="colorPrimary">@color/dialer_theme_color</item>
    <item name="android:colorPrimaryDark">@color/dialer_theme_color_dark</item>
    <item name="colorPrimaryDark">@color/dialer_theme_color_dark</item>
    <item name="android:colorAccent">@color/dialer_secondary_color</item>
    <item name="colorAccent">@color/dialer_secondary_color</item>

    <!-- Used to automatically style check/selected checkbox, switches and radio buttons -->
    <item name="colorControlActivated">?android:attr/colorPrimary</item>

    <!-- Dialer specific attributes. -->
    <item name="colorIcon">@color/google_grey_700</item>
    <item name="colorIconSecondary">@color/google_grey_400</item>
    <item name="colorTextOnUnthemedDarkBackground">@android:color/white</item>
    <item name="colorIconOnUnthemedDarkBackground">@android:color/white</item>
    <item name="colorMobileTerminatingChatText">@color/google_grey_900</item>
    <item name="colorMobileTerminatingChatBackground">@color/google_grey_100</item>
    <item name="colorMobileOriginatingChatText">@color/google_blue_900</item>
    <item name="colorMobileOriginatingChatBackground">@color/google_blue_100</item>
    <item name="colorPrimary20pct">@color/dialer_theme_color_20pct</item>
  </style>

  <!-- TODO(a bug): investigate making this style's parent Dialer.ThemeBase.NoActionBar -->
  <style name="Theme.AppCompat.Translucent" parent="Theme.AppCompat.NoActionBar">
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:colorBackgroundCacheHint">@null</item>
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowAnimationStyle">@android:style/Animation</item>
  </style>

  <!-- Deprecated: Use Toolbar instead of ActionBar. -->
  <!-- Used to style all Dialer's action bars. Every actionbar is awarded this for free if the parent
     activity's theme extends from Dialer.ThemeBase.ActionBar or doesn't specify a theme. -->
  <style name="DialerActionBarBaseStyle"
      parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
    <item name="android:background">?android:attr/colorPrimary</item>
    <item name="background">?android:attr/colorPrimary</item>
  </style>
  <style name="DialerActionBarBaseTheme"
      parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    <item name="colorControlNormal">@android:color/white</item>
  </style>
</resources>