| 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 import 'dart:sky' show Color; | 5 import 'dart:sky' show Color; |
| 6 | 6 |
| 7 /// [Color] constants which represent Material design's | 7 /// [Color] constants which represent Material design's |
| 8 /// [color palette](http://www.google.com/design/spec/style/color.html). | 8 /// [color palette](http://www.google.com/design/spec/style/color.html). |
| 9 | 9 |
| 10 const White = const Color(0xFFFFFFFF); | 10 const white = const Color(0xFFFFFFFF); |
| 11 const Black = const Color(0x00000000); | 11 const black = const Color(0xFF000000); |
| 12 const transparent = const Color(0x00000000); |
| 12 | 13 |
| 13 const Map<int, Color> Red = const { | 14 const Map<int, Color> Red = const { |
| 14 50: const Color(0xFFFFEBEE), | 15 50: const Color(0xFFFFEBEE), |
| 15 100: const Color(0xFFFFCDD2), | 16 100: const Color(0xFFFFCDD2), |
| 16 200: const Color(0xFFEF9A9A), | 17 200: const Color(0xFFEF9A9A), |
| 17 300: const Color(0xFFE57373), | 18 300: const Color(0xFFE57373), |
| 18 400: const Color(0xFFEF5350), | 19 400: const Color(0xFFEF5350), |
| 19 500: const Color(0xFFF44336), | 20 500: const Color(0xFFF44336), |
| 20 600: const Color(0xFFE53935), | 21 600: const Color(0xFFE53935), |
| 21 700: const Color(0xFFD32F2F), | 22 700: const Color(0xFFD32F2F), |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 100: const Color(0xFFCFD8DC), | 364 100: const Color(0xFFCFD8DC), |
| 364 200: const Color(0xFFB0BEC5), | 365 200: const Color(0xFFB0BEC5), |
| 365 300: const Color(0xFF90A4AE), | 366 300: const Color(0xFF90A4AE), |
| 366 400: const Color(0xFF78909C), | 367 400: const Color(0xFF78909C), |
| 367 500: const Color(0xFF607D8B), | 368 500: const Color(0xFF607D8B), |
| 368 600: const Color(0xFF546E7A), | 369 600: const Color(0xFF546E7A), |
| 369 700: const Color(0xFF455A64), | 370 700: const Color(0xFF455A64), |
| 370 800: const Color(0xFF37474F), | 371 800: const Color(0xFF37474F), |
| 371 900: const Color(0xFF263238), | 372 900: const Color(0xFF263238), |
| 372 }; | 373 }; |
| OLD | NEW |