lightMainTheme property

ThemeData get lightMainTheme

Implementation

static ThemeData get lightMainTheme {
  return ThemeData(
    useMaterial3: true,
    fontFamily: 'Roboto',
    textTheme: mainTextTheme,
    appBarTheme: _mainAppBarTheme,
    scaffoldBackgroundColor: BasfColors.white,
    snackBarTheme: _snackBarThemeData,
    colorSchemeSeed: primaryColor,
    textButtonTheme: TextButtonThemeData(
      style: ButtonStyles.containedTextButtonStyle,
    ),
    outlinedButtonTheme: OutlinedButtonThemeData(
      style: ButtonStyles.primaryOutlinedButtonStyle,
    ),
    dialogTheme: DialogTheme(
      shape: RoundedRectangleBorder(borderRadius: defaultBorderRadius),
    ),
    inputDecorationTheme: BasfInputThemes.mainInputDecorationTheme,
    hintColor: BasfInputThemes.focusedBorderColor.shade400,
    bottomNavigationBarTheme: _bottomNavigationBarTheme,
  );
}