summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoey <joey@lineageos.org>2018-02-03 23:52:40 +0100
committerJoey <joey@lineageos.org>2018-02-05 19:55:00 +0000
commit734d16bf15dc75105f3ff8d2db108908dc07c9a7 (patch)
tree248c79600c60233fd0cabbf53386966e91a53e32
parent1b2f8875b149fa27f80b6945cb51a5476e709a8b (diff)
downloadandroid_packages_apps_Trebuchet-734d16bf15dc75105f3ff8d2db108908dc07c9a7.tar.gz
android_packages_apps_Trebuchet-734d16bf15dc75105f3ff8d2db108908dc07c9a7.tar.bz2
android_packages_apps_Trebuchet-734d16bf15dc75105f3ff8d2db108908dc07c9a7.zip
Trebuchet: fix settings icon colors with dark theme
Change-Id: I70279361f6b38772286311117c3dfba3b951565d Signed-off-by: Joey <joey@lineageos.org>
-rw-r--r--res/drawable/ic_settings_grid.xml2
-rw-r--r--res/drawable/ic_settings_more.xml2
-rw-r--r--res/values/lineage_colors.xml3
3 files changed, 4 insertions, 3 deletions
diff --git a/res/drawable/ic_settings_grid.xml b/res/drawable/ic_settings_grid.xml
index b0ce8e333..2774849ac 100644
--- a/res/drawable/ic_settings_grid.xml
+++ b/res/drawable/ic_settings_grid.xml
@@ -21,6 +21,6 @@
android:viewportWidth="24.0">
<path
- android:fillColor="@color/settings_icons"
+ android:fillColor="@color/settings_quick_icons"
android:pathData="M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3" />
</vector>
diff --git a/res/drawable/ic_settings_more.xml b/res/drawable/ic_settings_more.xml
index 079b7f3cf..1f5a3aa21 100644
--- a/res/drawable/ic_settings_more.xml
+++ b/res/drawable/ic_settings_more.xml
@@ -21,6 +21,6 @@
android:viewportHeight="24.0">
<path
- android:fillColor="@color/settings_icons"
+ android:fillColor="@color/settings_quick_icons"
android:pathData="M6,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
</vector>
diff --git a/res/values/lineage_colors.xml b/res/values/lineage_colors.xml
index 5dcf57277..20001121f 100644
--- a/res/values/lineage_colors.xml
+++ b/res/values/lineage_colors.xml
@@ -29,5 +29,6 @@
<!-- Settings -->
<color name="settings_sheet_background">#f5f5f5</color>
<color name="settings_statusbar_dim">#bdbdbd</color>
- <color name="settings_icons">#424242</color>
+ <color name="settings_quick_icons">#424242</color>
+ <color name="settings_icons">?android:attr/textColorPrimary</color>
</resources> \ No newline at end of file