2016-03-12 08:22:40 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
<!--============-->
|
|
|
|
<!-- Base Theme -->
|
|
|
|
<!--============-->
|
|
|
|
<style name="Theme"/>
|
|
|
|
|
|
|
|
<!--==============-->
|
|
|
|
<!-- Light Themes -->
|
|
|
|
<!--=======-======-->
|
|
|
|
<style name="Theme.Base" parent="Theme.AppCompat.Light.NoActionBar">
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
2016-04-10 09:48:57 -04:00
|
|
|
<item name="colorAccent">@color/colorAccentLight</item>
|
2016-03-12 08:22:40 -05:00
|
|
|
<item name="android:textColorPrimary">@color/textColorPrimaryLight</item>
|
|
|
|
<item name="android:textColorSecondary">@color/textColorSecondaryLight</item>
|
|
|
|
<item name="android:textColorHint">@color/textColorHintLight</item>
|
|
|
|
<item name="android:textColorPrimaryInverse">@color/textColorPrimaryDark</item>
|
|
|
|
<item name="android:textColorSecondaryInverse">@color/textColorSecondaryDark</item>
|
|
|
|
<item name="android:textColorHintInverse">@color/textColorHintDark</item>
|
|
|
|
<item name="android:colorBackground">@color/backgroundLight</item>
|
2016-04-10 09:48:57 -04:00
|
|
|
<item name="android:listSelector">?colorAccent</item>
|
2016-03-12 08:22:40 -05:00
|
|
|
<item name="android:divider">@color/dividerLight</item>
|
2016-11-05 14:28:47 -04:00
|
|
|
<item name="android:listDivider">@drawable/line_divider_light</item>
|
2016-03-12 08:22:40 -05:00
|
|
|
|
|
|
|
<!-- Themes -->
|
|
|
|
<item name="windowActionModeOverlay">true</item>
|
2016-05-13 09:45:36 -04:00
|
|
|
<item name="actionBarTheme">@style/Theme.ActionBar.Light</item>
|
2016-06-16 14:52:51 -04:00
|
|
|
<item name="preferenceTheme">@style/PreferenceThemeOverlay.Material</item>
|
|
|
|
<item name="alertDialogTheme">@style/Theme.AlertDialog.Light</item>
|
|
|
|
|
2016-03-12 08:22:40 -05:00
|
|
|
|
|
|
|
<!-- Custom Attributes-->
|
|
|
|
<item name="selectable_list_drawable">@drawable/list_item_selector_light</item>
|
2016-05-13 09:45:36 -04:00
|
|
|
<item name="selectable_library_drawable">@drawable/library_item_selector_light</item>
|
2016-05-24 18:09:24 -04:00
|
|
|
<item name="text_color_primary">@color/textColorPrimaryLight</item>
|
2016-06-07 14:36:40 -04:00
|
|
|
<item name="background_card">@color/dialogLight</item>
|
2016-09-29 13:53:59 -04:00
|
|
|
<item name="asp_preferenceIconTint">?colorAccent</item>
|
|
|
|
<item name="asp_preferenceDialogIconTint">?colorAccent</item>
|
2016-03-12 08:22:40 -05:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="Theme.Tachiyomi" parent="Theme.Base">
|
|
|
|
<!-- Attributes specific for SDK 16 to SDK 20 -->
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<!--=============-->
|
|
|
|
<!-- Dark Themes -->
|
|
|
|
<!--=============-->
|
|
|
|
<style name="Theme.Base.Dark" parent="Theme.AppCompat.NoActionBar">
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
2016-04-10 09:48:57 -04:00
|
|
|
<item name="colorAccent">@color/colorAccentDark</item>
|
2016-03-12 08:22:40 -05:00
|
|
|
<item name="android:textColorPrimary">@color/textColorPrimaryDark</item>
|
|
|
|
<item name="android:textColorSecondary">@color/textColorSecondaryDark</item>
|
|
|
|
<item name="android:textColorHint">@color/textColorHintDark</item>
|
|
|
|
<item name="android:textColorPrimaryInverse">@color/textColorPrimaryLight</item>
|
|
|
|
<item name="android:textColorSecondaryInverse">@color/textColorSecondaryLight</item>
|
|
|
|
<item name="android:textColorHintInverse">@color/textColorHintLight</item>
|
|
|
|
<item name="android:colorBackground">@color/backgroundDark</item>
|
2016-04-10 09:48:57 -04:00
|
|
|
<item name="android:listSelector">?colorAccent</item>
|
2016-03-12 08:22:40 -05:00
|
|
|
<item name="android:divider">@color/dividerDark</item>
|
2016-11-05 14:28:47 -04:00
|
|
|
<item name="android:listDivider">@drawable/line_divider_dark</item>
|
2016-03-12 08:22:40 -05:00
|
|
|
|
|
|
|
<!-- Themes -->
|
|
|
|
<item name="windowActionModeOverlay">true</item>
|
|
|
|
<item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
|
|
|
|
<item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat</item>
|
2016-06-16 14:52:51 -04:00
|
|
|
<item name="preferenceTheme">@style/PreferenceThemeOverlay.Material</item>
|
|
|
|
<item name="alertDialogTheme">@style/Theme.AlertDialog.Dark</item>
|
|
|
|
|
2016-03-12 08:22:40 -05:00
|
|
|
|
|
|
|
<!-- Custom Attributes-->
|
|
|
|
<item name="navigation_view_theme">@style/Theme.Widget.NavigationView.Dark</item>
|
|
|
|
<item name="selectable_list_drawable">@drawable/list_item_selector_dark</item>
|
2016-05-13 09:45:36 -04:00
|
|
|
<item name="selectable_library_drawable">@drawable/library_item_selector_dark</item>
|
2016-05-24 18:09:24 -04:00
|
|
|
<item name="text_color_primary">@color/textColorPrimaryDark</item>
|
2016-06-07 14:36:40 -04:00
|
|
|
<item name="background_card">@color/dialogDark</item>
|
2016-09-29 13:53:59 -04:00
|
|
|
<item name="asp_preferenceIconTint">?colorAccent</item>
|
|
|
|
<item name="asp_preferenceDialogIconTint">?colorAccent</item>
|
2016-03-12 08:22:40 -05:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="Theme.Tachiyomi.Dark" parent="Theme.Base.Dark">
|
|
|
|
<!-- Attributes specific for SDK 16 to SDK 20 -->
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<!--==============-->
|
|
|
|
<!-- Reader Theme -->
|
|
|
|
<!--==============-->
|
2016-06-27 10:46:31 -04:00
|
|
|
<style name="Theme.Base.Reader" parent="Theme.Base.Dark">
|
2016-03-12 08:22:40 -05:00
|
|
|
<item name="colorPrimary">@color/md_blue_grey_900</item>
|
2016-06-27 10:46:31 -04:00
|
|
|
<item name="colorPrimaryDark">#171E22</item>
|
2016-03-12 08:22:40 -05:00
|
|
|
</style>
|
|
|
|
|
2016-06-27 10:46:31 -04:00
|
|
|
<style name="Theme.Reader" parent="Theme.Base.Reader">
|
|
|
|
<!-- Attributes specific for SDK 16 to SDK 20 -->
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
2016-03-12 08:22:40 -05:00
|
|
|
<!--===============-->
|
|
|
|
<!-- Launch Screen -->
|
|
|
|
<!--===============-->
|
|
|
|
<style name="Theme.BrandedLaunch">
|
|
|
|
<item name="android:windowBackground">@drawable/branded_logo</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
</resources>
|