light static method

ThemeData light()

Implementation

static ThemeData light() {
  ThemeData theme = ThemeData(
      primaryColor: green,
      dividerColor: Colors.green[400],
      scaffoldBackgroundColor: Colors.blueGrey[50],
      iconTheme: IconThemeData(color: Colors.green[600]),
      colorScheme: const ColorScheme.light(
        primary: green,
        secondary: greenAcenpt,
        secondaryContainer: blueLight,
        onPrimary: Colors.white,
        onSecondary: Color(0XFF43A047),
        error: redDark,
        primaryContainer: white,
      ),
      cardTheme: const CardTheme(
        color: cardLight,
      ));
  return theme;
}