|
|
|
@ -90,14 +90,15 @@ internal val NiaTypography = Typography(
|
|
|
|
|
lineHeight = 20.sp,
|
|
|
|
|
letterSpacing = 0.1.sp,
|
|
|
|
|
),
|
|
|
|
|
// Default text style
|
|
|
|
|
bodyLarge = TextStyle(
|
|
|
|
|
fontWeight = FontWeight.Normal,
|
|
|
|
|
fontSize = 16.sp,
|
|
|
|
|
lineHeight = 24.sp,
|
|
|
|
|
letterSpacing = 0.5.sp,
|
|
|
|
|
lineHeightStyle = LineHeightStyle(
|
|
|
|
|
alignment = Alignment.Bottom,
|
|
|
|
|
trim = Trim.Both,
|
|
|
|
|
alignment = Alignment.Center,
|
|
|
|
|
trim = Trim.None,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
bodyMedium = TextStyle(
|
|
|
|
@ -112,30 +113,37 @@ internal val NiaTypography = Typography(
|
|
|
|
|
lineHeight = 16.sp,
|
|
|
|
|
letterSpacing = 0.4.sp,
|
|
|
|
|
),
|
|
|
|
|
// Used for Button
|
|
|
|
|
labelLarge = TextStyle(
|
|
|
|
|
fontWeight = FontWeight.Medium,
|
|
|
|
|
fontSize = 14.sp,
|
|
|
|
|
lineHeight = 20.sp,
|
|
|
|
|
letterSpacing = 0.1.sp,
|
|
|
|
|
lineHeightStyle = LineHeightStyle(
|
|
|
|
|
alignment = Alignment.Center,
|
|
|
|
|
trim = Trim.LastLineBottom,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
// Used for Navigation items
|
|
|
|
|
labelMedium = TextStyle(
|
|
|
|
|
fontWeight = FontWeight.Medium,
|
|
|
|
|
fontSize = 12.sp,
|
|
|
|
|
lineHeight = 16.sp,
|
|
|
|
|
letterSpacing = 0.5.sp,
|
|
|
|
|
lineHeightStyle = LineHeightStyle(
|
|
|
|
|
alignment = Alignment.Bottom,
|
|
|
|
|
trim = Trim.None,
|
|
|
|
|
alignment = Alignment.Center,
|
|
|
|
|
trim = Trim.LastLineBottom,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
// Used for Tag
|
|
|
|
|
labelSmall = TextStyle(
|
|
|
|
|
fontWeight = FontWeight.Medium,
|
|
|
|
|
fontSize = 10.sp,
|
|
|
|
|
lineHeight = 14.sp,
|
|
|
|
|
letterSpacing = 0.sp,
|
|
|
|
|
lineHeightStyle = LineHeightStyle(
|
|
|
|
|
alignment = Alignment.Bottom,
|
|
|
|
|
trim = Trim.Both,
|
|
|
|
|
alignment = Alignment.Center,
|
|
|
|
|
trim = Trim.LastLineBottom,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|