1 package com.example.samplepip.ui.theme
2 
3 import androidx.compose.material3.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   bodyLarge = TextStyle(
12     fontFamily = FontFamily.Default,
13     fontWeight = FontWeight.Normal,
14     fontSize = 16.sp
15   )
16   /* Other default text styles to override
17     button = TextStyle(
18         fontFamily = FontFamily.Default,
19         fontWeight = FontWeight.W500,
20         fontSize = 14.sp
21     ),
22     caption = TextStyle(
23         fontFamily = FontFamily.Default,
24         fontWeight = FontWeight.Normal,
25         fontSize = 12.sp
26     )
27     */
28 )