| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/app_list/app_list_constants.h" | 5 #include "ui/app_list/app_list_constants.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "ui/gfx/color_palette.h" | 8 #include "ui/gfx/color_palette.h" |
| 9 | 9 |
| 10 namespace app_list { | 10 namespace app_list { |
| 11 | 11 |
| 12 const SkColor kContentsBackgroundColor = SkColorSetRGB(0xF2, 0xF2, 0xF2); | 12 const SkColor kContentsBackgroundColor = SkColorSetRGB(0xF2, 0xF2, 0xF2); |
| 13 const SkColor kSearchBoxBackground = SK_ColorWHITE; | 13 const SkColor kSearchBoxBackgroundDefault = SK_ColorWHITE; |
| 14 | 14 |
| 15 const SkColor kSearchTextColor = SkColorSetRGB(0x33, 0x33, 0x33); | 15 const SkColor kSearchTextColor = SkColorSetRGB(0x33, 0x33, 0x33); |
| 16 | 16 |
| 17 const SkColor kLabelBackgroundColor = SK_ColorTRANSPARENT; | 17 const SkColor kLabelBackgroundColor = SK_ColorTRANSPARENT; |
| 18 | 18 |
| 19 const SkColor kTopSeparatorColor = SkColorSetRGB(0xC0, 0xC0, 0xC0); | 19 const SkColor kTopSeparatorColor = SkColorSetRGB(0xC0, 0xC0, 0xC0); |
| 20 const SkColor kBottomSeparatorColor = SkColorSetRGB(0xC0, 0xC0, 0xC0); | 20 const SkColor kBottomSeparatorColor = SkColorSetRGB(0xC0, 0xC0, 0xC0); |
| 21 | 21 |
| 22 // The color of the separator used inside dialogs in the app list. | 22 // The color of the separator used inside dialogs in the app list. |
| 23 const SkColor kDialogSeparatorColor = SkColorSetRGB(0xD1, 0xD1, 0xD1); | 23 const SkColor kDialogSeparatorColor = SkColorSetRGB(0xD1, 0xD1, 0xD1); |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 } | 160 } |
| 161 | 161 |
| 162 const gfx::ShadowValues& IconEndShadows() { | 162 const gfx::ShadowValues& IconEndShadows() { |
| 163 CR_DEFINE_STATIC_LOCAL(const gfx::ShadowValues, icon_shadows, | 163 CR_DEFINE_STATIC_LOCAL(const gfx::ShadowValues, icon_shadows, |
| 164 (1, gfx::ShadowValue(gfx::Vector2d(0, 4), 8, | 164 (1, gfx::ShadowValue(gfx::Vector2d(0, 4), 8, |
| 165 SkColorSetARGB(0x50, 0, 0, 0)))); | 165 SkColorSetARGB(0x50, 0, 0, 0)))); |
| 166 return icon_shadows; | 166 return icon_shadows; |
| 167 } | 167 } |
| 168 | 168 |
| 169 } // namespace app_list | 169 } // namespace app_list |
| OLD | NEW |