aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/values/styles.xml
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-15 16:19:56 -0700
committerAllan Wang <me@allanwang.ca>2017-06-15 16:19:56 -0700
commit15d8a70a6c7596bb9f59a4383df7dccbba3a7012 (patch)
tree4d56aa5e2a78a434bc4c73ea10dfdeb7d8ac8b6f /app/src/main/res/values/styles.xml
parent9e0044f8789a47a41933d341b968fe0a6bc22b6d (diff)
downloadfrost-15d8a70a6c7596bb9f59a4383df7dccbba3a7012.tar.gz
frost-15d8a70a6c7596bb9f59a4383df7dccbba3a7012.tar.bz2
frost-15d8a70a6c7596bb9f59a4383df7dccbba3a7012.zip
Tint more things
Diffstat (limited to 'app/src/main/res/values/styles.xml')
-rw-r--r--app/src/main/res/values/styles.xml28
1 files changed, 21 insertions, 7 deletions
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
index 75060d86..2bd93838 100644
--- a/app/src/main/res/values/styles.xml
+++ b/app/src/main/res/values/styles.xml
@@ -1,17 +1,31 @@
<resources>
- <!-- Base application theme. -->
- <style name="AppTheme" parent="MaterialDrawerTheme.Light.DarkToolbar.ActionBar">
- <item name="android:windowShowWallpaper">true</item>
- <item name="android:windowBackground">@android:color/transparent</item>
+ <style name="FrostThemeBase" parent="MaterialDrawerTheme.ActionBar">
+ <item name="colorPrimary">@color/facebook_blue</item>
+ <item name="colorPrimaryDark">@color/facebook_blue_dark</item>
</style>
- <style name="AppTheme.NoActionBar">
+ <style name="FrostTheme" parent="@style/FrostThemeBase">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
- <style name="AppTheme.Overlay" parent="AppTheme.NoActionBar">
+ <style name="FrostTheme.Light" parent="MaterialDrawerTheme.Light.DarkToolbar">
+ <item name="colorPrimary">@color/facebook_blue</item>
+ <item name="colorPrimaryDark">@color/facebook_blue_dark</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:activityOpenEnterAnimation">@anim/slide_in_right</item>
<item name="android:activityOpenExitAnimation">@anim/slide_out_right</item>
@@ -23,7 +37,7 @@
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Dark" />
- <style name="Theme.Splash" parent="Theme.AppCompat.NoActionBar">
+ <style name="FrostTheme.Splash" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/splash_screen</item>
<item name="android:navigationBarColor">@color/splashBackground</item>
<item name="colorPrimaryDark">@color/splashBackground</item>