import 'package:flutter/material.dart'; /// Application typography using Material 3 type scale class AppTypography { AppTypography._(); // Display Styles static const TextStyle displayLarge = TextStyle( fontSize: 57, fontWeight: FontWeight.w400, letterSpacing: -0.25, ); static const TextStyle displayMedium = TextStyle( fontSize: 45, fontWeight: FontWeight.w400, ); static const TextStyle displaySmall = TextStyle( fontSize: 36, fontWeight: FontWeight.w400, ); // Headline Styles static const TextStyle headlineLarge = TextStyle( fontSize: 32, fontWeight: FontWeight.w400, ); static const TextStyle headlineMedium = TextStyle( fontSize: 28, fontWeight: FontWeight.w400, ); static const TextStyle headlineSmall = TextStyle( fontSize: 24, fontWeight: FontWeight.w400, ); // Title Styles static const TextStyle titleLarge = TextStyle( fontSize: 22, fontWeight: FontWeight.w500, ); static const TextStyle titleMedium = TextStyle( fontSize: 16, fontWeight: FontWeight.w500, letterSpacing: 0.15, ); static const TextStyle titleSmall = TextStyle( fontSize: 14, fontWeight: FontWeight.w500, letterSpacing: 0.1, ); // Body Styles static const TextStyle bodyLarge = TextStyle( fontSize: 16, fontWeight: FontWeight.w400, letterSpacing: 0.5, ); static const TextStyle bodyMedium = TextStyle( fontSize: 14, fontWeight: FontWeight.w400, letterSpacing: 0.25, ); static const TextStyle bodySmall = TextStyle( fontSize: 12, fontWeight: FontWeight.w400, letterSpacing: 0.4, ); // Label Styles static const TextStyle labelLarge = TextStyle( fontSize: 14, fontWeight: FontWeight.w500, letterSpacing: 0.1, ); static const TextStyle labelMedium = TextStyle( fontSize: 12, fontWeight: FontWeight.w500, letterSpacing: 0.5, ); static const TextStyle labelSmall = TextStyle( fontSize: 11, fontWeight: FontWeight.w500, letterSpacing: 0.5, ); }