2021-02-08 18:41:49 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
<style name="BaseAppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
2021-10-14 16:18:24 +02:00
|
|
|
<item name="colorOnPrimary">@color/colorPrimary</item>
|
|
|
|
<item name="colorSecondary">@color/colorPrimary</item>
|
2021-02-08 18:41:49 +01:00
|
|
|
<item name="colorOnSecondary">@color/colorPrimary</item>
|
2021-10-14 16:18:24 +02:00
|
|
|
<item name="android:statusBarColor">@color/backgroundColor</item>
|
|
|
|
<item name="android:navigationBarColor">@color/backgroundColor</item>
|
|
|
|
<item name="android:colorBackground">@color/backgroundColor</item>
|
2021-02-08 18:41:49 +01:00
|
|
|
|
|
|
|
<item name="chipChoiceStyle">@style/ChipChoice</item>
|
2021-10-11 17:33:38 +02:00
|
|
|
|
2021-11-11 11:58:57 +01:00
|
|
|
<item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog</item>
|
2021-02-08 18:41:49 +01:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="AppTheme" parent="BaseAppTheme">
|
|
|
|
<item name="android:windowLightStatusBar">true</item>
|
2021-10-14 16:18:24 +02:00
|
|
|
<item name="android:windowLightNavigationBar">true</item>
|
2021-02-08 18:41:49 +01:00
|
|
|
</style>
|
2021-10-11 17:33:38 +02:00
|
|
|
|
|
|
|
<style name="ThemeOverlay.AppTheme.BottomSheetDialog" parent="ThemeOverlay.MaterialComponents.BottomSheetDialog">
|
|
|
|
<item name="bottomSheetStyle">@style/ModalBottomSheetDialog</item>
|
|
|
|
</style>
|
2021-02-08 18:41:49 +01:00
|
|
|
</resources>
|