Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: sky/sdk/lib/theme/colors.dart

Issue 1218153005: Refactoring to support dark theme better (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix import issues Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/sdk/lib/editing/input.dart ('k') | sky/sdk/lib/theme/theme_data.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 ];
OLDNEW
« no previous file with comments | « sky/sdk/lib/editing/input.dart ('k') | sky/sdk/lib/theme/theme_data.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698