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 {