Skip to content

Instantly share code, notes, and snippets.

@renanboni
Created December 18, 2022 20:12
Show Gist options
  • Save renanboni/9c253b7ff25869eaf2cc639a3cff407d to your computer and use it in GitHub Desktop.
Save renanboni/9c253b7ff25869eaf2cc639a3cff407d to your computer and use it in GitHub Desktop.
data class QuivonTypography(
val tinyText: TextStyle = TextStyle(
fontFamily = Montserrat,
fontSize = 10.sp,
lineHeight = 18.sp
),
val smallText: TextStyle = TextStyle(
fontFamily = Montserrat,
fontSize = 12.sp,
lineHeight = 18.sp
),
val normalText: TextStyle = TextStyle(
fontFamily = Montserrat,
fontSize = 14.sp,
lineHeight = 18.sp,
),
val largeText: TextStyle = TextStyle(
fontFamily = Montserrat,
fontSize = 16.sp,
lineHeight = 18.sp
),
val extraLargeText: TextStyle = TextStyle(
fontFamily = Montserrat,
fontSize = 18.sp,
lineHeight = 18.sp
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment