import 'package:flutter/cupertino.dart';

class AppTextStyles {
  final fontFamilyFellix = 'Fellix';

  late final _heading = TextStyle(letterSpacing: 0, fontFamily: fontFamilyFellix);

  late final headingMedium = _heading.copyWith(fontSize: 18, fontWeight: FontWeight.w600);
  late final headingSmall = _heading.copyWith(fontSize: 16, fontWeight: FontWeight.w600);
  late final body = _heading.copyWith(fontSize: 14, fontWeight: FontWeight.w500);
  late final bodySmall = _heading.copyWith(fontSize: 12, fontWeight: FontWeight.w500);
}