standard constant

KiteTypography const standard

Implementation

static const standard = KiteTypography(
  display: TextStyle(
    fontSize: 40,
    fontWeight: FontWeight.w700,
    height: 1.10,
    letterSpacing: -1.0,
  ),
  heading: TextStyle(
    fontSize: 30,
    fontWeight: FontWeight.w700,
    height: 1.15,
    letterSpacing: -0.70,
  ),
  section: TextStyle(
    fontSize: 20,
    fontWeight: FontWeight.w700,
    height: 1.25,
    letterSpacing: -0.30,
  ),
  title: TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w600,
    height: 1.30,
    letterSpacing: -0.10,
  ),
  lead: TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w400,
    height: 1.50,
    letterSpacing: -0.05,
  ),
  body: TextStyle(fontSize: 15, fontWeight: FontWeight.w400, height: 1.45),
  paragraph: TextStyle(
    fontSize: 13,
    fontWeight: FontWeight.w400,
    height: 1.40,
  ),
  label: TextStyle(fontSize: 14, fontWeight: FontWeight.w600, height: 1.20),
  labelSmall: TextStyle(
    fontSize: 12,
    fontWeight: FontWeight.w600,
    height: 1.20,
    letterSpacing: 0.10,
  ),
  caption: TextStyle(
    fontSize: 11,
    fontWeight: FontWeight.w500,
    height: 1.30,
    letterSpacing: 0.15,
  ),
);