lightTextTheme property

TextTheme lightTextTheme
read / write

Implementation

static TextTheme lightTextTheme = TextTheme(
  bodyLarge: GoogleFonts.openSans(
    fontSize: 16,
    fontWeight: FontWeight.w500,
    color: Colors.black,
  ),
  bodyMedium: GoogleFonts.openSans(
    fontSize: 16,
    color: Colors.black,
    fontWeight: FontWeight.normal,
  ),
  displayLarge: GoogleFonts.openSans(
    fontSize: 28,
    fontWeight: FontWeight.bold,
    color: Colors.black,
  ),
  displayMedium: GoogleFonts.openSans(
    fontSize: 26,
    fontWeight: FontWeight.w700,
    color: Colors.black,
  ),
  displaySmall: GoogleFonts.openSans(
    fontSize: 24,
    fontWeight: FontWeight.w600,
    color: Colors.black,
  ),
  headlineMedium: GoogleFonts.openSans(
    fontSize: 22,
    // fontWeight: FontWeight.w600,
    color: Colors.black,
  ),
  headlineSmall: GoogleFonts.openSans(
    fontSize: 20,
    fontWeight: FontWeight.w600,
    color: Colors.black,
  ),
  titleLarge: GoogleFonts.ubuntu(
    fontSize: 18,
    fontWeight: FontWeight.w600,
    color: Colors.black,
  ),
);