tbtTextTheme top-level constant

TextTheme const tbtTextTheme

Implementation

const TextTheme tbtTextTheme = TextTheme(
  headlineSmall: TextStyle(
    color: TBTColor.black1F2A,
    fontWeight: FontWeight.w600,
    fontSize: 18,
  ),
  titleLarge: TextStyle(
    color: TBTColor.black1F2A,
    fontWeight: FontWeight.w600,
    fontSize: 18,
  ),
  titleMedium: TextStyle(
    color: TBTColor.black1F2A,
    fontWeight: FontWeight.w400,
    fontSize: 16,
  ),
  titleSmall: TextStyle(
    color: TBTColor.black1F2A,
    fontWeight: FontWeight.w400,
    fontSize: 14,
  ),
  bodyLarge: TextStyle(
    color: TBTColor.black1F2A,
    fontWeight: FontWeight.w400,
    fontSize: 16,
  ),
  bodyMedium: TextStyle(
    color: TBTColor.black1F2A,
    fontWeight: FontWeight.w400,
    fontSize: 14,
  ),
  bodySmall: TextStyle(
    color: TBTColor.greyA4AF,
    fontWeight: FontWeight.w400,
    fontSize: 14,
  ),
  labelLarge: TextStyle(
    color: TBTColor.greyA4AF,
    fontWeight: FontWeight.w400,
    fontSize: 12,
  ),
  labelMedium: TextStyle(
    color: TBTColor.greyA4AF,
    fontWeight: FontWeight.w400,
    fontSize: 10,
  ),
  labelSmall: TextStyle(
    color: TBTColor.greyA4AF,
    fontWeight: FontWeight.w400,
    fontSize: 8,
  ),
);