darkTextTheme property

TextTheme darkTextTheme
getter/setter pair

Implementation

static TextTheme darkTextTheme = TextTheme(
  displayLarge: GoogleFonts.poppins(fontSize: 28.0, fontWeight: FontWeight.bold, color: tWhiteColor),
  displayMedium: GoogleFonts.poppins(fontSize: 24.0, fontWeight: FontWeight.w700, color: tWhiteColor),
  displaySmall: GoogleFonts.poppins(fontSize: 24.0, fontWeight: FontWeight.normal, color: tWhiteColor),
  headlineMedium: GoogleFonts.poppins(fontSize: 18.0, fontWeight: FontWeight.w600, color: tWhiteColor),
  headlineSmall: GoogleFonts.poppins(fontSize: 18.0, fontWeight: FontWeight.normal, color: tWhiteColor),
  titleLarge: GoogleFonts.poppins(fontSize: 14.0, fontWeight: FontWeight.w600, color: tWhiteColor),
  bodyLarge: GoogleFonts.poppins(fontSize: 14.0, color: tWhiteColor),
  bodyMedium: GoogleFonts.poppins(fontSize: 14.0, color: tWhiteColor.withAlpha((0.8 * 255).toInt())),
);