textTheme static method

TextTheme textTheme(
  1. ColorScheme colorScheme
)

Implementation

static TextTheme textTheme(ColorScheme colorScheme) => TextTheme(
      bodyLarge: TextStyle(
        color: appTheme.whiteA700,
        fontSize: 16.fSize,
        fontFamily: 'Figtree',
        fontWeight: FontWeight.w400,
      ),
      displaySmall: TextStyle(
        color: appTheme.whiteA700,
        fontSize: 34.fSize,
        fontFamily: 'Figtree',
        fontWeight: FontWeight.w500,
      ),
      labelLarge: TextStyle(
        color: appTheme.gray500,
        fontSize: 12.fSize,
        fontFamily: 'Figtree',
        fontWeight: FontWeight.w500,
      ),
      titleLarge: TextStyle(
        color: appTheme.whiteA700,
        fontSize: 20.fSize,
        fontFamily: 'Figtree',
        fontWeight: FontWeight.w400,
      ),
      titleMedium: TextStyle(
        color: appTheme.whiteA700,
        fontSize: 17.fSize,
        fontFamily: 'Figtree',
        fontWeight: FontWeight.w600,
      ),
      titleSmall: TextStyle(
        color: appTheme.whiteA700,
        fontSize: 14.fSize,
        fontFamily: 'SF Compact',
        fontWeight: FontWeight.w500,
      ),
    );