From 8f639cbc600e909ed9ca1c48a35e28e54177ebd7 Mon Sep 17 00:00:00 2001 From: Tangem Date: Tue, 26 Sep 2023 15:45:12 +0300 Subject: [PATCH] Updated on 2026-08-14 --- .../tokendetails/ui/components/TokenDetailsBalanceBlock.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/components/TokenDetailsBalanceBlock.kt b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/components/TokenDetailsBalanceBlock.kt index 9e2b59dc9e..2a3cf30680 100644 --- a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/components/TokenDetailsBalanceBlock.kt +++ b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/components/TokenDetailsBalanceBlock.kt @@ -36,7 +36,7 @@ internal fun TokenDetailsBalanceBlock(state: TokenDetailsBalanceBlockState, modi ), text = stringResource(id = R.string.onboarding_balance_title), color = TangemTheme.colors.text.tertiary, - style = TangemTheme.typography.body2, + style = TangemTheme.typography.subtitle2, maxLines = 1, ) FiatBalance( @@ -98,13 +98,13 @@ private fun CryptoBalance(state: TokenDetailsBalanceBlockState, modifier: Modifi modifier = modifier, text = if (state.isBalanceHidden) DOTS else state.cryptoBalance, style = TangemTheme.typography.caption, - color = TangemTheme.colors.text.primary1, + color = TangemTheme.colors.text.tertiary, ) is TokenDetailsBalanceBlockState.Error -> Text( modifier = modifier, text = BigDecimalFormatter.EMPTY_BALANCE_SIGN, style = TangemTheme.typography.caption, - color = TangemTheme.colors.text.primary1, + color = TangemTheme.colors.text.tertiary, ) } }