VancedManager/app/src/main/res/values/styles.xml

22 lines
884 B
XML
Raw Normal View History

2020-03-16 15:41:57 +00:00
<resources>
2020-04-13 21:07:19 +00:00
<style name="SplashTheme" parent="Theme.MaterialComponents.NoActionBar">
<item name="android:windowBackground">@drawable/splash_logo</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
2020-03-16 15:41:57 +00:00
</style>
<style name="LightTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
2020-04-30 17:43:32 +00:00
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">?colorSurface</item>
<item name="android:statusBarColor">#787777</item>
</style>
<style name="DarkTheme" parent="Theme.MaterialComponents.NoActionBar">
<item name="colorBackgroundFloating">#111111</item>
<item name="android:windowBackground">?colorSurface</item>
<item name="android:statusBarColor">#000000</item>
</style>
</resources>