RouteEditorTextStyles
data class RouteEditorTextStyles(val Primary: TextStyle = TextStyle(
fontSize = 19.sp,
fontWeight = FontWeight.Medium, // 500
color = RouteEditorColors.PrimaryText,
), val Secondary: TextStyle = TextStyle(
fontSize = 15.sp,
fontWeight = FontWeight.Normal, // 400
color = RouteEditorColors.SecondaryText,
), val ETA: TextStyle = TextStyle(
fontSize = 14.sp,
fontWeight = FontWeight.Medium,
color = RouteEditorColors.PrimaryText,
))
Brand text styles with consistent typography
Constructors
Link copied to clipboard
constructor(Primary: TextStyle = TextStyle(
fontSize = 19.sp,
fontWeight = FontWeight.Medium, // 500
color = RouteEditorColors.PrimaryText,
), Secondary: TextStyle = TextStyle(
fontSize = 15.sp,
fontWeight = FontWeight.Normal, // 400
color = RouteEditorColors.SecondaryText,
), ETA: TextStyle = TextStyle(
fontSize = 14.sp,
fontWeight = FontWeight.Medium,
color = RouteEditorColors.PrimaryText,
))