lightTheme property
Implementation
static final ThemeData lightTheme = ThemeData(
brightness: Brightness.light,
primaryColor: Colors.blue,
scaffoldBackgroundColor: Colors.white,
textTheme: TextTheme(
bodyLarge: TextStyle(color: Colors.black),
bodySmall: TextStyle(color: Colors.black54),
),
// Additional customization can be added here
);