aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/values/styles.xml
blob: 217bfb28c5834a8990dd9e83213f275a784a4b2b (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
<resources>

    <style name="FrostThemeBase" parent="MaterialDrawerTheme.ActionBar">
        <item name="colorPrimary">@color/facebook_blue</item>
        <item name="colorPrimaryDark">@color/facebook_blue_dark</item>
        <item name="colorAccent">@android:color/white</item>
        <item name="android:windowSoftInputMode">adjustResize</item>
    </style>

    <style name="FrostTheme" parent="@style/FrostThemeBase">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>

    <style name="FrostTheme.Light" parent="MaterialDrawerTheme.Light.DarkToolbar">
        <item name="colorPrimary">@color/facebook_blue</item>
        <item name="colorPrimaryDark">@color/facebook_blue_dark</item>
        <item name="colorAccent">@android:color/black</item>
        <item name="android:windowSoftInputMode">adjustResize</item>
    </style>

    <style name="FrostTheme.Transparent">
        <item name="android:windowShowWallpaper">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
    </style>

    <style name="FrostTheme.Light.Transparent">
        <item name="android:windowShowWallpaper">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
    </style>

    <style name="FrostTheme.Overlay">
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowAnimationStyle">@style/KauSlideInFadeOut</item>
    </style>

    <style name="FrostTheme.Settings" parent="FrostTheme">
        <item name="android:windowAnimationStyle">@style/KauSlideInFadeOut</item>
    </style>

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Dark" />

    <style name="FrostTheme.Splash" parent="Theme.AppCompat.NoActionBar">
        <item name="android:windowBackground">@drawable/splash_screen</item>
        <item name="android:navigationBarColor">@color/frost_splash_background</item>
        <item name="colorPrimaryDark">@color/frost_splash_background</item>
        <item name="colorAccent">@color/frost_splash_background</item>
    </style>

    <style name="FrostProgressBar" parent="Widget.AppCompat.ProgressBar.Horizontal">
        <item name="android:minHeight">@dimen/progress_bar_height</item>
        <item name="android:maxHeight">@dimen/progress_bar_height</item>
    </style>
</resources>