2019-08-10 12:29:04 +02:00
|
|
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
2018-07-26 17:04:44 +02:00
|
|
|
|
|
|
|
<!-- 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. -->
|
2019-10-03 14:31:55 +02:00
|
|
|
<item name="colorPrimary">?attr/colorPrimary</item>
|
|
|
|
<item name="colorPrimaryDark">?attr/colorPrimaryDark</item>
|
2018-07-26 17:04:44 +02:00
|
|
|
<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>
|
|
|
|
|
2019-09-03 08:37:20 +02:00
|
|
|
<style name="AppTheme.Launcher" parent="@style/AppTheme.NoActionBarWithTransparentStatusBar">
|
|
|
|
<item name="android:windowBackground">@drawable/splash_screen</item>
|
|
|
|
</style>
|
|
|
|
|
2018-07-26 17:04:44 +02:00
|
|
|
<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">
|
2019-09-10 10:41:54 +02:00
|
|
|
<item name="android:windowBackground">@android:color/black</item>
|
2018-09-21 17:35:57 +02:00
|
|
|
<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
|
|
|
|
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>
|
2019-08-12 11:20:33 +02:00
|
|
|
|
|
|
|
<style name="MaterialAlertDialogTheme" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog">
|
2019-09-20 15:27:00 +02:00
|
|
|
<item name="android:textSize">?attr/font_default</item>
|
2019-10-03 14:31:55 +02:00
|
|
|
<item name="android:background">?attr/cardViewBackgroundColor</item>
|
2019-09-20 15:27:00 +02:00
|
|
|
<item name="materialAlertDialogTitleTextStyle">@style/MaterialAlertDialogTitleTextStyle</item>
|
|
|
|
<item name="materialAlertDialogBodyTextStyle">@style/MaterialAlertDialogBodyTextStyle</item>
|
2019-08-12 11:20:33 +02:00
|
|
|
<item name="buttonBarPositiveButtonStyle">@style/MaterialAlertDialogPositiveButtonStyle</item>
|
|
|
|
<item name="buttonBarNegativeButtonStyle">@style/MaterialAlertDialogNegativeButtonStyle</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="MaterialAlertDialogPositiveButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog">
|
|
|
|
<item name="android:textColor">@color/colorAccent</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="MaterialAlertDialogNegativeButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog">
|
|
|
|
<item name="android:textColor">@color/primaryTextColor</item>
|
|
|
|
</style>
|
2019-02-22 06:34:24 +01:00
|
|
|
|
2019-09-20 15:27:00 +02:00
|
|
|
<style name="MaterialAlertDialogTitleTextStyle" parent="MaterialAlertDialog.MaterialComponents.Title.Text">
|
|
|
|
<item name="android:textSize">?attr/font_20</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="MaterialAlertDialogBodyTextStyle">
|
|
|
|
<item name="android:textSize">?attr/font_default</item>
|
|
|
|
</style>
|
|
|
|
|
2019-08-21 10:21:17 +02:00
|
|
|
<style name="PreferenceActivityTheme" parent="AppTheme.NoActionBar">
|
2019-09-20 15:27:00 +02:00
|
|
|
<item name="android:textAppearanceListItem">@style/PreferenceTitleTextStyle</item>
|
|
|
|
<item name="android:textAppearanceListItemSecondary">@style/PreferenceSubtitleTextStyle</item>
|
2019-08-21 10:21:17 +02:00
|
|
|
<item name="android:textColorPrimary">@color/primaryTextColor</item>
|
2019-08-22 08:44:10 +02:00
|
|
|
<item name="buttonBarPositiveButtonStyle">@style/MaterialAlertDialogPositiveButtonStyle</item>
|
|
|
|
<item name="buttonBarNegativeButtonStyle">@style/MaterialAlertDialogNegativeButtonStyle</item>
|
2019-10-03 14:31:55 +02:00
|
|
|
<item name="alertDialogTheme">@style/ListPreferenceStyle</item>
|
2019-08-21 10:21:17 +02:00
|
|
|
</style>
|
|
|
|
|
2019-09-20 15:27:00 +02:00
|
|
|
<style name="PreferenceTitleTextStyle">
|
|
|
|
<item name="android:textSize">?attr/font_16</item>
|
2019-09-24 02:51:56 +02:00
|
|
|
<item name="android:textColor">@color/primaryTextColor</item>
|
2019-09-20 15:27:00 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="PreferenceSubtitleTextStyle">
|
|
|
|
<item name="android:textSize">?attr/font_default</item>
|
|
|
|
</style>
|
|
|
|
|
2019-10-03 14:31:55 +02:00
|
|
|
<style name="ListPreferenceStyle" parent="ThemeOverlay.AppCompat.Dialog.Alert">
|
|
|
|
<item name="android:background">?attr/cardViewBackgroundColor</item>
|
|
|
|
</style>
|
|
|
|
|
2019-09-26 18:30:24 +02:00
|
|
|
<style name="FontStyle" />
|
2019-09-20 15:27:00 +02:00
|
|
|
|
|
|
|
<style name="FontStyle.Small">
|
|
|
|
<item name="font_default">12sp</item>
|
|
|
|
<item name="font_12">12sp</item>
|
|
|
|
<item name="font_16">14sp</item>
|
|
|
|
<item name="font_18">16sp</item>
|
|
|
|
<item name="font_20">18sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="FontStyle.Normal">
|
|
|
|
<item name="font_default">14sp</item>
|
|
|
|
<item name="font_12">12sp</item>
|
|
|
|
<item name="font_16">16sp</item>
|
|
|
|
<item name="font_18">18sp</item>
|
|
|
|
<item name="font_20">20sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="FontStyle.Large">
|
|
|
|
<item name="font_default">16sp</item>
|
|
|
|
<item name="font_12">14sp</item>
|
|
|
|
<item name="font_16">18sp</item>
|
|
|
|
<item name="font_18">20sp</item>
|
|
|
|
<item name="font_20">22sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="FontStyle.XLarge">
|
|
|
|
<item name="font_default">18sp</item>
|
|
|
|
<item name="font_12">16sp</item>
|
|
|
|
<item name="font_16">20sp</item>
|
|
|
|
<item name="font_18">22sp</item>
|
|
|
|
<item name="font_20">24sp</item>
|
|
|
|
</style>
|
|
|
|
|
2019-09-26 18:30:24 +02:00
|
|
|
<style name="TitleFontStyle" />
|
|
|
|
|
|
|
|
<style name="TitleFontStyle.Small">
|
|
|
|
<item name="title_font_default">12sp</item>
|
|
|
|
<item name="title_font_12">12sp</item>
|
|
|
|
<item name="title_font_16">14sp</item>
|
|
|
|
<item name="title_font_18">16sp</item>
|
|
|
|
<item name="title_font_20">18sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="TitleFontStyle.Normal">
|
|
|
|
<item name="title_font_default">14sp</item>
|
|
|
|
<item name="title_font_12">12sp</item>
|
|
|
|
<item name="title_font_16">16sp</item>
|
|
|
|
<item name="title_font_18">18sp</item>
|
|
|
|
<item name="title_font_20">20sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="TitleFontStyle.Large">
|
|
|
|
<item name="font_default">16sp</item>
|
|
|
|
<item name="title_font_12">14sp</item>
|
|
|
|
<item name="title_font_16">18sp</item>
|
|
|
|
<item name="title_font_18">20sp</item>
|
|
|
|
<item name="title_font_20">22sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="TitleFontStyle.XLarge">
|
|
|
|
<item name="title_font_default">18sp</item>
|
|
|
|
<item name="title_font_12">16sp</item>
|
|
|
|
<item name="title_font_16">20sp</item>
|
|
|
|
<item name="title_font_18">22sp</item>
|
|
|
|
<item name="title_font_20">24sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="ContentFontStyle" />
|
|
|
|
|
|
|
|
<style name="ContentFontStyle.Small">
|
|
|
|
<item name="content_font_default">12sp</item>
|
|
|
|
<item name="content_font_12">12sp</item>
|
|
|
|
<item name="content_font_16">14sp</item>
|
|
|
|
<item name="content_font_18">16sp</item>
|
|
|
|
<item name="content_font_20">18sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="ContentFontStyle.Normal">
|
|
|
|
<item name="content_font_default">14sp</item>
|
|
|
|
<item name="content_font_12">12sp</item>
|
|
|
|
<item name="content_font_16">16sp</item>
|
|
|
|
<item name="content_font_18">18sp</item>
|
|
|
|
<item name="content_font_20">20sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="ContentFontStyle.Large">
|
|
|
|
<item name="content_font_default">16sp</item>
|
|
|
|
<item name="content_font_12">14sp</item>
|
|
|
|
<item name="content_font_16">18sp</item>
|
|
|
|
<item name="content_font_18">20sp</item>
|
|
|
|
<item name="content_font_20">22sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="ContentFontStyle.XLarge">
|
|
|
|
<item name="content_font_default">18sp</item>
|
|
|
|
<item name="content_font_12">16sp</item>
|
|
|
|
<item name="content_font_16">20sp</item>
|
|
|
|
<item name="content_font_18">22sp</item>
|
|
|
|
<item name="content_font_20">24sp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="ContentFontStyle.XXLarge">
|
|
|
|
<item name="content_font_default">20sp</item>
|
|
|
|
<item name="content_font_12">18sp</item>
|
|
|
|
<item name="content_font_16">22sp</item>
|
|
|
|
<item name="content_font_18">24sp</item>
|
|
|
|
<item name="content_font_20">26sp</item>
|
|
|
|
</style>
|
|
|
|
|
2019-10-03 14:31:55 +02:00
|
|
|
<style name="Theme" />
|
|
|
|
|
|
|
|
<style name="Theme.Default">
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
|
|
|
<item name="backgroundColor">@color/backgroundColor</item>
|
|
|
|
<item name="roundedBottomSheetPrimaryBackground">@color/roundedBottomSheetPrimaryBackground</item>
|
|
|
|
<item name="cardViewBackgroundColor">@color/cardViewBackgroundColor</item>
|
|
|
|
<item name="toolbarAndTabBackgroundColor">@color/toolbarAndTabBackgroundColor</item>
|
|
|
|
<item name="circularProgressBarBackground">#FFFFFF</item>
|
|
|
|
<item name="tabLayoutWithExpandedCollapsingToolbarTabBackground">#FFFFFF</item>
|
|
|
|
<item name="tabLayoutWithCollapsedCollapsingToolbarTabBackground">@color/colorPrimary</item>
|
|
|
|
<item name="navBarColor">@color/backgroundColor</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="Theme.Default.NormalDark">
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
|
|
|
<item name="backgroundColor">@color/backgroundColor</item>
|
|
|
|
<item name="roundedBottomSheetPrimaryBackground">@color/roundedBottomSheetPrimaryBackground</item>
|
|
|
|
<item name="cardViewBackgroundColor">@color/cardViewBackgroundColor</item>
|
|
|
|
<item name="toolbarAndTabBackgroundColor">@color/toolbarAndTabBackgroundColor</item>
|
|
|
|
<item name="circularProgressBarBackground">@color/colorPrimary</item>
|
|
|
|
<item name="tabLayoutWithExpandedCollapsingToolbarTabBackground">@color/backgroundColor</item>
|
|
|
|
<item name="tabLayoutWithCollapsedCollapsingToolbarTabBackground">@color/colorPrimary</item>
|
|
|
|
<item name="navBarColor">@color/backgroundColor</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="Theme.Default.AmoledDark">
|
|
|
|
<item name="colorPrimary">#000000</item>
|
|
|
|
<item name="colorPrimaryDark">#000000</item>
|
|
|
|
<item name="backgroundColor">#000000</item>
|
|
|
|
<item name="roundedBottomSheetPrimaryBackground">#000000</item>
|
|
|
|
<item name="cardViewBackgroundColor">#000000</item>
|
|
|
|
<item name="toolbarAndTabBackgroundColor">#000000</item>
|
|
|
|
<item name="circularProgressBarBackground">#000000</item>
|
|
|
|
<item name="tabLayoutWithExpandedCollapsingToolbarTabBackground">#000000</item>
|
|
|
|
<item name="tabLayoutWithCollapsedCollapsingToolbarTabBackground">#000000</item>
|
|
|
|
<item name="navBarColor">#000000</item>
|
|
|
|
</style>
|
|
|
|
|
2018-07-26 17:04:44 +02:00
|
|
|
</resources>
|