| 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 "ash/system/tray/tray_constants.h" | 5 #include "ash/system/tray/tray_constants.h" |
| 6 | 6 |
| 7 #include "third_party/skia/include/core/SkColor.h" | 7 #include "third_party/skia/include/core/SkColor.h" |
| 8 | 8 |
| 9 namespace ash { | 9 namespace ash { |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 const SkColor kBorderDarkColor = SkColorSetRGB(0xbb, 0xbb, 0xbb); | 30 const SkColor kBorderDarkColor = SkColorSetRGB(0xbb, 0xbb, 0xbb); |
| 31 const SkColor kBorderLightColor = SkColorSetRGB(0xeb, 0xeb, 0xeb); | 31 const SkColor kBorderLightColor = SkColorSetRGB(0xeb, 0xeb, 0xeb); |
| 32 const SkColor kButtonStrokeColor = SkColorSetRGB(0xdd, 0xdd, 0xdd); | 32 const SkColor kButtonStrokeColor = SkColorSetRGB(0xdd, 0xdd, 0xdd); |
| 33 | 33 |
| 34 const SkColor kFocusBorderColor = SkColorSetRGB(64, 128, 250); | 34 const SkColor kFocusBorderColor = SkColorSetRGB(64, 128, 250); |
| 35 | 35 |
| 36 const SkColor kHeaderTextColorNormal = SkColorSetARGB(0x7f, 0, 0, 0); | 36 const SkColor kHeaderTextColorNormal = SkColorSetARGB(0x7f, 0, 0, 0); |
| 37 const SkColor kHeaderTextColorHover = SkColorSetARGB(0xd3, 0, 0, 0); | 37 const SkColor kHeaderTextColorHover = SkColorSetARGB(0xd3, 0, 0, 0); |
| 38 | 38 |
| 39 const int kTrayPopupWidth = 300; | 39 const int kTrayPopupWidth = 300; |
| 40 const int kNotificationCloseButtonWidth = 60; |
| 40 | 41 |
| 41 } // namespace ash | 42 } // namespace ash |
| OLD | NEW |