createTypography

fun createTypography(defaultFontFamily: FontFamily = FontFamily.Default, defaultPlatformTextStyle: PlatformTextStyle? = PlatformTextStyle(includeFontPadding = false), defaultLineHeightStyle: LineHeightStyle? = LineHeightStyle( LineHeightStyle.Alignment.Center, LineHeightStyle.Trim.None, ), title1: TextStyle = TextStyle( fontWeight = FontWeight.Bold, fontSize = 28.sp, lineHeight = 32.sp, ), title2: TextStyle = TextStyle( fontWeight = FontWeight.Medium, fontSize = 22.sp, lineHeight = 28.sp, ), title3: TextStyle = TextStyle( fontWeight = FontWeight.Medium, fontSize = 18.sp, lineHeight = 24.sp, ), title4: TextStyle = TextStyle( fontWeight = FontWeight.Bold, fontSize = 16.sp, lineHeight = 20.sp, ), title5: TextStyle = TextStyle( fontWeight = FontWeight.Bold, fontSize = 15.sp, lineHeight = 20.sp, ), title6: TextStyle = TextStyle( fontWeight = FontWeight.Bold, fontSize = 13.sp, lineHeight = 16.sp, ), bodyExtraLarge: TextStyle = TextStyle( fontWeight = FontWeight.Normal, fontSize = 18.sp, lineHeight = 24.sp, ), bodyLarge: TextStyle = TextStyle( fontWeight = FontWeight.Normal, fontSize = 16.sp, lineHeight = 22.sp, ), bodyNormal: TextStyle = TextStyle( fontWeight = FontWeight.Normal, fontSize = 15.sp, lineHeight = 20.sp, ), bodySmall: TextStyle = TextStyle( fontWeight = FontWeight.Normal, fontSize = 13.sp, lineHeight = 16.sp, )): Typography