themes.xml 1.1 KB

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <!--===========-->
  4. <!-- Main Theme-->
  5. <!--===========-->
  6. <style name="Theme.Tachiyomi" parent="Theme.Base">
  7. <!-- Attributes specific for SDK 21 and up -->
  8. <item name="android:windowDrawsSystemBarBackgrounds">true</item>
  9. <item name="android:statusBarColor">@android:color/transparent</item>
  10. <item name="android:navigationBarColor">@color/colorPrimaryDark</item>
  11. <item name="android:alertDialogTheme">@style/Theme.AlertDialog.Light</item>
  12. </style>
  13. <!--============-->
  14. <!-- Dark Theme -->
  15. <!--============-->
  16. <style name="Theme.Tachiyomi.Dark" parent="Theme.Base.Dark">
  17. <!-- Attributes specific for SDK 21 and up -->
  18. <item name="android:windowDrawsSystemBarBackgrounds">true</item>
  19. <item name="android:statusBarColor">@android:color/transparent</item>
  20. <item name="android:navigationBarColor">@color/colorPrimaryDark</item>
  21. <item name="android:alertDialogTheme">@style/Theme.AlertDialog.Dark</item>
  22. </style>
  23. </resources>