import 'package:flutter/material.dart'; import 'colors.dart'; final ThemeData firesTheme = _buildFiresTheme(); ThemeData _buildFiresTheme() { final ThemeData base = ThemeData.light(); // light or dark return base.copyWith( primaryColor: fires600, scaffoldBackgroundColor: firesSurfaceWhite, cardColor: firesBackgroundWhite, textSelectionTheme: TextSelectionThemeData(selectionColor: fires300), colorScheme: ColorScheme.fromSwatch().copyWith(secondary: fires900), colorScheme: ColorScheme(error: firesErrorRed), //TODO: Add the text themes (103) //TODO: Add the icon themes (103) //TODO: Decorate the inputs (103) ); }