lightTheme property
ThemeData
get
lightTheme
Implementation
static ThemeData get lightTheme {
return ThemeData(
useMaterial3: true,
colorScheme: ColorScheme.light(
primary: TatweerColors.primary,
secondary: TatweerColors.secondary,
surface: TatweerColors.surface,
background: TatweerColors.background,
error: TatweerColors.error,
onPrimary: Colors.white,
onSecondary: Colors.white,
onSurface: TatweerColors.textPrimary,
onBackground: TatweerColors.textPrimary,
onError: Colors.white,
),
scaffoldBackgroundColor: TatweerColors.background,
cardColor: TatweerColors.surface,
dividerColor: TatweerColors.border,
);
}