Mobile Payments Typography
data class MobilePaymentsTypography(val button: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(),
fontSize = 16.sp,
color = MobilePaymentsStyleProvider.colors.getLightText(),
), val header: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(),
fontSize = 24.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), val bodyXLarge: TextStyle = TextStyle(
fontWeight = FontWeight.Normal,
fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(),
fontSize = 18.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), val bodyXLargeBold: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(),
fontSize = 18.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), val bodyLarge: TextStyle = TextStyle(
fontWeight = FontWeight.Normal,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 16.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), val bodyLargeBold: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 16.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), val bodyMedium: TextStyle = TextStyle(
fontWeight = FontWeight.Normal,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 14.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), val bodyMediumBold: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 14.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), val bodySmall: TextStyle = TextStyle(
fontWeight = FontWeight.Normal,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 12.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), val bodySmallBold: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 12.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
))(source)
Constructors
Link copied to clipboard
constructor(button: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(),
fontSize = 16.sp,
color = MobilePaymentsStyleProvider.colors.getLightText(),
), header: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(),
fontSize = 24.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), bodyXLarge: TextStyle = TextStyle(
fontWeight = FontWeight.Normal,
fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(),
fontSize = 18.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), bodyXLargeBold: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(),
fontSize = 18.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), bodyLarge: TextStyle = TextStyle(
fontWeight = FontWeight.Normal,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 16.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), bodyLargeBold: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 16.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), bodyMedium: TextStyle = TextStyle(
fontWeight = FontWeight.Normal,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 14.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), bodyMediumBold: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 14.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), bodySmall: TextStyle = TextStyle(
fontWeight = FontWeight.Normal,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 12.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
), bodySmallBold: TextStyle = TextStyle(
fontWeight = FontWeight.Bold,
fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(),
fontSize = 12.sp,
color = MobilePaymentsStyleProvider.colors.getDarkText(),
))