lightTheme_default method

ThemeData lightTheme_default()

Implementation

ThemeData lightTheme_default() {
  final ThemeData themeData = ThemeData.light();
  return themeData.copyWith(
    primaryColor: themeData.scaffoldBackgroundColor,
    shadowColor: const Color.fromARGB(255, 0, 0, 0).withAlpha(110),
    textTheme: Typography().black.apply(fontFamily: "Poppins", package: "general_lib_assets_flutter"),
    indicatorColor: Colors.black,
    dialogBackgroundColor: Colors.white,
    cardColor: Colors.grey,
    colorScheme: const ColorScheme.light().copyWith(
      primary: Colors.black,
      secondary: Colors.white,
    ),
    highlightColor: Colors.indigo,
    textSelectionTheme: themeData.textSelectionTheme.copyWith(
      cursorColor: Colors.black,
      selectionColor: Colors.black.withOpacity(0.4),
    ),
  );
}