diff --git a/composeApp/src/commonMain/kotlin/com/pixelized/desktop/lwa/ui/theme/typography/LwaTypography.kt b/composeApp/src/commonMain/kotlin/com/pixelized/desktop/lwa/ui/theme/typography/LwaTypography.kt index 5ebbabc..740fa28 100644 --- a/composeApp/src/commonMain/kotlin/com/pixelized/desktop/lwa/ui/theme/typography/LwaTypography.kt +++ b/composeApp/src/commonMain/kotlin/com/pixelized/desktop/lwa/ui/theme/typography/LwaTypography.kt @@ -18,7 +18,6 @@ import androidx.compose.ui.text.style.TextAlign import androidx.compose.ui.unit.sp import com.pixelized.desktop.lwa.ui.theme.color.LwaColors import com.pixelized.desktop.lwa.ui.theme.typography.LwaTypography.Settings -import com.pixelized.shared.lwa.model.inventory.Inventory import lwacharactersheet.composeapp.generated.resources.Res import lwacharactersheet.composeapp.generated.resources.consola_mono_bold import lwacharactersheet.composeapp.generated.resources.consola_mono_book @@ -73,16 +72,14 @@ fun lwaTypography( base: Typography = Typography(), colors: LwaColors, ): LwaTypography { - val jack = ConsolaFontFamily() + val consolaFontFamily = ConsolaFontFamily() - return remember( - jack, - ) { + return remember(consolaFontFamily) { LwaTypography( base = base, chat = LwaTypography.Chat( timestamp = base.body1.copy( - fontFamily = jack, + fontFamily = consolaFontFamily, fontWeight = FontWeight.Normal, fontSize = 12.sp, lineHeight = 16.sp,