purple property

ThemeModel purple
final

Implementation

static final ThemeModel purple = ThemeModel(
  type: ThemeType.purple,
  themeData: ThemeData(
    brightness: Brightness.light,
    primarySwatch: Colors.purple,
    appBarTheme: const AppBarTheme(
      backgroundColor: Colors.purple,
      foregroundColor: Colors.white,
    ),
    scaffoldBackgroundColor: Colors.purple[50],
  ),
);