lightTextTheme property

TextTheme lightTextTheme
getter/setter pair

Implementation

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