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

Side by Side Diff: sky/sdk/lib/framework/theme2/colors.dart

Issue 1179713004: Material and RaisedButton. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 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/framework/rendering/box.dart ('k') | sky/sdk/lib/framework/theme2/edges.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 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 700: const Color(0xFF5D4037), 223 700: const Color(0xFF5D4037),
224 800: const Color(0xFF4E342E), 224 800: const Color(0xFF4E342E),
225 900: const Color(0xFF3E2723), 225 900: const Color(0xFF3E2723),
226 }; 226 };
227 227
228 const Map<int, Color> Grey = const { 228 const Map<int, Color> Grey = const {
229 50: const Color(0xFFFAFAFA), 229 50: const Color(0xFFFAFAFA),
230 100: const Color(0xFFF5F5F5), 230 100: const Color(0xFFF5F5F5),
231 200: const Color(0xFFEEEEEE), 231 200: const Color(0xFFEEEEEE),
232 300: const Color(0xFFE0E0E0), 232 300: const Color(0xFFE0E0E0),
233 350: const Color(0xFFD6D6D6), // only for raised button while pressed
233 400: const Color(0xFFBDBDBD), 234 400: const Color(0xFFBDBDBD),
234 500: const Color(0xFF9E9E9E), 235 500: const Color(0xFF9E9E9E),
235 600: const Color(0xFF757575), 236 600: const Color(0xFF757575),
236 700: const Color(0xFF616161), 237 700: const Color(0xFF616161),
237 800: const Color(0xFF424242), 238 800: const Color(0xFF424242),
238 900: const Color(0xFF212121), 239 900: const Color(0xFF212121),
239 }; 240 };
240 241
241 const Map<int, Color> BlueGrey = const { 242 const Map<int, Color> BlueGrey = const {
242 50: const Color(0xFFECEFF1), 243 50: const Color(0xFFECEFF1),
243 100: const Color(0xFFCFD8DC), 244 100: const Color(0xFFCFD8DC),
244 200: const Color(0xFFB0BEC5), 245 200: const Color(0xFFB0BEC5),
245 300: const Color(0xFF90A4AE), 246 300: const Color(0xFF90A4AE),
246 400: const Color(0xFF78909C), 247 400: const Color(0xFF78909C),
247 500: const Color(0xFF607D8B), 248 500: const Color(0xFF607D8B),
248 600: const Color(0xFF546E7A), 249 600: const Color(0xFF546E7A),
249 700: const Color(0xFF455A64), 250 700: const Color(0xFF455A64),
250 800: const Color(0xFF37474F), 251 800: const Color(0xFF37474F),
251 900: const Color(0xFF263238), 252 900: const Color(0xFF263238),
252 }; 253 };
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/rendering/box.dart ('k') | sky/sdk/lib/framework/theme2/edges.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698