diff options
author | ByteHamster <ByteHamster@users.noreply.github.com> | 2023-04-15 15:53:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-15 15:53:47 +0200 |
commit | 1541af0fd5918a6a9b2fea155f72e9e9233a31fa (patch) | |
tree | b4ad1b497132af835c14b55a6945fccbf1072623 /core/src/main/res/values | |
parent | 8ea0d1907b08aaff84fd4c5f74295b1525770c78 (diff) | |
download | AntennaPod-1541af0fd5918a6a9b2fea155f72e9e9233a31fa.zip |
Add onPrimary color (#6432)
Diffstat (limited to 'core/src/main/res/values')
-rw-r--r-- | core/src/main/res/values/styles.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/main/res/values/styles.xml b/core/src/main/res/values/styles.xml index 1cdb1c0c2..6ebef0bb2 100644 --- a/core/src/main/res/values/styles.xml +++ b/core/src/main/res/values/styles.xml @@ -31,6 +31,7 @@ <style name="Theme.AntennaPod.Light" parent="Theme.AntennaPod.Dynamic.Light"> <item name="colorPrimary">@color/accent_light</item> + <item name="colorOnPrimary">@color/white</item> <item name="colorAccent">@color/accent_light</item> <item name="colorSecondary">@color/accent_light</item> <item name="colorOnSecondary">@color/white</item> @@ -71,6 +72,7 @@ <style name="Theme.AntennaPod.Dark" parent="Theme.AntennaPod.Dynamic.Dark"> <item name="colorPrimary">@color/accent_dark</item> + <item name="colorOnPrimary">@color/black</item> <item name="colorAccent">@color/accent_dark</item> <item name="colorSecondary">@color/accent_dark</item> <item name="colorOnSecondary">@color/black</item> |