Skip to content

Commit

Permalink
Merge pull request #194 from mickstar/fix_dark_theme
Browse files Browse the repository at this point in the history
fix dark theme
  • Loading branch information
mickstar authored Feb 15, 2024
2 parents b19d684 + 5d88688 commit 7363e7a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="Theme.ZooForZotero" parent="Theme.MaterialComponents.Light.DarkActionBar">
<style name="Theme.ZooForZotero" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="colorPrimaryDark">#000000</item>
<item name="colorAccent">@color/colorPrimary</item>
</style>


<style name="Theme.ZooForZotero.NoActionBar" parent="Theme.ZooForZotero">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
Expand Down

0 comments on commit 7363e7a

Please sign in to comment.