colors.xml revision 9a30556b9a7dfebdb149a889afb58509067d86ef
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* //device/apps/common/assets/res/any/colors.xml
4**
5** Copyright 2006, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11**     http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20<resources>
21	<drawable name="screen_background_light">#ffefefef</drawable>
22	<drawable name="screen_background_dark">#ff101010</drawable>
23    <drawable name="status_bar_closed_default_background">#ff000000</drawable>
24    <drawable name="status_bar_opened_default_background">#ff000000</drawable>
25    <drawable name="search_bar_default_color">#ff000000</drawable>
26    <drawable name="safe_mode_background">#60000000</drawable>
27    <!-- Background drawable that can be used for a transparent activity to
28         be able to display a dark UI: this darkens its background to make
29         a dark (default theme) UI more visible. -->
30    <drawable name="screen_background_dark_transparent">#80000000</drawable>
31    <!-- Background drawable that can be used for a transparent activity to
32         be able to display a light UI: this lightens its background to make
33         a light UI more visible. -->
34    <drawable name="screen_background_light_transparent">#80ffffff</drawable>
35    <color name="safe_mode_text">#80ffffff</color>
36    <color name="white">#ffffffff</color>
37    <color name="black">#ff000000</color>
38    <color name="transparent">#00000000</color>
39    <color name="background_dark">#ff101010</color>
40    <color name="bright_foreground_dark">#ffefefef</color>
41    <color name="bright_foreground_dark_disabled">#80ffffff</color>
42    <color name="bright_foreground_dark_inverse">@android:color/background_dark</color>
43    <color name="dim_foreground_dark">#bebebe</color>
44    <color name="dim_foreground_dark_disabled">#80bebebe</color>
45    <color name="dim_foreground_dark_inverse">#323232</color>
46    <color name="dim_foreground_dark_inverse_disabled">#80323232</color>
47    <color name="hint_foreground_dark">#808080</color>
48    <color name="background_light">@android:color/bright_foreground_dark</color>
49    <color name="bright_foreground_light">@android:color/background_dark</color>
50    <color name="bright_foreground_light_inverse">@android:color/bright_foreground_dark</color>
51    <color name="bright_foreground_light_disabled">#80000000</color>
52    <color name="dim_foreground_light">#323232</color>
53    <color name="dim_foreground_light_disabled">#80323232</color>
54    <color name="dim_foreground_light_inverse">#bebebe</color>
55    <color name="dim_foreground_light_inverse_disabled">#80bebebe</color>
56    <color name="hint_foreground_light">#808080</color>
57
58    <drawable name="stat_notify_sync_noanim">@drawable/stat_notify_sync_anim0</drawable>
59    <drawable name="stat_sys_download_done">@drawable/stat_sys_download_anim0</drawable>
60    <drawable name="stat_sys_upload_done">@drawable/stat_sys_upload_anim0</drawable>
61    <drawable name="dialog_frame">@drawable/panel_background</drawable>
62    <drawable name="alert_dark_frame">@drawable/popup_full_dark</drawable>
63    <drawable name="alert_light_frame">@drawable/popup_full_bright</drawable>
64    <drawable name="menu_frame">@drawable/menu_background</drawable>
65    <drawable name="menu_full_frame">@drawable/menu_background_fill_parent_width</drawable>
66    <drawable name="editbox_dropdown_dark_frame">@drawable/editbox_dropdown_background_dark</drawable>
67    <drawable name="editbox_dropdown_light_frame">@drawable/editbox_dropdown_background</drawable>
68
69    <drawable name="input_method_fullscreen_background">#fff9f9f9</drawable>
70
71    <!-- For date picker widget -->
72    <drawable name="selected_day_background">#ff0092f4</drawable>
73
74    <!-- For settings framework -->
75    <color name="lighter_gray">#ddd</color>
76    <color name="darker_gray">#aaa</color>
77
78    <!-- For security permissions -->
79    <color name="perms_dangerous_grp_color">#dd6826</color>
80    <color name="perms_dangerous_perm_color">#dd6826</color>
81    <color name="shadow">#cc222222</color>
82
83    <!-- For search-related UIs -->
84    <color name="search_url_text_normal">#7fa87f</color>
85    <color name="search_url_text_selected">@android:color/black</color>
86    <color name="search_url_text_pressed">@android:color/black</color>
87    <color name="search_widget_corpus_item_background">@android:color/lighter_gray</color>
88    
89    <!-- SlidingTab -->
90    <color name="sliding_tab_text_color_active">@android:color/black</color>
91    <color name="sliding_tab_text_color_shadow">@android:color/black</color>
92
93    <!-- keyguard tab -->
94    <color name="keyguard_text_color_normal">#ffffff</color>
95    <color name="keyguard_text_color_unlock">#a7d84c</color>
96    <color name="keyguard_text_color_soundoff">#ffffff</color>
97    <color name="keyguard_text_color_soundon">#e69310</color>
98    <color name="keyguard_text_color_decline">#fe0a5a</color>
99
100</resources>
101
102