light property

ThemeData get light

Implementation

static ThemeData get light => ThemeData(
  useMaterial3: true,
  brightness: Brightness.light,
  colorSchemeSeed: _primaryColor,
  textTheme: GoogleFonts.jetBrainsMonoTextTheme(),
  appBarTheme: const AppBarTheme(centerTitle: false, elevation: 0),
  inputDecorationTheme: InputDecorationTheme(
    border: OutlineInputBorder(borderRadius: BorderRadius.circular(12)),
    filled: true,
  ),
  cardTheme: CardThemeData(
    elevation: 0,
    shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
  ),
);