From 7c6c9b764c73e52ccd82c11aaf389eb5de249c7e Mon Sep 17 00:00:00 2001 From: Ankit Mahato Date: Sat, 27 Sep 2025 14:23:50 +0530 Subject: [PATCH] Update typography.dart --- packages/apidash_design_system/lib/tokens/typography.dart | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/apidash_design_system/lib/tokens/typography.dart b/packages/apidash_design_system/lib/tokens/typography.dart index 15f3a827..b1cc5815 100644 --- a/packages/apidash_design_system/lib/tokens/typography.dart +++ b/packages/apidash_design_system/lib/tokens/typography.dart @@ -22,3 +22,10 @@ const kFormDataButtonLabelTextStyle = TextStyle( overflow: TextOverflow.ellipsis, ); const kTextStylePopupMenuItem = TextStyle(fontSize: 14); + +const kTextStyleSmall = TextStyle(fontSize: 12); +const kTextStyleMedium = TextStyle(fontSize: 14); +const kTextStyleLarge = TextStyle(fontSize: 16); +const kTextStyleXLarge = TextStyle(fontSize: 18); +const kTextStyleXXLarge = TextStyle(fontSize: 20); +const kTextStyleXXXLarge = TextStyle(fontSize: 22);