Android app module for Zeichen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
798 B

  1. package sh.modal.apps.zeichen.ui.theme
  2. import androidx.compose.material.Typography
  3. import androidx.compose.ui.text.TextStyle
  4. import androidx.compose.ui.text.font.FontFamily
  5. import androidx.compose.ui.text.font.FontWeight
  6. import androidx.compose.ui.unit.sp
  7. // Set of Material typography styles to start with
  8. val Typography = Typography(
  9. body1 = TextStyle(
  10. fontFamily = FontFamily.Default,
  11. fontWeight = FontWeight.Normal,
  12. fontSize = 16.sp
  13. )
  14. /* Other default text styles to override
  15. button = TextStyle(
  16. fontFamily = FontFamily.Default,
  17. fontWeight = FontWeight.W500,
  18. fontSize = 14.sp
  19. ),
  20. caption = TextStyle(
  21. fontFamily = FontFamily.Default,
  22. fontWeight = FontWeight.Normal,
  23. fontSize = 12.sp
  24. )
  25. */
  26. )