Add new text color to the contact list search results

Currently contact list search results text color is a default color,
this change adds the text color that will be applied. The attribute
and logical application of the color to the TextView is in a different
change.

Bug: 15118603
Change-Id: I880ff094e377990ada40301aa57cf96a33be0556
diff --git a/res/values/colors.xml b/res/values/colors.xml
index e064144..d43f30a 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -67,6 +67,8 @@
     <!-- Color of the contact name in favorite tiles -->
     <color name="contact_tile_name_color">#ffffff</color>
 
+    <color name="contact_list_name_text_color">#4d4d4d</color>
+
     <!-- Undo dialogue color -->
     <color name="undo_dialogue_text_color">#4d4d4d</color>
 
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 659d5ab..42351b8 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -58,6 +58,7 @@
         <item name="contact_browser_list_padding_left">16dp</item>
         <item name="contact_browser_list_padding_right">0dp</item>
         <item name="contact_browser_background">@color/contact_list_background_color</item>
+        <item name="list_item_name_text_color">@color/contact_list_name_text_color</item>
         <item name="list_item_text_indent">@dimen/contact_browser_list_item_text_indent</item>
         <!-- CallLog -->
         <item name="call_log_primary_text_color">#000000</item>