1<!-- 2 ~ Copyright (C) 2012 The Android Open Source Project 3 ~ 4 ~ Licensed under the Apache License, Version 2.0 (the "License"); 5 ~ you may not use this file except in compliance with the License. 6 ~ You may obtain a copy of the License at 7 ~ 8 ~ http://www.apache.org/licenses/LICENSE-2.0 9 ~ 10 ~ Unless required by applicable law or agreed to in writing, software 11 ~ distributed under the License is distributed on an "AS IS" BASIS, 12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 ~ See the License for the specific language governing permissions and 14 ~ limitations under the License 15--> 16 17<resources> 18 <!-- Primary text color in the Dialer --> 19 <color name="dialtacts_primary_text_color">#333333</color> 20 <!-- Secondary text color in the Dialer --> 21 <color name="dialtacts_secondary_text_color">#737373</color> 22 <color name="dialer_red_highlight_color">#ff1744</color> 23 <color name="dialer_green_highlight_color">#00c853</color> 24 25 <!-- Color for the setting text. --> 26 <color name="setting_primary_color">@color/dialtacts_primary_text_color</color> 27 <!-- Color for the setting description text. --> 28 <color name="setting_secondary_color">@color/dialtacts_secondary_text_color</color> 29 <color name="setting_background_color">#ffffff</color> 30 <color name="setting_button_color">#eee</color> 31 32 <!-- Color of the text describing an unconsumed missed call. --> 33 <color name="call_log_missed_call_highlight_color">@color/dialer_red_highlight_color</color> 34 35 <!-- Color of the text describing an unconsumed voicemail. --> 36 <color name="call_log_voicemail_highlight_color">#33b5e5</color> 37 38 <!-- Tint of the recent card phone icon --> 39 <color name="recent_call_log_item_phone_icon_tint">#000000</color> 40 <color name="call_log_extras_text_color">#0277bd</color> 41 42 <!-- 43 Colour of voicemail progress bar to the right of position indicator. 44 Same as the background color of the dialer 45 --> 46 <color name="voicemail_playback_seek_bar_yet_to_play">#cecece</color> 47 48 <!-- Colour of voicemail progress bar to the left of position indicator. --> 49 <color name="voicemail_playback_seek_bar_already_played">#39c9ff</color> 50 51 <!-- Standard color for selected items. --> 52 <color name="item_selected">#660099cc</color> 53 54 <!-- White background for dialer --> 55 <color name="background_dialer_white">#ffffff</color> 56 <!-- Background color of new dialer activity --> 57 <color name="background_dialer_light">#fafafa</color> 58 <!-- Background color for search results and call details --> 59 <color name="background_dialer_results">#f9f9f9</color> 60 <!-- Background color of dialer list items (contacts, call log entries) --> 61 <color name="background_dialer_list_items">@color/background_dialer_light</color> 62 <color name="background_dialer_details_list_items">@color/background_dialer_results</color> 63 64 <!-- Color of the 1dp divider that separates favorites --> 65 <color name="favorite_contacts_separator_color">#d0d0d0</color> 66 67 <color name="searchbox_icon_tint">#a4a4a4</color> 68 69 <!-- Color of the contact name in favorite tiles --> 70 <color name="contact_tile_name_color">#ffffff</color> 71 72 <color name="contact_list_name_text_color">@color/dialtacts_primary_text_color</color> 73 74 <!-- Undo dialogue color --> 75 <color name="undo_dialogue_text_color">#4d4d4d</color> 76 77 <color name="empty_list_text_color">#b2b2b2</color> 78 79 <color name="remove_text_color">#ffffff</color> 80 81 <!-- Text color for the "Remove" text when a contact is dragged on top of the remove view --> 82 <color name="remove_highlighted_text_color">#FF3F3B</color> 83 84 <!-- Color of the bottom border below the contacts grid on the main dialer screen. --> 85 <color name="contacts_grid_bottom_border_color">#16000000</color> 86 87 <color name="call_log_expanded_background_color">#ffffff</color> 88 <!-- Color of actions in expanded call log entries. This text color represents actions such 89 as call back, play voicemail, etc. --> 90 <color name="call_log_action_text">@color/dialer_theme_color</color> 91 92 <!-- Color for missed call icons. --> 93 <color name="missed_call">#ff2e58</color> 94 95 <!-- Color for answered or outgoing call icons. --> 96 <color name="answered_call">@color/dialer_green_highlight_color</color> 97 98 <!-- Color for icons in the actionbar --> 99 <color name="actionbar_icon_color">#ffffff</color> 100 101 <color name="dialer_dialpad_touch_tint">#330288d1</color> 102 103 <color name="floating_action_button_touch_tint">#80ffffff</color> 104 105</resources> 106