2020-03-16 15:41:57 +00:00
|
|
|
<resources>
|
|
|
|
|
|
|
|
<!-- Base application theme. -->
|
2020-03-28 13:29:48 +00:00
|
|
|
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
|
2020-03-16 15:41:57 +00: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-03-28 13:29:48 +00:00
|
|
|
<style name="FullscreenTheme" parent="AppTheme">
|
|
|
|
<item name="android:actionBarStyle">@style/FullscreenActionBarStyle</item>
|
|
|
|
<item name="android:windowActionBarOverlay">true</item>
|
|
|
|
<item name="android:windowBackground">@null</item>
|
|
|
|
<item name="metaButtonBarStyle">?android:attr/buttonBarStyle</item>
|
|
|
|
<item name="metaButtonBarButtonStyle">?android:attr/buttonBarButtonStyle</item>
|
2020-03-16 15:41:57 +00:00
|
|
|
</style>
|
|
|
|
|
2020-03-28 13:29:48 +00:00
|
|
|
<style name="FullscreenActionBarStyle" parent="Widget.AppCompat.ActionBar">
|
|
|
|
<item name="android:background">@color/black_overlay</item>
|
2020-03-16 15:41:57 +00:00
|
|
|
</style>
|
|
|
|
|
2020-03-28 13:29:48 +00:00
|
|
|
</resources>
|