textTheme static method
Implementation
static TextTheme textTheme(ColorScheme colorScheme) => TextTheme(
bodyMedium: TextStyle(
color: appTheme.gray700,
fontSize: 14,
fontFamily: 'Montserrat',
fontWeight: FontWeight.w400,
),
bodySmall: TextStyle(
color: colorScheme.onSecondaryContainer,
fontSize: 12,
fontFamily: 'Montserrat',
fontWeight: FontWeight.w400,
),
labelLarge: TextStyle(
color: colorScheme.primary.withOpacity(1),
fontSize: 12,
fontFamily: 'Lato',
fontWeight: FontWeight.w600,
),
labelMedium: TextStyle(
color: appTheme.gray20001,
fontSize: 10,
fontFamily: 'Montserrat',
fontWeight: FontWeight.w600,
),
titleMedium: TextStyle(
color: colorScheme.primary.withOpacity(1),
fontSize: 16,
fontFamily: 'Lato',
fontWeight: FontWeight.w600,
),
titleSmall: TextStyle(
color: colorScheme.primary.withOpacity(1),
fontSize: 14,
fontFamily: 'Montserrat',
fontWeight: FontWeight.w700,
),
);