typoGraphyExtension top-level constant

TypographyExtension const typoGraphyExtension

Implementation

const typoGraphyExtension = TypographyExtension(
  headingBold: TextStyle(
    fontSize: 40,
    fontWeight: FontWeight.w700,
  ),
  headingLight: TextStyle(
    fontSize: 40,
    fontWeight: FontWeight.w400,
  ),
  headingBold1: TextStyle(
    fontSize: 24,
    fontWeight: FontWeight.w700,
  ),
  headingLight1: TextStyle(
    fontSize: 24,
    fontWeight: FontWeight.w400,
  ),
  headingBold2: TextStyle(
    fontSize: 20,
    fontWeight: FontWeight.w700,
  ),
  headingLight2: TextStyle(
    fontSize: 20,
    fontWeight: FontWeight.w400,
  ),
  titleBold: TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w700,
  ),
  titleLight: TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w400,
  ),
  bodyBold1: TextStyle(
    fontSize: 14,
    fontWeight: FontWeight.w700,
  ),
  bodyLight1: TextStyle(
    fontSize: 14,
    fontWeight: FontWeight.w400,
  ),
  bodyBold2: TextStyle(
    fontSize: 12,
    fontWeight: FontWeight.w700,
  ),
  bodyLight2: TextStyle(
    color: disabledColor,
    fontSize: 12,
    fontWeight: FontWeight.w400,
  ),
  captionBold: TextStyle(
    fontSize: 10,
    fontWeight: FontWeight.w700,
  ),
  captionLight: TextStyle(fontSize: 10, fontWeight: FontWeight.w400),
  tinyBold: TextStyle(fontSize: 6, fontWeight: FontWeight.w400),
);