diff options
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/browser_background_holo.xml | 4 | ||||
-rw-r--r-- | res/drawable/fab_accent.xml | 2 | ||||
-rw-r--r-- | res/drawable/floating_action_button.xml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/res/drawable/browser_background_holo.xml b/res/drawable/browser_background_holo.xml index 6d2d1da..6d8cea0 100644 --- a/res/drawable/browser_background_holo.xml +++ b/res/drawable/browser_background_holo.xml @@ -16,6 +16,6 @@ <shape xmlns:android="http://schemas.android.com/apk/res/android"> <gradient android:type="linear" android:angle="90" - android:startColor="#fafafa" - android:endColor="#fafafa" /> + android:startColor="@color/white" + android:endColor="@color/white" /> </shape> diff --git a/res/drawable/fab_accent.xml b/res/drawable/fab_accent.xml index 53395c3..fabd583 100644 --- a/res/drawable/fab_accent.xml +++ b/res/drawable/fab_accent.xml @@ -15,5 +15,5 @@ limitations under the License. --> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval"> - <solid android:color="#4caf50" /> + <solid android:color="@color/primary" /> </shape> diff --git a/res/drawable/floating_action_button.xml b/res/drawable/floating_action_button.xml index bededb5..0f313cb 100644 --- a/res/drawable/floating_action_button.xml +++ b/res/drawable/floating_action_button.xml @@ -18,7 +18,7 @@ limitations under the License. android:color="@color/floating_action_button_touch_tint"> <item android:id="@android:id/mask"> <shape android:shape="oval"> - <solid android:color="#4caf50" /> + <solid android:color="@color/primary" /> </shape> </item> </ripple> |