mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-12 13:32:49 +01:00
22 lines
917 B
XML
22 lines
917 B
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">@color/colorPrimaryDark</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">@color/colorPrimaryDark</item>
|
||
|
<item name="android:navigationBarColor">@color/colorPrimaryDark</item>
|
||
|
</style>
|
||
|
</resources>
|