| 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 const Map<int, Color> Red = const { | 7 const Map<int, Color> Red = const { |
| 8 50: const Color(0xFFFFEBEE), | 8 50: const Color(0xFFFFEBEE), |
| 9 100: const Color(0xFFFFCDD2), | 9 100: const Color(0xFFFFCDD2), |
| 10 200: const Color(0xFFEF9A9A), | 10 200: const Color(0xFFEF9A9A), |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 100: const Color(0xFFCFD8DC), | 244 100: const Color(0xFFCFD8DC), |
| 245 200: const Color(0xFFB0BEC5), | 245 200: const Color(0xFFB0BEC5), |
| 246 300: const Color(0xFF90A4AE), | 246 300: const Color(0xFF90A4AE), |
| 247 400: const Color(0xFF78909C), | 247 400: const Color(0xFF78909C), |
| 248 500: const Color(0xFF607D8B), | 248 500: const Color(0xFF607D8B), |
| 249 600: const Color(0xFF546E7A), | 249 600: const Color(0xFF546E7A), |
| 250 700: const Color(0xFF455A64), | 250 700: const Color(0xFF455A64), |
| 251 800: const Color(0xFF37474F), | 251 800: const Color(0xFF37474F), |
| 252 900: const Color(0xFF263238), | 252 900: const Color(0xFF263238), |
| 253 }; | 253 }; |
| OLD | NEW |