| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef UI_GFX_COLOR_PALETTE_H_ | 5 #ifndef UI_GFX_COLOR_PALETTE_H_ |
| 6 #define UI_GFX_COLOR_PALETTE_H_ | 6 #define UI_GFX_COLOR_PALETTE_H_ |
| 7 | 7 |
| 8 #include "third_party/skia/include/core/SkColor.h" | 8 #include "third_party/skia/include/core/SkColor.h" |
| 9 | 9 |
| 10 namespace gfx { | 10 namespace gfx { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 const SkColor kGoogleRed700 = SkColorSetRGB(0xC5, 0x39, 0x29); | 24 const SkColor kGoogleRed700 = SkColorSetRGB(0xC5, 0x39, 0x29); |
| 25 const SkColor kGoogleGreen300 = SkColorSetRGB(0x57, 0xBB, 0x8A); | 25 const SkColor kGoogleGreen300 = SkColorSetRGB(0x57, 0xBB, 0x8A); |
| 26 const SkColor kGoogleGreen700 = SkColorSetRGB(0x0B, 0x80, 0x43); | 26 const SkColor kGoogleGreen700 = SkColorSetRGB(0x0B, 0x80, 0x43); |
| 27 const SkColor kGoogleYellow300 = SkColorSetRGB(0xF7, 0xCB, 0x4D); | 27 const SkColor kGoogleYellow300 = SkColorSetRGB(0xF7, 0xCB, 0x4D); |
| 28 const SkColor kGoogleYellow700 = SkColorSetRGB(0xF0, 0x93, 0x00); | 28 const SkColor kGoogleYellow700 = SkColorSetRGB(0xF0, 0x93, 0x00); |
| 29 | 29 |
| 30 // An alpha value for designating a control's disabled state. In specs this is | 30 // An alpha value for designating a control's disabled state. In specs this is |
| 31 // sometimes listed as 0.38a. | 31 // sometimes listed as 0.38a. |
| 32 const SkAlpha kDisabledControlAlpha = 0x61; | 32 const SkAlpha kDisabledControlAlpha = 0x61; |
| 33 | 33 |
| 34 const SkColor kSafeBrowsingWarningRed = SkColorSetRGB(0xDD, 0x43, 0x30); |
| 35 |
| 34 } // namespace gfx | 36 } // namespace gfx |
| 35 | 37 |
| 36 #endif // UI_GFX_COLOR_PALETTE_H_ | 38 #endif // UI_GFX_COLOR_PALETTE_H_ |
| OLD | NEW |