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); |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 100: const Color(0xFFCFD8DC), | 363 100: const Color(0xFFCFD8DC), |
364 200: const Color(0xFFB0BEC5), | 364 200: const Color(0xFFB0BEC5), |
365 300: const Color(0xFF90A4AE), | 365 300: const Color(0xFF90A4AE), |
366 400: const Color(0xFF78909C), | 366 400: const Color(0xFF78909C), |
367 500: const Color(0xFF607D8B), | 367 500: const Color(0xFF607D8B), |
368 600: const Color(0xFF546E7A), | 368 600: const Color(0xFF546E7A), |
369 700: const Color(0xFF455A64), | 369 700: const Color(0xFF455A64), |
370 800: const Color(0xFF37474F), | 370 800: const Color(0xFF37474F), |
371 900: const Color(0xFF263238), | 371 900: const Color(0xFF263238), |
372 }; | 372 }; |
373 | |
374 const List<Map<int, Color>> DarkColors = const [ | |
375 Red, | |
376 Pink, | |
377 Purple, | |
378 DeepPurple, | |
379 Indigo, | |
380 Blue, | |
381 Teal, | |
382 DeepOrange, | |
383 Brown | |
384 ]; | |
OLD | NEW |