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