aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/values/styles.xml
blob: 40abb7b8345a906cda42a95499fe521602cc4368 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<resources xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="android:actionBarStyle">@style/MyActionBar</item>
    </style>

    <style name="MyActionBar"
        parent="@android:style/Widget.Holo.Light.ActionBar">
        <item name="android:background">@drawable/actionbar_color</item>
    </style>

    <color name="loading">#ffc400</color>
    <color name="warning">#ff9900</color>
    <color name="error">#e32d2d</color>
    <color name="info">#5ccbf7</color>
</resources>