Update colors in the people app.

Change-Id: I93194f75e83fd6dba95a7bc8aafa73432dac8353
diff --git a/res/drawable/action_bar_item_background.xml b/res/drawable/action_bar_item_background.xml
index 88857c4..2d96436 100644
--- a/res/drawable/action_bar_item_background.xml
+++ b/res/drawable/action_bar_item_background.xml
@@ -17,5 +17,9 @@
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
     <item android:state_pressed="true" android:drawable="@drawable/action_bar_item_pressed"/>
     <item android:state_focused="true" android:drawable="@drawable/action_bar_item_focused"/>
-    <item android:drawable="@android:color/transparent" />
+    <item>
+        <shape android:shape="rectangle" >
+            <solid android:color="@color/action_bar_background" />
+        </shape>
+    </item>
 </selector>
diff --git a/res/drawable/action_bar_item_focused.xml b/res/drawable/action_bar_item_focused.xml
index f34d99b..13aeb4ce 100644
--- a/res/drawable/action_bar_item_focused.xml
+++ b/res/drawable/action_bar_item_focused.xml
@@ -16,20 +16,9 @@
 -->
 
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
-
     <item>
         <shape android:shape="rectangle" >
-            <solid android:color="#27ffffff" />
+            <solid android:color="@color/action_bar_background_highlight" />
         </shape>
     </item>
-    <item>
-        <shape android:shape="rectangle" >
-            <solid android:color="#00000000" />
-
-            <stroke
-                android:width="2dp"
-                android:color="#27ffffff" />
-        </shape>
-    </item>
-
 </layer-list>
\ No newline at end of file
diff --git a/res/drawable/action_bar_item_pressed.xml b/res/drawable/action_bar_item_pressed.xml
index 784acc1..13aeb4ce 100644
--- a/res/drawable/action_bar_item_pressed.xml
+++ b/res/drawable/action_bar_item_pressed.xml
@@ -16,11 +16,9 @@
 -->
 
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
-
     <item>
         <shape android:shape="rectangle" >
-            <solid android:color="#4dffffff" />
+            <solid android:color="@color/action_bar_background_highlight" />
         </shape>
     </item>
-
 </layer-list>
\ No newline at end of file
diff --git a/res/drawable/action_bar_tab.xml b/res/drawable/action_bar_tab.xml
index 0af5e08..2fc5c2b 100644
--- a/res/drawable/action_bar_tab.xml
+++ b/res/drawable/action_bar_tab.xml
@@ -16,11 +16,7 @@
 -->
 
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <item android:drawable="@drawable/tab_selected_pressed" android:state_pressed="true" android:state_selected="true"/>
-    <item android:drawable="@drawable/tab_selected_focused" android:state_focused="true" android:state_selected="true"/>
-    <item android:drawable="@drawable/tab_selected" android:state_selected="true"/>
-    <item android:drawable="@drawable/tab_unselected_pressed" android:state_pressed="true"/>
-    <item android:drawable="@drawable/tab_unselected_focused" android:state_focused="true"/>
-
+    <item android:drawable="@drawable/tab_selected_pressed" android:state_pressed="true"/>
+    <item android:drawable="@drawable/tab_selected_focused" android:state_focused="true"/>
+    <item android:drawable="@drawable/tab_selected" />
 </selector>
\ No newline at end of file
diff --git a/res/drawable/ic_tab_groups.xml b/res/drawable/ic_tab_groups.xml
deleted file mode 100644
index c50c1f0..0000000
--- a/res/drawable/ic_tab_groups.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/ic_groups_holo_dark" />
-</selector>
-
diff --git a/res/drawable/ic_tab_starred.xml b/res/drawable/ic_tab_starred.xml
deleted file mode 100644
index ac93c47..0000000
--- a/res/drawable/ic_tab_starred.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2008 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/ic_ab_favourites_holo_dark" />
-</selector>
-
diff --git a/res/drawable/tab_selected.xml b/res/drawable/tab_selected.xml
index 5d57ea2..36a4175 100644
--- a/res/drawable/tab_selected.xml
+++ b/res/drawable/tab_selected.xml
@@ -16,16 +16,9 @@
 -->
 
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
-
     <item>
         <shape android:shape="rectangle" >
-            <solid android:color="#ffffffff" />
+            <solid android:color="@color/action_bar_background" />
         </shape>
     </item>
-    <item android:bottom="6dp">
-        <shape android:shape="rectangle" >
-            <solid android:color="@color/people_app_theme_color" />
-        </shape>
-    </item>
-
 </layer-list>
\ No newline at end of file
diff --git a/res/drawable/tab_selected_focused.xml b/res/drawable/tab_selected_focused.xml
index 7a44ef5..13aeb4ce 100644
--- a/res/drawable/tab_selected_focused.xml
+++ b/res/drawable/tab_selected_focused.xml
@@ -16,30 +16,9 @@
 -->
 
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
-
     <item>
         <shape android:shape="rectangle" >
-            <solid android:color="#ffffffff" />
+            <solid android:color="@color/action_bar_background_highlight" />
         </shape>
     </item>
-    <item android:bottom="6dp">
-        <shape android:shape="rectangle" >
-            <solid android:color="@color/people_app_theme_color" />
-        </shape>
-    </item>
-    <item>
-        <shape android:shape="rectangle" >
-            <solid android:color="#27ffffff" />
-        </shape>
-    </item>
-    <item>
-        <shape android:shape="rectangle" >
-            <solid android:color="#00000000" />
-
-            <stroke
-                android:width="2dp"
-                android:color="#27ffffff" />
-        </shape>
-    </item>
-
 </layer-list>
\ No newline at end of file
diff --git a/res/drawable/tab_selected_pressed.xml b/res/drawable/tab_selected_pressed.xml
index e3d9d26..13aeb4ce 100644
--- a/res/drawable/tab_selected_pressed.xml
+++ b/res/drawable/tab_selected_pressed.xml
@@ -16,21 +16,9 @@
 -->
 
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
-
     <item>
         <shape android:shape="rectangle" >
-            <solid android:color="#ffffffff" />
+            <solid android:color="@color/action_bar_background_highlight" />
         </shape>
     </item>
-    <item android:bottom="6dp">
-        <shape android:shape="rectangle" >
-            <solid android:color="@color/people_app_theme_color" />
-        </shape>
-    </item>
-    <item>
-        <shape android:shape="rectangle" >
-            <solid android:color="#4dffffff" />
-        </shape>
-    </item>
-
 </layer-list>
\ No newline at end of file
diff --git a/res/drawable/tab_unselected_focused.xml b/res/drawable/tab_unselected_focused.xml
index f34d99b..13aeb4ce 100644
--- a/res/drawable/tab_unselected_focused.xml
+++ b/res/drawable/tab_unselected_focused.xml
@@ -16,20 +16,9 @@
 -->
 
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
-
     <item>
         <shape android:shape="rectangle" >
-            <solid android:color="#27ffffff" />
+            <solid android:color="@color/action_bar_background_highlight" />
         </shape>
     </item>
-    <item>
-        <shape android:shape="rectangle" >
-            <solid android:color="#00000000" />
-
-            <stroke
-                android:width="2dp"
-                android:color="#27ffffff" />
-        </shape>
-    </item>
-
 </layer-list>
\ No newline at end of file
diff --git a/res/drawable/tab_unselected_pressed.xml b/res/drawable/tab_unselected_pressed.xml
index 784acc1..13aeb4ce 100644
--- a/res/drawable/tab_unselected_pressed.xml
+++ b/res/drawable/tab_unselected_pressed.xml
@@ -16,11 +16,9 @@
 -->
 
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
-
     <item>
         <shape android:shape="rectangle" >
-            <solid android:color="#4dffffff" />
+            <solid android:color="@color/action_bar_background_highlight" />
         </shape>
     </item>
-
 </layer-list>
\ No newline at end of file