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 19 <!-- Secondary text color in the Phone app --> 20 <color name="dialtacts_primary_text_color">#000000</color> 21 <color name="dialtacts_secondary_text_color">#888888</color> 22 23 <!-- Background color of dialpad --> 24 <color name="background_dialpad">#ffffff</color> 25 <!-- Pressed color of dialpad buttons --> 26 <color name="background_dialpad_pressed">#ececec</color> 27 <!-- Primary color of dialpad text, including the call button --> 28 <color name="dialpad_primary_text_color">#3B77E7</color> 29 <!-- Secondary color of dialpad text (used for the letters corresponding to each digit --> 30 <color name="dialpad_secondary_text_color">#8b8b8b</color> 31 <!-- Color of dialpad digits --> 32 <color name="dialpad_digits_text_color">#000000</color> 33 <!-- Color for dialpad separator lines --> 34 <color name="dialpad_separator_line_color">#dadada</color> 35 36 <!-- Color of the text describing an unconsumed missed call. --> 37 <color name="call_log_missed_call_highlight_color">#FF0000</color> 38 39 <!-- Color of the text describing an unconsumed voicemail. --> 40 <color name="call_log_voicemail_highlight_color">#33b5e5</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 <!-- Background color of new dialer activity --> 55 <color name="background_dialer_light">#eeeeee</color> 56 57 <!-- Background color of dialer list items (contacts, call log entries) --> 58 <color name="background_dialer_list_items">#eeeeee</color> 59 60 <!-- Background color of action bars. Ensure this stays in sync with packages/Telephony 61 actionbar_background_color. --> 62 <color name="actionbar_background_color">#3B77E7</color> 63 64 <!-- Underline color of action bars. Ensure this stays in sync with packages/Telephony 65 actionbar_underline. --> 66 <color name="actionbar_underline">#3265C1</color> 67 68 <!-- Color of the 1dp divider that separates favorites --> 69 <color name="favorite_contacts_separator_color">#d0d0d0</color> 70 71 <!-- Background color of the search box --> 72 <color name="searchbox_background_color">#ffffff</color> 73 <!-- Text color of the search box text as entered by user --> 74 <color name="searchbox_text_color">#000000</color> 75 <!-- Text color of the search box hint text --> 76 <color name="searchbox_hint_text_color">#d3d3d3</color> 77 78 <!-- Color of the contact name in favorite tiles --> 79 <color name="contact_tile_name_color">#ffffff</color> 80 81 <!-- Undo dialogue color --> 82 <color name="undo_dialogue_text_color">#4d4d4d</color> 83 84 <!-- Text color for no favorites message --> 85 <color name="nofavorite_text_color">#777777</color> 86 87 <!-- Text color for the "Remove" text in its regular state --> 88 <color name="remove_text_color">#555555</color> 89 90 <!-- Text color for the "Remove" text when a contact is dragged on top of the remove view --> 91 <color name="remove_highlighted_text_color">#FF3F3B</color> 92 93 <!-- Text color for the "speed dial" label in the favorites menu. --> 94 <color name="speed_dial_text_color">#555555</color> 95 96 <!-- Background color for the "All Contacts" button in the favorites menu. --> 97 <color name="all_contacts_button_color">#999999</color> 98 99 <!-- Background color for the "All Contacts" button in the favorites menu when pressed. --> 100 <color name="all_contacts_button_pressed_color">#808080</color> 101 102 <!-- Background color for the favorites menu. --> 103 <color name="favorites_menu_background_color">#eeeeee</color> 104 105 <!-- Text color for the "All Contacts" button above the favorite callers --> 106 <color name="all_contacts_button_text_color">#ffffff</color> 107 108 <!-- Background gradient start color for tabs in an unpressed state. --> 109 <color name="tab_background_gradient_start_color">#d3d3d3</color> 110 111 <!-- Background gradient end color for tabs in an unpressed state. --> 112 <color name="tab_background_gradient_end_color">#ebebeb</color> 113 114 <!-- Background gradient start color for tabs in a pressed state. --> 115 <color name="tab_background_gradient_start_pressed_color">#c4c4c4</color> 116 117 <!-- Background gradient end color for tabs in a pressed state. --> 118 <color name="tab_background_gradient_end_pressed_color">#dedede</color> 119 120 <!-- Color of the underline for a tab which is selected. --> 121 <color name="tab_underline_selected_color">#3265c1</color> 122 123 <!-- Color of the underline for a tab which is not selected. --> 124 <color name="tab_underline_color">#c8c8c8</color> 125 126 <!-- Color of the selection indicator for a tab which is selected. --> 127 <color name="tab_selected_color">#3b77e7</color> 128 129 <!-- Color of tab text. --> 130 <color name="tab_text_color">#505050</color> 131 132 <!-- Color of the bottom border below the contacts grid on the main dialer screen. --> 133 <color name="contacts_grid_bottom_border_color">#16000000</color> 134 135 <!-- Color of action bar text. Ensure this stays in sync with packages/Telephony 136 phone_settings_actionbar_text_color--> 137 <color name="actionbar_text_color">#FFFFFF</color> 138 </resources> 139