textTheme property
TextTheme
get
textTheme
Implementation
static TextTheme get textTheme => TextTheme(
displayLarge: GoogleFonts.inter(
fontSize: 56,
fontWeight: FontWeight.bold,
color: SubZeroColors.textPrimary,
height: 1.1,
),
displayMedium: GoogleFonts.inter(
fontSize: 48,
fontWeight: FontWeight.bold,
color: SubZeroColors.textPrimary,
height: 1.1,
),
displaySmall: GoogleFonts.inter(
fontSize: 36,
fontWeight: FontWeight.w600,
color: SubZeroColors.textPrimary,
height: 1.2,
),
headlineLarge: GoogleFonts.inter(
fontSize: 32,
fontWeight: FontWeight.w600,
color: SubZeroColors.textPrimary,
height: 1.25,
),
headlineMedium: GoogleFonts.inter(
fontSize: 28,
fontWeight: FontWeight.w600,
color: SubZeroColors.textPrimary,
height: 1.3,
),
headlineSmall: GoogleFonts.inter(
fontSize: 24,
fontWeight: FontWeight.w600,
color: SubZeroColors.textPrimary,
height: 1.35,
),
titleLarge: GoogleFonts.inter(
fontSize: 22,
fontWeight: FontWeight.w600,
color: SubZeroColors.textPrimary,
height: 1.4,
),
titleMedium: GoogleFonts.inter(
fontSize: 18,
fontWeight: FontWeight.w500,
color: SubZeroColors.textPrimary,
height: 1.45,
),
titleSmall: GoogleFonts.inter(
fontSize: 16,
fontWeight: FontWeight.w500,
color: SubZeroColors.textPrimary,
height: 1.5,
),
bodyLarge: GoogleFonts.inter(
fontSize: 16,
fontWeight: FontWeight.normal,
color: SubZeroColors.textSecondary,
height: 1.5,
),
bodyMedium: GoogleFonts.inter(
fontSize: 14,
fontWeight: FontWeight.normal,
color: SubZeroColors.textSecondary,
height: 1.5,
),
bodySmall: GoogleFonts.inter(
fontSize: 12,
fontWeight: FontWeight.normal,
color: SubZeroColors.textTertiary,
height: 1.5,
),
labelLarge: GoogleFonts.inter(
fontSize: 14,
fontWeight: FontWeight.w600,
color: SubZeroColors.textPrimary,
letterSpacing: 0.5,
),
labelMedium: GoogleFonts.inter(
fontSize: 12,
fontWeight: FontWeight.w600,
color: SubZeroColors.textPrimary,
letterSpacing: 0.5,
),
labelSmall: GoogleFonts.inter(
fontSize: 11,
fontWeight: FontWeight.w600,
color: SubZeroColors.textSecondary,
letterSpacing: 0.5,
),
);