2018-07-26 17:04:44 +02:00
|
|
|
<resources>
|
|
|
|
|
|
|
|
<!-- Base application theme. -->
|
2019-05-07 17:55:49 +02:00
|
|
|
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight">
|
2018-07-26 17:04:44 +02:00
|
|
|
<!-- Customize your theme here. -->
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
|
|
|
<item name="colorAccent">@color/colorAccent</item>
|
2019-01-04 09:02:11 +01:00
|
|
|
<item name="android:navigationBarColor">@android:color/black</item>
|
|
|
|
<item name="android:textColorPrimary">@android:color/white</item>
|
2018-07-26 17:04:44 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="AppTheme.NoActionBar">
|
|
|
|
<item name="windowActionBar">false</item>
|
|
|
|
<item name="windowNoTitle">true</item>
|
2019-02-22 06:34:24 +01:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="AppTheme.NoActionBarWithTransparentStatusBar" parent="AppTheme.NoActionBar">
|
2018-09-21 17:35:57 +02:00
|
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
|
|
</style>
|
|
|
|
|
2019-02-22 06:34:24 +01:00
|
|
|
<style name="AppTheme.NoActionBarWithTranslucentWindow" parent="AppTheme.NoActionBarWithTransparentStatusBar">
|
2018-09-21 17:35:57 +02:00
|
|
|
<item name="android:windowTranslucentStatus">true</item>
|
2018-07-26 17:04:44 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="AppTheme.ActionBar.Transparent" parent="AppTheme">
|
2018-09-21 17:35:57 +02:00
|
|
|
<item name="colorPrimary">@color/transparentActionBarColor</item>
|
|
|
|
<item name="android:windowTranslucentStatus">true</item>
|
|
|
|
<item name="android:windowTranslucentNavigation">true</item>
|
2018-07-26 17:04:44 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
|
|
|
|
|
2019-05-07 17:55:49 +02:00
|
|
|
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.DayNight" />
|
2018-07-26 17:04:44 +02:00
|
|
|
|
|
|
|
<style name="Theme.AppCompat.Transparent" parent="AppTheme.ActionBar.Transparent">
|
|
|
|
<item name="android:windowNoTitle">true</item>
|
|
|
|
<item name="android:windowBackground">@android:color/transparent</item>
|
|
|
|
<item name="android:colorBackgroundCacheHint">@null</item>
|
|
|
|
<item name="android:windowIsTranslucent">true</item>
|
|
|
|
</style>
|
|
|
|
|
2019-02-22 06:34:24 +01:00
|
|
|
<style name="CustomTabLayout" parent="Widget.Design.TabLayout">
|
|
|
|
<item name="tabIndicatorColor">@android:color/white</item>
|
|
|
|
<item name="tabIndicatorHeight">3dp</item>
|
|
|
|
<item name="tabBackground">?attr/selectableItemBackground</item>
|
|
|
|
<item name="tabSelectedTextColor">@android:color/white</item>
|
|
|
|
</style>
|
|
|
|
|
2018-07-26 17:04:44 +02:00
|
|
|
</resources>
|