diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-15 16:19:56 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-15 16:19:56 -0700 |
commit | 15d8a70a6c7596bb9f59a4383df7dccbba3a7012 (patch) | |
tree | 4d56aa5e2a78a434bc4c73ea10dfdeb7d8ac8b6f /app/src/main/AndroidManifest.xml | |
parent | 9e0044f8789a47a41933d341b968fe0a6bc22b6d (diff) | |
download | frost-15d8a70a6c7596bb9f59a4383df7dccbba3a7012.tar.gz frost-15d8a70a6c7596bb9f59a4383df7dccbba3a7012.tar.bz2 frost-15d8a70a6c7596bb9f59a4383df7dccbba3a7012.zip |
Tint more things
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index fab2d2a3..3e2c0bee 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -20,12 +20,12 @@ android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" - android:theme="@style/AppTheme"> + android:theme="@style/FrostThemeBase"> <activity android:name=".StartActivity" android:configChanges="orientation|screenSize|locale" android:label="@string/app_name" - android:theme="@style/Theme.Splash"> + android:theme="@style/FrostTheme.Splash"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> @@ -36,10 +36,10 @@ android:configChanges="orientation|screenSize|locale" android:hardwareAccelerated="true" android:label="@string/app_name" - android:theme="@style/AppTheme.NoActionBar" /> + android:theme="@style/FrostTheme" /> <activity android:name=".WebOverlayActivity" - android:theme="@style/AppTheme.Overlay"> + android:theme="@style/FrostTheme.Overlay"> <intent-filter> <action android:name="android.intent.action.VIEW" /> @@ -92,13 +92,13 @@ </activity> <activity android:name=".LoginActivity" - android:theme="@style/AppTheme.NoActionBar" /> + android:theme="@style/FrostTheme" /> <activity android:name=".SelectorActivity" - android:theme="@style/AppTheme.NoActionBar" /> + android:theme="@style/FrostTheme" /> <activity android:name=".SettingsActivity" - android:theme="@style/AppTheme.NoActionBar" /> + android:theme="@style/FrostTheme" /> <service android:name=".services.NotificationService" |