Status bar and navigation bar colors

Code changes: change primaryDarkColor and primaryColor

The colors should be specified in contactscommon. But, I want
to minimize touching contacts common and Dialer as much as possible
while working in master-contacts.

Change-Id: Ib63b513c5d2559b69da26263d4ccb40e03db5e20
diff --git a/res/values/colors.xml b/res/values/colors.xml
index fc5674b..51dbd71 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -30,6 +30,9 @@
     <!-- Color of the background of the action bar -->
     <color name="action_bar_background">#e6e6e6</color>
 
+    <!-- Color used for system bar and navigation bar. -->
+    <color name="primary_dark">#008aa1</color>
+
     <!-- Color of the background of the action bar when highlighted (ie. pressed, focused) -->
     <color name="action_bar_background_highlight">#cecece</color>
 
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 771e92f..dcce5ab 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -68,6 +68,8 @@
         <item name="android:icon">@android:color/transparent</item>
         <item name="android:listViewStyle">@style/ListViewStyle</item>
         <item name="android:windowBackground">@color/background_primary</item>
+        <item name="android:colorPrimaryDark">@color/primary_dark</item>
+        <item name="android:colorPrimary">@color/actionbar_background_color</item>
         <item name="list_item_height">?android:attr/listPreferredItemHeight</item>
         <item name="activated_background">@drawable/list_item_activated_background</item>
         <item name="section_header_background">@drawable/list_title_holo</item>