Advertisement
Guest User

Untitled

a guest
Oct 11th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. res/values/colors.xml
  2.  
  3. <?xml version="1.0" encoding="utf-8"?>
  4. <!--
  5. ~ Copyright (C) 2013 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.  
  22. <!-- In-call UI -->
  23. <color name="incall_callTypeSip">#99CE3F</color> <!-- green -->
  24. <color name="incall_call_banner_background">#A0000000</color> <!-- semitransparent black -->
  25. <color name="incall_secondary_info_background">#8033b5e5</color> <!-- semitransparent blueish grey -->
  26. <color name="incall_call_banner_text_color">#FFFFFF</color> <!-- white -->
  27.  
  28. <!-- Color of the theme of the People app -->
  29. <color name="people_app_theme_color">#33B5E5</color>
  30.  
  31. <!-- Put on top of each photo, implying 80% darker than usual. -->
  32. <color name="on_hold_dim_effect">#cc000000</color>
  33.  
  34. <!-- Used with some smaller texts in manage conference screen. -->
  35. <color name="manage_conference_secondary_text_color">#888888</color>
  36.  
  37. <!-- Used when the End Call button is active -->
  38. <drawable name="end_call_active_state">#f22121</drawable>
  39.  
  40. <!-- Used when the End Call button is pressed -->
  41. <drawable name="end_call_pressed_state">#ff4e4e</drawable>
  42.  
  43. <!-- Used when the End Call button is disabled -->
  44. <drawable name="end_call_disabled_state">#303030</drawable>
  45.  
  46. <!-- Color of dialpad digits -->
  47. <color name="dialpad_digits_text_color">#000000</color>
  48.  
  49. <!-- Background color of dialpad -->
  50. <color name="background_dialpad">#ffffff</color>
  51.  
  52. <!-- Pressed color of dialpad buttons -->
  53. <color name="background_dialpad_pressed">#ececec</color>
  54.  
  55. <!-- Button background -->
  56. <color name="button_background">#000000</color>
  57.  
  58. <!-- Background color of action bars -->
  59. <color name="actionbar_background_color">#3B77E7</color>
  60.  
  61. <!-- Secondary color of dialpad text (used for the letters corresponding to each digit -->
  62. <color name="dialpad_secondary_text_color">#8b8b8b</color>
  63.  
  64. <!-- Translucent shadow color -->
  65. <color name="translucent_shadow">#33999999</color>
  66. </resources>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement