lightTheme_default method

ThemeData lightTheme_default()

Implementation

ThemeData lightTheme_default() {
  return ThemeData(
    primaryColor: ThemeData.light().scaffoldBackgroundColor,
    shadowColor: const Color.fromARGB(110, 0, 0, 0),
    textTheme: const TextTheme(
      labelMedium: TextStyle(
        color: Colors.black,
        fontSize: 18.0,
        fontWeight: FontWeight.w500,
      ),
      labelSmall: TextStyle(
        color: Colors.black,
        fontSize: 14.0,
        fontWeight: FontWeight.w500,
      ),
    ),
    indicatorColor: Colors.black,
    dialogBackgroundColor: Colors.white,
    cardColor: Colors.grey,
    colorScheme: const ColorScheme.light().copyWith(
      primary: Colors.black,
      secondary: Colors.white,
    ),
  );
}