lightTheme property

ThemeData get lightTheme

Implementation

static ThemeData get lightTheme => ThemeData(
      brightness: Brightness.light,
      primaryColor: AppColors.primary,
      scaffoldBackgroundColor: AppColors.background,
      fontFamily: 'DM Sans',
      colorScheme: ColorScheme.light(
        primary: AppColors.primary,
        secondary: AppColors.secondary,
        surfaceTint: Colors.transparent,
      ),
      textTheme: _baseTextTheme(AppColors.primary),
      inputDecorationTheme: _inputDecorationTheme(),
      elevatedButtonTheme: _elevatedButtonTheme(),
      filledButtonTheme: _filledButtonTheme(),
      outlinedButtonTheme: _outlinedButtonTheme(AppColors.primary),
      textButtonTheme: _textButtonTheme(AppColors.primary),
      appBarTheme: _appBarTheme(AppColors.primary, AppColors.background),
      floatingActionButtonTheme: _fabTheme(),
    );