From 2de2ce35bbc5565fa484673e1f06cb1d056a93f7 Mon Sep 17 00:00:00 2001 From: Hans Muller Date: Thu, 16 Jun 2016 17:33:12 -0700 Subject: [PATCH] It is not easy being green (#4606) --- examples/flutter_gallery/lib/demo/icons_demo.dart | 2 +- examples/flutter_gallery/lib/gallery/app.dart | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/flutter_gallery/lib/demo/icons_demo.dart b/examples/flutter_gallery/lib/demo/icons_demo.dart index b9cb1ce3f15..9a33b7a94df 100644 --- a/examples/flutter_gallery/lib/demo/icons_demo.dart +++ b/examples/flutter_gallery/lib/demo/icons_demo.dart @@ -34,7 +34,7 @@ class IconsDemoState extends State { Colors.blueGrey ]; - int iconColorIndex = 9; // green + int iconColorIndex = 8; // teal double iconOpacity = 1.0; Color get iconColor => iconColorSwatches[iconColorIndex][400]; diff --git a/examples/flutter_gallery/lib/gallery/app.dart b/examples/flutter_gallery/lib/gallery/app.dart index 6723cb4aff8..ba1b86f31b0 100644 --- a/examples/flutter_gallery/lib/gallery/app.dart +++ b/examples/flutter_gallery/lib/gallery/app.dart @@ -16,12 +16,12 @@ final Map _kRoutes = new Map.fromI final ThemeData _kGalleryLightTheme = new ThemeData( brightness: Brightness.light, - primarySwatch: Colors.green + primarySwatch: Colors.teal ); final ThemeData _kGalleryDarkTheme = new ThemeData( brightness: Brightness.dark, - primarySwatch: Colors.green + primarySwatch: Colors.teal ); class GalleryApp extends StatefulWidget {