18f89cc341
* Delete old reader * Add utility methods * Update dependencies * Add new reader * Update tracking services. Extract transition strings into resources * Restore delete read chapters * Documentation and some minor changes * Remove content providers for compressed files, they are not needed anymore * Update subsampling. New changes allow to parse magic numbers and decode tiles with a single stream. Drop support for custom image decoders. Other minor fixes
49 lines
2.0 KiB
XML
49 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!--===========-->
|
|
<!-- Main Theme-->
|
|
<!--===========-->
|
|
<style name="Theme.Tachiyomi" parent="Theme.Base">
|
|
<!-- Attributes specific for SDK 21 and up -->
|
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
<item name="android:navigationBarColor">@color/colorPrimaryDark</item>
|
|
</style>
|
|
|
|
<!--============-->
|
|
<!-- Dark Theme -->
|
|
<!--============-->
|
|
<style name="Theme.Tachiyomi.Dark" parent="Theme.Base.Dark">
|
|
<!-- Attributes specific for SDK 21 and up -->
|
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
<item name="android:navigationBarColor">@color/colorDarkPrimaryDark</item>
|
|
</style>
|
|
|
|
<!--==============-->
|
|
<!-- Amoled Theme -->
|
|
<!--==============-->
|
|
<style name="Theme.Tachiyomi.Amoled" parent="Theme.Base.Amoled">
|
|
<!-- Attributes specific for SDK 21 and up -->
|
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
<item name="android:navigationBarColor">@color/colorAmoledPrimary</item>
|
|
</style>
|
|
|
|
<!--==============-->
|
|
<!-- Reader Theme -->
|
|
<!--==============-->
|
|
<style name="Theme.Reader" parent="Theme.Base.Reader.Dark">
|
|
<!-- Attributes specific for SDK 21 and up -->
|
|
<item name="android:statusBarColor">?colorPrimaryDark</item>
|
|
<item name="android:navigationBarColor">?colorPrimaryDark</item>
|
|
</style>
|
|
|
|
<style name="Theme.Reader.Light" parent="Theme.Base.Reader.Light">
|
|
<!-- Attributes specific for SDK 21 and up -->
|
|
<item name="android:statusBarColor">?colorPrimaryDark</item>
|
|
<item name="android:navigationBarColor">?colorPrimaryDark</item>
|
|
</style>
|
|
|
|
</resources>
|