28 lines
990 B
Dart
28 lines
990 B
Dart
part of 'theme.dart';
|
|
|
|
class AppStyle {
|
|
static TextStyle xs = const TextStyle(color: AppColor.black, fontSize: 11);
|
|
|
|
static TextStyle sm = const TextStyle(color: AppColor.black, fontSize: 12);
|
|
|
|
static TextStyle md = const TextStyle(color: AppColor.black, fontSize: 14);
|
|
|
|
static TextStyle lg = const TextStyle(color: AppColor.black, fontSize: 16);
|
|
|
|
static TextStyle xl = const TextStyle(color: AppColor.black, fontSize: 18);
|
|
|
|
static TextStyle xxl = const TextStyle(color: AppColor.black, fontSize: 20);
|
|
|
|
static TextStyle h6 = const TextStyle(color: AppColor.black, fontSize: 22);
|
|
|
|
static TextStyle h5 = const TextStyle(color: AppColor.black, fontSize: 24);
|
|
|
|
static TextStyle h4 = const TextStyle(color: AppColor.black, fontSize: 26);
|
|
|
|
static TextStyle h3 = const TextStyle(color: AppColor.black, fontSize: 28);
|
|
|
|
static TextStyle h2 = const TextStyle(color: AppColor.black, fontSize: 30);
|
|
|
|
static TextStyle h1 = const TextStyle(color: AppColor.black, fontSize: 32);
|
|
}
|