30 lines
809 B
Dart
30 lines
809 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'app_colors.dart';
|
|
|
|
class AppTextStyles {
|
|
static TextStyle get headlineLarge => GoogleFonts.vazirmatn(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
color: AppColors.textPrimary,
|
|
);
|
|
|
|
static TextStyle get headlineMedium => GoogleFonts.vazirmatn(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.bold,
|
|
color: AppColors.textPrimary,
|
|
);
|
|
|
|
static TextStyle get bodyLarge =>
|
|
GoogleFonts.vazirmatn(fontSize: 16, color: AppColors.textPrimary);
|
|
|
|
static TextStyle get bodyMedium =>
|
|
GoogleFonts.vazirmatn(fontSize: 14, color: AppColors.textSecondary);
|
|
|
|
static TextStyle get button => GoogleFonts.vazirmatn(
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.white,
|
|
);
|
|
}
|