| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 1 part of trydart.themes; | 5 part of trydart.themes; |
| 2 | 6 |
| 3 /// Black Pastel theme extracted from | 7 /// Black Pastel theme extracted from |
| 4 /// ../editor/tools/plugins/com.google.dart.tools.deploy/themes/black-pastel.xml
. | 8 /// ../editor/tools/plugins/com.google.dart.tools.deploy/themes/black-pastel.xml
. |
| 5 /// Author: David. | 9 /// Author: David. |
| 6 class Black_PastelTheme extends Theme { | 10 class Black_PastelTheme extends Theme { |
| 7 const Black_PastelTheme(); | 11 const Black_PastelTheme(); |
| 8 | 12 |
| 9 String get name => 'Black Pastel'; | 13 String get name => 'Black Pastel'; |
| 10 | 14 |
| (...skipping 1455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1466 const RettaTheme(), | 1470 const RettaTheme(), |
| 1467 const RoboticketTheme(), | 1471 const RoboticketTheme(), |
| 1468 const SchussTheme(), | 1472 const SchussTheme(), |
| 1469 const Sublime_Text_2Theme(), | 1473 const Sublime_Text_2Theme(), |
| 1470 const SunburstTheme(), | 1474 const SunburstTheme(), |
| 1471 const TangoTheme(), | 1475 const TangoTheme(), |
| 1472 const Vibrant_InkTheme(), | 1476 const Vibrant_InkTheme(), |
| 1473 const WombatTheme(), | 1477 const WombatTheme(), |
| 1474 const ZenburnTheme(), | 1478 const ZenburnTheme(), |
| 1475 ]; | 1479 ]; |
| OLD | NEW |