diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-09-24 00:51:56 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-09-24 00:51:56 +0000 |
commit | 03c97e912efc8a1f4c4df2e82e21ceccf6a4b66d (patch) | |
tree | 92ffaab6719d4acf43f8429fdbf1ed49dab4c950 /app/src/main/res/values | |
parent | 6a038573c357c0bda696f2b4369862648dfa9a17 (diff) | |
download | infinity-for-reddit-03c97e912efc8a1f4c4df2e82e21ceccf6a4b66d.tar infinity-for-reddit-03c97e912efc8a1f4c4df2e82e21ceccf6a4b66d.tar.gz infinity-for-reddit-03c97e912efc8a1f4c4df2e82e21ceccf6a4b66d.tar.bz2 infinity-for-reddit-03c97e912efc8a1f4c4df2e82e21ceccf6a4b66d.tar.lz infinity-for-reddit-03c97e912efc8a1f4c4df2e82e21ceccf6a4b66d.tar.xz infinity-for-reddit-03c97e912efc8a1f4c4df2e82e21ceccf6a4b66d.tar.zst infinity-for-reddit-03c97e912efc8a1f4c4df2e82e21ceccf6a4b66d.zip |
Minor UI tweaks. Fix UI issues in dark theme. Fix settings activity title.
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/values-night/colors.xml | 4 | ||||
-rw-r--r-- | app/src/main/res/values/colors.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/values/styles.xml | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/app/src/main/res/values-night/colors.xml b/app/src/main/res/values-night/colors.xml index b6930940..ff7a6510 100644 --- a/app/src/main/res/values-night/colors.xml +++ b/app/src/main/res/values-night/colors.xml @@ -4,8 +4,6 @@ <color name="colorPrimaryDark">#121212</color> <color name="colorAccent">#FF4081</color> - <color name="downvoted">#E91E63</color> - <color name="transparentActionBarAndExoPlayerControllerColor">#88000000</color> <color name="gold">#FFC107</color> @@ -55,4 +53,6 @@ <color name="notificationIconColor">#1565C0</color> <color name="defaultTextColor">#B3FFFFFF</color> + + <color name="greyTabBackgroundColor">#282828</color> </resources> diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index 82afbe60..a3357db3 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -69,4 +69,6 @@ <color name="commentVerticalBar5">#EE0220</color> <color name="commentVerticalBar6">#02EE6E</color> <color name="commentVerticalBar7">#EE4602</color> + + <color name="greyTabBackgroundColor">@color/colorPrimary</color> </resources> diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 6a59fbc6..f066da89 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -78,6 +78,7 @@ <style name="PreferenceTitleTextStyle"> <item name="android:textSize">?attr/font_16</item> + <item name="android:textColor">@color/primaryTextColor</item> </style> <style name="PreferenceSubtitleTextStyle"> |