diff --git a/app/src/main/java/me/ash/reader/ui/component/FeedIcon.kt b/app/src/main/java/me/ash/reader/ui/component/FeedIcon.kt index 52e162b..5e5c13b 100644 --- a/app/src/main/java/me/ash/reader/ui/component/FeedIcon.kt +++ b/app/src/main/java/me/ash/reader/ui/component/FeedIcon.kt @@ -76,9 +76,11 @@ private fun FontIcon(size: Dp, feedName: String) { ) { Text( text = feedName.ifEmpty { " " }.first().toString(), - fontWeight = FontWeight.Bold, - color = MaterialTheme.colorScheme.onPrimary, - fontSize = 10.sp, + style = MaterialTheme.typography.bodyMedium.merge( + color = MaterialTheme.colorScheme.onPrimary, + fontSize = 10.sp, + fontWeight = FontWeight.Bold, + ) ) } }