lightTheme property

ThemeData lightTheme
final

Implementation

static final ThemeData lightTheme = ThemeData(
  brightness: Brightness.light,
  useMaterial3: true,
  primaryColor: Colors.blue,
  textTheme: const TextTheme(
    headlineLarge: TextStyle(fontSize: 72.0, color: Colors.black),
    headlineMedium: TextStyle(fontSize: 54.0, color: Colors.black54),
    headlineSmall: TextStyle(fontSize: 36.0, color: Colors.black45),
    titleLarge: TextStyle(fontSize: 28.0, color: Colors.black87),
    titleMedium: TextStyle(fontSize: 24.0, color: Colors.black87),
    titleSmall: TextStyle(fontSize: 20.0, color: Colors.black87),
    bodyLarge: TextStyle(fontSize: 16.0, color: Colors.black87),
    bodyMedium: TextStyle(fontSize: 14.0, color: Colors.black87),
    bodySmall: TextStyle(fontSize: 12.0, color: Colors.black87),
  ),
);