| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 import 'dart:sky' show Color; |
| 6 |
| 7 const Map<int, Color> Red = const { |
| 8 50: const Color(0xFFFFEBEE), |
| 9 100: const Color(0xFFFFCDD2), |
| 10 200: const Color(0xFFEF9A9A), |
| 11 300: const Color(0xFFE57373), |
| 12 400: const Color(0xFFEF5350), |
| 13 500: const Color(0xFFF44336), |
| 14 600: const Color(0xFFE53935), |
| 15 700: const Color(0xFFD32F2F), |
| 16 800: const Color(0xFFC62828), |
| 17 900: const Color(0xFFB71C1C), |
| 18 }; |
| 19 |
| 20 const Map<int, Color> Pink = const { |
| 21 50: const Color(0xFFFCE4EC), |
| 22 100: const Color(0xFFF8BBD0), |
| 23 200: const Color(0xFFF48FB1), |
| 24 300: const Color(0xFFF06292), |
| 25 400: const Color(0xFFEC407A), |
| 26 500: const Color(0xFFE91E63), |
| 27 600: const Color(0xFFD81B60), |
| 28 700: const Color(0xFFC2185B), |
| 29 800: const Color(0xFFAD1457), |
| 30 900: const Color(0xFF880E4F), |
| 31 }; |
| 32 |
| 33 const Map<int, Color> Purple = const { |
| 34 50: const Color(0xFFF3E5F5), |
| 35 100: const Color(0xFFE1BEE7), |
| 36 200: const Color(0xFFCE93D8), |
| 37 300: const Color(0xFFBA68C8), |
| 38 400: const Color(0xFFAB47BC), |
| 39 500: const Color(0xFF9C27B0), |
| 40 600: const Color(0xFF8E24AA), |
| 41 700: const Color(0xFF7B1FA2), |
| 42 800: const Color(0xFF6A1B9A), |
| 43 900: const Color(0xFF4A148C), |
| 44 }; |
| 45 |
| 46 const Map<int, Color> DeepPurple = const { |
| 47 50: const Color(0xFFEDE7F6), |
| 48 100: const Color(0xFFD1C4E9), |
| 49 200: const Color(0xFFB39DDB), |
| 50 300: const Color(0xFF9575CD), |
| 51 400: const Color(0xFF7E57C2), |
| 52 500: const Color(0xFF673AB7), |
| 53 600: const Color(0xFF5E35B1), |
| 54 700: const Color(0xFF512DA8), |
| 55 800: const Color(0xFF4527A0), |
| 56 900: const Color(0xFF311B92), |
| 57 }; |
| 58 |
| 59 const Map<int, Color> Indigo = const { |
| 60 50: const Color(0xFFE8EAF6), |
| 61 100: const Color(0xFFC5CAE9), |
| 62 200: const Color(0xFF9FA8DA), |
| 63 300: const Color(0xFF7986CB), |
| 64 400: const Color(0xFF5C6BC0), |
| 65 500: const Color(0xFF3F51B5), |
| 66 600: const Color(0xFF3949AB), |
| 67 700: const Color(0xFF303F9F), |
| 68 800: const Color(0xFF283593), |
| 69 900: const Color(0xFF1A237E), |
| 70 }; |
| 71 |
| 72 const Map<int, Color> Blue = const { |
| 73 50: const Color(0xFFE3F2FD), |
| 74 100: const Color(0xFFBBDEFB), |
| 75 200: const Color(0xFF90CAF9), |
| 76 300: const Color(0xFF64B5F6), |
| 77 400: const Color(0xFF42A5F5), |
| 78 500: const Color(0xFF2196F3), |
| 79 600: const Color(0xFF1E88E5), |
| 80 700: const Color(0xFF1976D2), |
| 81 800: const Color(0xFF1565C0), |
| 82 900: const Color(0xFF0D47A1), |
| 83 }; |
| 84 |
| 85 const Map<int, Color> LightBlue = const { |
| 86 50: const Color(0xFFE1F5FE), |
| 87 100: const Color(0xFFB3E5FC), |
| 88 200: const Color(0xFF81D4FA), |
| 89 300: const Color(0xFF4FC3F7), |
| 90 400: const Color(0xFF29B6F6), |
| 91 500: const Color(0xFF03A9F4), |
| 92 600: const Color(0xFF039BE5), |
| 93 700: const Color(0xFF0288D1), |
| 94 800: const Color(0xFF0277BD), |
| 95 900: const Color(0xFF01579B), |
| 96 }; |
| 97 |
| 98 const Map<int, Color> Cyan = const { |
| 99 50: const Color(0xFFE0F7FA), |
| 100 100: const Color(0xFFB2EBF2), |
| 101 200: const Color(0xFF80DEEA), |
| 102 300: const Color(0xFF4DD0E1), |
| 103 400: const Color(0xFF26C6DA), |
| 104 500: const Color(0xFF00BCD4), |
| 105 600: const Color(0xFF00ACC1), |
| 106 700: const Color(0xFF0097A7), |
| 107 800: const Color(0xFF00838F), |
| 108 900: const Color(0xFF006064), |
| 109 }; |
| 110 |
| 111 const Map<int, Color> Teal = const { |
| 112 50: const Color(0xFFE0F2F1), |
| 113 100: const Color(0xFFB2DFDB), |
| 114 200: const Color(0xFF80CBC4), |
| 115 300: const Color(0xFF4DB6AC), |
| 116 400: const Color(0xFF26A69A), |
| 117 500: const Color(0xFF009688), |
| 118 600: const Color(0xFF00897B), |
| 119 700: const Color(0xFF00796B), |
| 120 800: const Color(0xFF00695C), |
| 121 900: const Color(0xFF004D40), |
| 122 }; |
| 123 |
| 124 const Map<int, Color> Green = const { |
| 125 50: const Color(0xFFE8F5E9), |
| 126 100: const Color(0xFFC8E6C9), |
| 127 200: const Color(0xFFA5D6A7), |
| 128 300: const Color(0xFF81C784), |
| 129 400: const Color(0xFF66BB6A), |
| 130 500: const Color(0xFF4CAF50), |
| 131 600: const Color(0xFF43A047), |
| 132 700: const Color(0xFF388E3C), |
| 133 800: const Color(0xFF2E7D32), |
| 134 900: const Color(0xFF1B5E20), |
| 135 }; |
| 136 |
| 137 const Map<int, Color> LightGreen = const { |
| 138 50: const Color(0xFFF1F8E9), |
| 139 100: const Color(0xFFDCEDC8), |
| 140 200: const Color(0xFFC5E1A5), |
| 141 300: const Color(0xFFAED581), |
| 142 400: const Color(0xFF9CCC65), |
| 143 500: const Color(0xFF8BC34A), |
| 144 600: const Color(0xFF7CB342), |
| 145 700: const Color(0xFF689F38), |
| 146 800: const Color(0xFF558B2F), |
| 147 900: const Color(0xFF33691E), |
| 148 }; |
| 149 |
| 150 const Map<int, Color> Lime = const { |
| 151 50: const Color(0xFFF9FBE7), |
| 152 100: const Color(0xFFF0F4C3), |
| 153 200: const Color(0xFFE6EE9C), |
| 154 300: const Color(0xFFDCE775), |
| 155 400: const Color(0xFFD4E157), |
| 156 500: const Color(0xFFCDDC39), |
| 157 600: const Color(0xFFC0CA33), |
| 158 700: const Color(0xFFAFB42B), |
| 159 800: const Color(0xFF9E9D24), |
| 160 900: const Color(0xFF827717), |
| 161 }; |
| 162 |
| 163 const Map<int, Color> Yellow = const { |
| 164 50: const Color(0xFFFFFDE7), |
| 165 100: const Color(0xFFFFF9C4), |
| 166 200: const Color(0xFFFFF59D), |
| 167 300: const Color(0xFFFFF176), |
| 168 400: const Color(0xFFFFEE58), |
| 169 500: const Color(0xFFFFEB3B), |
| 170 600: const Color(0xFFFDD835), |
| 171 700: const Color(0xFFFBC02D), |
| 172 800: const Color(0xFFF9A825), |
| 173 900: const Color(0xFFF57F17), |
| 174 }; |
| 175 |
| 176 const Map<int, Color> Amber = const { |
| 177 50: const Color(0xFFFFF8E1), |
| 178 100: const Color(0xFFFFECB3), |
| 179 200: const Color(0xFFFFE082), |
| 180 300: const Color(0xFFFFD54F), |
| 181 400: const Color(0xFFFFCA28), |
| 182 500: const Color(0xFFFFC107), |
| 183 600: const Color(0xFFFFB300), |
| 184 700: const Color(0xFFFFA000), |
| 185 800: const Color(0xFFFF8F00), |
| 186 900: const Color(0xFFFF6F00), |
| 187 }; |
| 188 |
| 189 const Map<int, Color> Orange = const { |
| 190 50: const Color(0xFFFFF3E0), |
| 191 100: const Color(0xFFFFE0B2), |
| 192 200: const Color(0xFFFFCC80), |
| 193 300: const Color(0xFFFFB74D), |
| 194 400: const Color(0xFFFFA726), |
| 195 500: const Color(0xFFFF9800), |
| 196 600: const Color(0xFFFB8C00), |
| 197 700: const Color(0xFFF57C00), |
| 198 800: const Color(0xFFEF6C00), |
| 199 900: const Color(0xFFE65100), |
| 200 }; |
| 201 |
| 202 const Map<int, Color> DeepOrange = const { |
| 203 50: const Color(0xFFFBE9E7), |
| 204 100: const Color(0xFFFFCCBC), |
| 205 200: const Color(0xFFFFAB91), |
| 206 300: const Color(0xFFFF8A65), |
| 207 400: const Color(0xFFFF7043), |
| 208 500: const Color(0xFFFF5722), |
| 209 600: const Color(0xFFF4511E), |
| 210 700: const Color(0xFFE64A19), |
| 211 800: const Color(0xFFD84315), |
| 212 900: const Color(0xFFBF360C), |
| 213 }; |
| 214 |
| 215 const Map<int, Color> Brown = const { |
| 216 50: const Color(0xFFEFEBE9), |
| 217 100: const Color(0xFFD7CCC8), |
| 218 200: const Color(0xFFBCAAA4), |
| 219 300: const Color(0xFFA1887F), |
| 220 400: const Color(0xFF8D6E63), |
| 221 500: const Color(0xFF795548), |
| 222 600: const Color(0xFF6D4C41), |
| 223 700: const Color(0xFF5D4037), |
| 224 800: const Color(0xFF4E342E), |
| 225 900: const Color(0xFF3E2723), |
| 226 }; |
| 227 |
| 228 const Map<int, Color> Grey = const { |
| 229 50: const Color(0xFFFAFAFA), |
| 230 100: const Color(0xFFF5F5F5), |
| 231 200: const Color(0xFFEEEEEE), |
| 232 300: const Color(0xFFE0E0E0), |
| 233 350: const Color(0xFFD6D6D6), // only for raised button while pressed or disab
led |
| 234 400: const Color(0xFFBDBDBD), |
| 235 500: const Color(0xFF9E9E9E), |
| 236 600: const Color(0xFF757575), |
| 237 700: const Color(0xFF616161), |
| 238 800: const Color(0xFF424242), |
| 239 900: const Color(0xFF212121), |
| 240 }; |
| 241 |
| 242 const Map<int, Color> BlueGrey = const { |
| 243 50: const Color(0xFFECEFF1), |
| 244 100: const Color(0xFFCFD8DC), |
| 245 200: const Color(0xFFB0BEC5), |
| 246 300: const Color(0xFF90A4AE), |
| 247 400: const Color(0xFF78909C), |
| 248 500: const Color(0xFF607D8B), |
| 249 600: const Color(0xFF546E7A), |
| 250 700: const Color(0xFF455A64), |
| 251 800: const Color(0xFF37474F), |
| 252 900: const Color(0xFF263238), |
| 253 }; |
| OLD | NEW |