diff options
author | ByteHamster <info@bytehamster.com> | 2020-02-21 19:16:00 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2020-02-21 19:16:00 +0100 |
commit | 9d31cdc32f63859a61ea1b63728a95a7ea546f6e (patch) | |
tree | 3823bd7c3acb290ec1c785ecfa9d1b3be9b3b3db /core/src/main/res | |
parent | b3ea96e7b3d3409a02da64f9e93511cc3400709a (diff) | |
download | AntennaPod-9d31cdc32f63859a61ea1b63728a95a7ea546f6e.zip |
Respect app theme
Diffstat (limited to 'core/src/main/res')
-rw-r--r-- | core/src/main/res/values/attrs.xml | 1 | ||||
-rw-r--r-- | core/src/main/res/values/styles.xml | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/core/src/main/res/values/attrs.xml b/core/src/main/res/values/attrs.xml index aa93398f5..deeb0fa10 100644 --- a/core/src/main/res/values/attrs.xml +++ b/core/src/main/res/values/attrs.xml @@ -61,6 +61,7 @@ <attr name="nav_drawer_background" format="color"/> <attr name="drawer_activated_color" format="color"/> <attr name="batch_edit_fab_icon" format="reference"/> + <attr name="action_icon_color" format="color"/> <declare-styleable name="SquareImageView"> <attr name="useMinimum" format="boolean" /> diff --git a/core/src/main/res/values/styles.xml b/core/src/main/res/values/styles.xml index 9f72c9f6f..03309b523 100644 --- a/core/src/main/res/values/styles.xml +++ b/core/src/main/res/values/styles.xml @@ -70,8 +70,8 @@ <item name="ic_volume_adaption">@drawable/ic_volume_adaption_grey</item> <item name="master_switch_background">@color/master_switch_background_light</item> <item name="currently_playing_background">@color/highlight_light</item> - <item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item> + <item name="action_icon_color">#FF757575</item> </style> <style name="Theme.AntennaPod.Dark" parent="Theme.Base.AntennaPod.Dark"> @@ -146,6 +146,7 @@ <item name="master_switch_background">@color/master_switch_background_dark</item> <item name="currently_playing_background">@color/highlight_dark</item> <item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item> + <item name="action_icon_color">@color/white</item> </style> <style name="Theme.AntennaPod.TrueBlack" parent="Theme.Base.AntennaPod.TrueBlack"> |