1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    Copyright (C) 2015 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<!-- These styles are only included in the platform build, to make sure that they do not
19     override the corresponding styles in the compatibility build. -->
20<resources>
21
22    <!-- General styles -->
23
24    <!-- These themes should only be used in platform builds because support libraries'
25         FragmentActivity and ActionBarActivity expects the activity theme to inherit from
26         Theme.AppCompat. -->
27    <style name="SuwThemeMaterial" parent="android:Theme.Material.NoActionBar">
28        <item name="android:colorAccent">@color/suw_color_accent_dark</item>
29        <item name="android:indeterminateTint">@color/suw_progress_bar_color_dark</item>
30        <!-- Specify the indeterminateTintMode to work around a bug in Lollipop -->
31        <item name="android:indeterminateTintMode">src_in</item>
32        <item name="android:navigationBarColor">@android:color/black</item>
33        <item name="android:statusBarColor">@android:color/black</item>
34        <item name="android:textColorLink">@color/suw_link_color_dark</item>
35        <item name="android:textColorSecondary">@color/suw_color_secondary_dark</item>
36        <item name="android:windowAnimationStyle">@style/Animation.SuwWindowAnimation</item>
37        <item name="android:windowSoftInputMode">adjustResize</item>
38
39        <item name="suwCardBackground">@drawable/suw_card_bg</item>
40        <item name="suwNavBarTheme">@style/SuwNavBarThemeDark</item>
41    </style>
42
43    <style name="SuwThemeMaterial.Light" parent="android:Theme.Material.Light.NoActionBar">
44        <item name="android:colorAccent">@color/suw_color_accent_light</item>
45        <item name="android:indeterminateTint">@color/suw_progress_bar_color_light</item>
46        <!-- Specify the indeterminateTintMode to work around a bug in Lollipop -->
47        <item name="android:indeterminateTintMode">src_in</item>
48        <item name="android:navigationBarColor">@android:color/black</item>
49        <item name="android:statusBarColor">@android:color/black</item>
50        <item name="android:textColorLink">@color/suw_link_color_light</item>
51        <item name="android:textColorSecondary">@color/suw_color_secondary_light</item>
52        <item name="android:windowAnimationStyle">@style/Animation.SuwWindowAnimation</item>
53        <item name="android:windowSoftInputMode">adjustResize</item>
54
55        <item name="suwCardBackground">@drawable/suw_card_bg</item>
56        <item name="suwNavBarTheme">@style/SuwNavBarThemeLight</item>
57    </style>
58
59</resources>
60