lightTheme top-level property

ThemeData lightTheme
final

Implementation

final lightTheme = ThemeData(
  fontFamily: 'Nunito',
  textTheme: TextTheme(
    bodyMedium: ligthThemeBaseTextStyle.copyWith(
      fontSize: 16,
      fontWeight: FontWeight.w400,
    ),
    headlineMedium: ligthThemeBaseTextStyle.copyWith(
      fontSize: 20,
      fontWeight: FontWeight.w700,
    ),
  ),
);