lightTheme property

ThemeData lightTheme
final

Implementation

static final lightTheme = ThemeData(
  brightness: Brightness.light,
  cardColor: const Color(0xfff2f2f2),
  primaryColor: const Color(0xff020630),
  scaffoldBackgroundColor: Colors.white,
  colorScheme: const ColorScheme.light(
    primary: Color(0xff020630),
    secondary: Colors.blueAccent,
    surface: Colors.white,
    onSurface: Colors.black,

  ),
  appBarTheme: const AppBarTheme(
    backgroundColor: Colors.white,
    foregroundColor: Colors.black,
    elevation: 0,
  ),
  textTheme: const TextTheme(
    bodyLarge: TextStyle(color: Colors.black),
    bodyMedium: TextStyle(color: Colors.black87),
  ),
  snackBarTheme: const SnackBarThemeData(
    backgroundColor: Color(0xff020630),
    contentTextStyle: TextStyle(color: Colors.white),
  ),
);