• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.example.minimaloboe.ui.theme
2 
3 import androidx.compose.material.Typography
4 import androidx.compose.ui.text.TextStyle
5 import androidx.compose.ui.text.font.FontFamily
6 import androidx.compose.ui.text.font.FontWeight
7 import androidx.compose.ui.unit.sp
8 
9 // Set of Material typography styles to start with
10 val Typography = Typography(
11     body1 = TextStyle(
12         fontFamily = FontFamily.Default,
13         fontWeight = FontWeight.Normal,
14         fontSize = 24.sp
15     ),
16     button = TextStyle(
17         fontFamily = FontFamily.Default,
18         fontWeight = FontWeight.W500,
19         fontSize = 20.sp
20     )
21 )
22