defaultTypography constant

MiniTypographyTokens const defaultTypography

Implementation

static const MiniTypographyTokens defaultTypography = MiniTypographyTokens(
  body: TextStyle(
    fontSize: 15,
    fontWeight: FontWeight.w400,
  ),
  small: TextStyle(
    fontSize: 13,
    fontWeight: FontWeight.w400,
  ),
  title: TextStyle(
    fontSize: 18,
    fontWeight: FontWeight.w600,
  ),
  heading: TextStyle(
    fontSize: 26,
    fontWeight: FontWeight.w700,
  ),
);