darkTheme_default method

ThemeData darkTheme_default()

Implementation

ThemeData darkTheme_default() {
  return ThemeData(
    primaryColor: ThemeData.dark().scaffoldBackgroundColor,
    scaffoldBackgroundColor: Colors.black,
    textTheme: const TextTheme(
      labelMedium: TextStyle(
        color: Colors.white,
        fontSize: 18.0,
        fontWeight: FontWeight.w400,
      ),
      labelSmall: TextStyle(
        color: Colors.white,
        fontSize: 14.0,
        fontWeight: FontWeight.w400,
      ),
    ),
    indicatorColor: Colors.white,
    dialogBackgroundColor: const Color.fromARGB(255, 64, 64, 64),
    cardColor: Colors.grey,
    shadowColor: const Color.fromARGB(255, 24, 4, 83),
    colorScheme: const ColorScheme.dark().copyWith(
      primary: const Color.fromARGB(255, 64, 64, 64),
    ),
  );
}