diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-19 21:04:31 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-19 21:04:31 -0700 |
commit | 7b90fa9819c9b4765f107ea04dd7ac687dc572ad (patch) | |
tree | 45994718a684c41dcff681d42ea000ca01beecc0 /app/src/main/res | |
parent | ab61f2afd887d772426bda9d9aea829557e2e39d (diff) | |
download | frost-7b90fa9819c9b4765f107ea04dd7ac687dc572ad.tar.gz frost-7b90fa9819c9b4765f107ea04dd7ac687dc572ad.tar.bz2 frost-7b90fa9819c9b4765f107ea04dd7ac687dc572ad.zip |
Clean up notifications and animations
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/drawable/splash_screen.xml | 7 | ||||
-rw-r--r-- | app/src/main/res/values/colors.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/values/styles.xml | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/app/src/main/res/drawable/splash_screen.xml b/app/src/main/res/drawable/splash_screen.xml index 16a31534..4e1c0048 100644 --- a/app/src/main/res/drawable/splash_screen.xml +++ b/app/src/main/res/drawable/splash_screen.xml @@ -1,11 +1,10 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android" - android:opacity="opaque"> - <item android:drawable="@color/splashBackground"/> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@color/frost_splash_background" /> <item android:bottom="@dimen/splash_logo"> <bitmap android:gravity="center" - android:src="@drawable/splash_logo"/> + android:src="@drawable/splash_logo" /> </item> </layer-list>
\ No newline at end of file diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index 0a058ccf..e6dc5b24 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -3,7 +3,8 @@ <color name="colorPrimary">@color/facebook_blue</color> <color name="colorPrimaryDark">@color/facebook_blue_dark</color> <color name="colorAccent">#FF4081</color> - <color name="splashBackground">@color/facebook_blue</color> + <color name="frost_splash_background">@color/facebook_blue</color> <color name="facebook_blue">#3b5998</color> <color name="facebook_blue_dark">#2e4b86</color> + <color name="frost_notification_accent">@color/facebook_blue</color> </resources> diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 74347ddc..0adb5967 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -36,9 +36,9 @@ <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> - <item name="colorAccent">@color/splashBackground</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"> |