darkTextTheme property
TextTheme
get
darkTextTheme
text theme
Implementation
TextTheme get darkTextTheme {
return TextTheme(
titleLarge: AppTextStyles.titleLarge.copyWith(
color: AppColors.suface,
fontSize: 20,
),
titleMedium: AppTextStyles.titleMedium.copyWith(
color: AppColors.suface,
fontSize: 18,
),
titleSmall: AppTextStyles.titleSmall.copyWith(
color: AppColors.suface,
fontSize: 16,
),
bodyLarge: AppTextStyles.bodyLarge.copyWith(
color: AppColors.suface,
fontSize: 15,
),
bodyMedium: AppTextStyles.bodyMedium.copyWith(
color: AppColors.suface,
fontSize: 14,
),
bodySmall: AppTextStyles.bodySmall.copyWith(
color: AppColors.suface,
fontSize: 13,
),
labelLarge: AppTextStyles.bodyLarge.copyWith(
color: AppColors.hint,
fontSize: 14,
),
labelMedium: AppTextStyles.bodyMedium.copyWith(
color: AppColors.hint,
fontSize: 13,
),
labelSmall: AppTextStyles.bodySmall.copyWith(
color: AppColors.hint,
fontSize: 10,
),
);
}