1 package com.android.graphics.bufferstreamsdemoapp.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 lineHeight = 24.sp, 16 letterSpacing = 0.5.sp 17 ) 18 )