Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-23 19:22:39 +02:00
parent 9c4bc63281
commit 91f7ed4b24
2 changed files with 3 additions and 3 deletions

View file

@ -128,7 +128,7 @@ private fun InfoPointV2(infoPointUM: InfoPointUM, modifier: Modifier = Modifier)
},
),
tint = when (infoPointUM.change) {
InfoPointUM.ChangeType.UP -> TangemTheme.colors2.markers.iconGreen
InfoPointUM.ChangeType.UP -> TangemTheme.colors2.markers.iconBlue
InfoPointUM.ChangeType.DOWN -> TangemTheme.colors2.markers.iconRed
},
contentDescription = null,

View file

@ -311,9 +311,9 @@ private fun RatingChangeIndicator(change: MarketRatingChange24H) {
when (change) {
is MarketRatingChange24H.Up -> RatingChangeContent(
iconRes = R.drawable.ic_arrow_up_8,
iconTint = TangemTheme.colors2.markers.iconGreen,
iconTint = TangemTheme.colors2.markers.iconBlue,
changeValue = change.changeValue.toString(),
textColor = TangemTheme.colors2.text.status.positive,
textColor = TangemTheme.colors2.text.status.accent,
)
is MarketRatingChange24H.Down -> RatingChangeContent(
iconRes = R.drawable.ic_arrow_down_8,