2025-08-12 15:18:38 +07:00
|
|
|
part of 'theme.dart';
|
|
|
|
|
|
|
|
|
|
class AppStyle {
|
2025-08-12 16:12:36 +07:00
|
|
|
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);
|
|
|
|
|
|
2025-08-12 17:13:02 +07:00
|
|
|
static TextStyle lg = TextStyle(color: AppColor.textPrimary, fontSize: 16);
|
2025-08-12 16:12:36 +07:00
|
|
|
|
2025-08-12 17:13:02 +07:00
|
|
|
static TextStyle xl = TextStyle(color: AppColor.textPrimary, fontSize: 18);
|
2025-08-12 16:12:36 +07:00
|
|
|
|
2025-08-12 17:13:02 +07:00
|
|
|
static TextStyle xxl = TextStyle(color: AppColor.textPrimary, fontSize: 20);
|
2025-08-12 16:12:36 +07:00
|
|
|
|
2025-08-12 17:13:02 +07:00
|
|
|
static TextStyle h6 = TextStyle(color: AppColor.textPrimary, fontSize: 22);
|
2025-08-12 16:12:36 +07:00
|
|
|
|
2025-08-12 17:13:02 +07:00
|
|
|
static TextStyle h5 = TextStyle(color: AppColor.textPrimary, fontSize: 24);
|
2025-08-12 16:12:36 +07:00
|
|
|
|
2025-08-12 17:13:02 +07:00
|
|
|
static TextStyle h4 = TextStyle(color: AppColor.textPrimary, fontSize: 26);
|
2025-08-12 16:12:36 +07:00
|
|
|
|
2025-08-12 17:13:02 +07:00
|
|
|
static TextStyle h3 = TextStyle(color: AppColor.textPrimary, fontSize: 28);
|
2025-08-12 16:12:36 +07:00
|
|
|
|
2025-08-12 17:13:02 +07:00
|
|
|
static TextStyle h2 = TextStyle(color: AppColor.textPrimary, fontSize: 30);
|
2025-08-12 16:12:36 +07:00
|
|
|
|
2025-08-12 17:13:02 +07:00
|
|
|
static TextStyle h1 = TextStyle(color: AppColor.textPrimary, fontSize: 32);
|
2025-08-12 15:18:38 +07:00
|
|
|
}
|