import 'package:flutter/material.dart'; import 'colors.dart'; final ThemeData devFiresTheme = _buildFiresTheme(); ThemeData _buildFiresTheme() { final ThemeData base = ThemeData.light(); return base.copyWith( primaryColor: Colors.pink, scaffoldBackgroundColor: firesSurfaceWhite, cardColor: firesBackgroundWhite, textSelectionTheme: TextSelectionThemeData(selectionColor: fires300), colorScheme: ColorScheme.light( primary: Colors.pink, secondary: fires900, error: firesErrorRed, surface: firesSurfaceWhite, onSurface: fires900, onPrimary: Colors.white, onSecondary: Colors.white, onError: Colors.white, ), //TODO: Add the text themes (103) //TODO: Add the icon themes (103) //TODO: Decorate the inputs (103) ); }