* Organize and clarify themes file Increases clarification with better commenting, should make it easier to add or modify current themes. * Make AMOLED its own theme category * Tweak ripples for AMOLED * Add "Midnight Dusk" theme Ports it from jobobby04/TachiyomiSY. Co-Authored-By: CrepeTF <70870719+CrepeTF@users.noreply.github.com> * Add "Hot Pink" theme Ports it from jobobby04/TachiyomiSY. Co-Authored-By: OncePunchedMan <64155117+OncePunchedMan@users.noreply.github.com> * Make AMOLED a base theme * Final tweaks Rename "Toolbar.Light" to "Custom.PopupTheme" Changes placing of backgroundDusk Removes HotPink and MidnightDusk custom Toolbars, I believe they are unnecessary. * Rename a Midnight Dusk color * Make AMOLED independent from Dark as a theme Co-authored-by: CrepeTF <70870719+CrepeTF@users.noreply.github.com> Co-authored-by: OncePunchedMan <64155117+OncePunchedMan@users.noreply.github.com> (cherry picked from commit 176e984b56d66d1e47bd367d7dde03e4a024152c) # Conflicts: # app/src/main/java/eu/kanade/tachiyomi/data/preference/PreferenceValues.kt # app/src/main/java/eu/kanade/tachiyomi/ui/base/activity/BaseThemedActivity.kt # app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsGeneralController.kt # app/src/main/res/values/styles.xml # app/src/main/res/values/themes.xml
25 lines
945 B
XML
25 lines
945 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
|
|
<!--========-->
|
|
<!--Toolbars-->
|
|
<!--========-->
|
|
<style name="Theme.Toolbar.Custom.Amoled.Red" parent="Theme.Toolbar.Custom.Amoled">
|
|
<item name="android:textColorPrimary">@color/red</item>
|
|
</style>
|
|
|
|
|
|
<!--=====-->
|
|
<!--Sheet-->
|
|
<!--=====-->
|
|
<style name="SheetDialog" parent="Theme.Design.Light.BottomSheetDialog">
|
|
<!--<item name="android:windowCloseOnTouchOutside">false</item>-->
|
|
<item name="android:windowIsTranslucent">true</item>
|
|
<item name="android:windowContentOverlay">@null</item>
|
|
<item name="android:colorBackground"> @android:color/transparent</item>
|
|
<item name="android:backgroundDimEnabled">true</item>
|
|
<item name="android:backgroundDimAmount">0.3</item>
|
|
<item name="android:windowFrame">@null</item>
|
|
<item name="android:windowIsFloating">true</item>
|
|
</style>
|
|
</resources> |