summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorClark Scheff <clark@cyngn.com>2015-02-20 19:59:52 -0800
committerClark Scheff <clark@cyngn.com>2015-02-27 10:10:31 -0800
commitf4207231fe36963ee977ab85c27ecccbd2b7dd93 (patch)
tree6695c813c71679bc0c38b5da436d53df295f3f24 /res/drawable
parente58652dbcbcbd0967fce0128b123ffdad240de98 (diff)
downloadpackages_apps_ThemeChooser-f4207231fe36963ee977ab85c27ecccbd2b7dd93.tar.gz
packages_apps_ThemeChooser-f4207231fe36963ee977ab85c27ecccbd2b7dd93.tar.bz2
packages_apps_ThemeChooser-f4207231fe36963ee977ab85c27ecccbd2b7dd93.zip
Themes: Enhanced theming capabilities [3/3]
This is really per-app theming but the subject is being named the same as the open source commits to avoid confusion. Change-Id: I811463be11359d747065ad66f802a55e1ab7db08
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/btn_quicktheme_remove_hover.xml7
-rw-r--r--res/drawable/btn_quicktheme_remove_normal.xml7
-rw-r--r--res/drawable/per_app_theme_list_background.xml6
3 files changed, 20 insertions, 0 deletions
diff --git a/res/drawable/btn_quicktheme_remove_hover.xml b/res/drawable/btn_quicktheme_remove_hover.xml
new file mode 100644
index 0000000..1b7faad
--- /dev/null
+++ b/res/drawable/btn_quicktheme_remove_hover.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+
+ <solid android:color="@color/per_app_theme_remove_background_hover"/>
+
+</shape> \ No newline at end of file
diff --git a/res/drawable/btn_quicktheme_remove_normal.xml b/res/drawable/btn_quicktheme_remove_normal.xml
new file mode 100644
index 0000000..f2f0bbe
--- /dev/null
+++ b/res/drawable/btn_quicktheme_remove_normal.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+
+ <solid android:color="@color/per_app_theme_remove_background_normal"/>
+
+</shape> \ No newline at end of file
diff --git a/res/drawable/per_app_theme_list_background.xml b/res/drawable/per_app_theme_list_background.xml
new file mode 100644
index 0000000..09868c3
--- /dev/null
+++ b/res/drawable/per_app_theme_list_background.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+ <corners android:radius="4dp"/>
+ <solid android:color="@color/per_app_theme_bg_color" />
+</shape> \ No newline at end of file