globalTextTheme property

TextTheme globalTextTheme
getter/setter pair

Implementation

static TextTheme globalTextTheme = TextTheme(
  headlineLarge: const TextStyle(
    letterSpacing: 2.0,
    fontWeight: FontWeight.w800,
    fontSize: 38,
    color: Colors.black,
  ),
  bodySmall: TextStyle(
      fontWeight: FontWeight.normal,
      fontSize: 17,
      color: Colors.grey.shade900,
      fontStyle: FontStyle.italic),
  titleLarge: TextStyle(
    fontWeight: FontWeight.normal,
    fontSize: 22,
    color: Colors.grey.shade400,
  ),
  titleMedium: TextStyle(
    fontWeight: FontWeight.normal,
    fontSize: 17,
    color: Colors.grey.shade400,
  ),
  titleSmall: TextStyle(
    fontWeight: FontWeight.normal,
    fontSize: 15,
    color: Colors.grey.shade400,
  ),
  displayLarge: const TextStyle(
    fontWeight: FontWeight.w700,
    fontSize: 18,
    color: Colors.black,
  ),
);