Index: sky/sdk/lib/widgets/drawer.dart |
diff --git a/sky/sdk/lib/widgets/drawer.dart b/sky/sdk/lib/widgets/drawer.dart |
index 1a577bcd4620db48c2bcc8894579b83858c9c970..8ff37b6daf4ef2cf053a7aedcff04d6d58846d5c 100644 |
--- a/sky/sdk/lib/widgets/drawer.dart |
+++ b/sky/sdk/lib/widgets/drawer.dart |
@@ -6,10 +6,10 @@ import 'dart:sky' as sky; |
import '../animation/animation_performance.dart'; |
import '../animation/curves.dart'; |
-import '../theme/colors.dart'; |
import '../theme/shadows.dart'; |
import 'animated_component.dart'; |
import 'basic.dart'; |
+import 'theme.dart'; |
// TODO(eseidel): Draw width should vary based on device size: |
// http://www.google.com/design/spec/layout/structure.html#structure-side-nav |
@@ -128,7 +128,7 @@ class Drawer extends AnimatedComponent { |
Widget content = controller.position.build( |
new Container( |
decoration: new BoxDecoration( |
- backgroundColor: Grey[50], |
+ backgroundColor: Theme.of(this).canvasColor, |
boxShadow: shadows[level]), |
width: _kWidth, |
child: new Block(children) |