From 095c451aa4e84d10940252eb15499c03c691459c Mon Sep 17 00:00:00 2001 From: Abdelilah El Aissaoui Date: Tue, 18 Oct 2022 22:40:42 +0200 Subject: [PATCH] Reduced font size by 1 dp --- src/main/kotlin/com/jetpackduba/gitnuro/theme/Typography.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/com/jetpackduba/gitnuro/theme/Typography.kt b/src/main/kotlin/com/jetpackduba/gitnuro/theme/Typography.kt index a876bdb..55db1e9 100644 --- a/src/main/kotlin/com/jetpackduba/gitnuro/theme/Typography.kt +++ b/src/main/kotlin/com/jetpackduba/gitnuro/theme/Typography.kt @@ -44,17 +44,17 @@ fun typography(composeColors: Colors) = Typography( letterSpacing = LETTER_SPACING.sp, ), h4 = TextStyle( - fontSize = 17.sp, + fontSize = 16.sp, color = composeColors.onBackground, letterSpacing = LETTER_SPACING.sp, ), body1 = TextStyle( - fontSize = 15.sp, + fontSize = 14.sp, color = composeColors.onBackground, letterSpacing = LETTER_SPACING.sp, ), body2 = TextStyle( - fontSize = 13.sp, + fontSize = 12.sp, color = composeColors.onBackground, fontWeight = FontWeight.Normal, letterSpacing = LETTER_SPACING.sp,