lightTheme property

ThemeData get lightTheme

Implementation

static ThemeData get lightTheme => ThemeData(
  useMaterial3: true,
  scaffoldBackgroundColor: AppConfig.colors.scaffoldLightBg,
  colorScheme: AppConfig.colors.lightColorScheme,
  textTheme: AppConfig.textStyles.textTheme,
  appBarTheme: AppBarTheme(backgroundColor: AppConfig.colors.appBarLightBg, foregroundColor: AppConfig.colors.appBarLightFg, elevation: 0),
  elevatedButtonTheme: ElevatedButtonThemeData(style: AppConfig.buttonStyles.elevatedLight),
  outlinedButtonTheme: OutlinedButtonThemeData(style: AppConfig.buttonStyles.outlinedLight),
  bottomNavigationBarTheme: BottomNavigationBarThemeData(
    backgroundColor: AppConfig.colors.surfaceLightBg,
    selectedItemColor: AppConfig.colors.selectedBottomItemLight,
    unselectedItemColor: AppConfig.colors.unselectedItemLight,
  ),
  dropdownMenuTheme: AppConfig.dropdownMenuTheme.lightTheme,
  inputDecorationTheme: InputDecorationTheme(
    filled: true,
    fillColor: AppConfig.colors.inputFillLight,
    border: OutlineInputBorder(borderSide: BorderSide(color: AppConfig.colors.inputBorderLight)),
  ),
);