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

27 lines
1.1 KiB
XML
Raw Normal View History

2020-10-08 22:20:20 +02:00
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
2020-10-08 22:20:20 +02:00
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
2020-10-30 10:03:10 +01:00
<style name="PlayerTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
2020-10-11 14:14:38 +02:00
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
2020-11-01 20:17:17 +01:00
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/bg_splash</item>
</style>
<!-- shapes -->
<style name="ShapeAppearance.Teapod.RoundedPoster" parent="ShapeAppearance.MaterialComponents.LargeComponent">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">5dp</item>
</style>
2020-10-11 14:14:38 +02:00
2020-10-08 22:20:20 +02:00
</resources>