diff --git a/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/active/DefaultYieldSupplyActiveComponent.kt b/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/active/DefaultYieldSupplyActiveComponent.kt index eee5a64f8e..dc62882ed0 100644 --- a/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/active/DefaultYieldSupplyActiveComponent.kt +++ b/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/active/DefaultYieldSupplyActiveComponent.kt @@ -72,7 +72,7 @@ internal class DefaultYieldSupplyActiveComponent @AssistedInject constructor( Column( modifier = Modifier - .background(TangemTheme.colors.background.secondary) + .background(TangemTheme.colors.background.tertiary) .fillMaxSize() .systemBarsPadding(), ) { diff --git a/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/active/ui/YieldSupplyActiveTitle.kt b/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/active/ui/YieldSupplyActiveTitle.kt index df0f79c6cb..88abd188cf 100644 --- a/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/active/ui/YieldSupplyActiveTitle.kt +++ b/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/active/ui/YieldSupplyActiveTitle.kt @@ -25,6 +25,7 @@ internal fun YieldSupplyActiveTitle(onCloseClick: () -> Unit) { Icon( imageVector = ImageVector.vectorResource(R.drawable.ic_close_24), contentDescription = null, + tint = TangemTheme.colors.icon.primary1, modifier = Modifier .padding(16.dp) .clickable( diff --git a/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/promo/ui/YieldSupplyPromoContent.kt b/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/promo/ui/YieldSupplyPromoContent.kt index 5092260b9c..868ebb1473 100644 --- a/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/promo/ui/YieldSupplyPromoContent.kt +++ b/features/yield-supply/impl/src/main/java/com/tangem/features/yield/supply/impl/promo/ui/YieldSupplyPromoContent.kt @@ -101,6 +101,7 @@ private fun ColumnScope.Content(yieldSupplyPromoUM: YieldSupplyPromoUM, clickInt Text( text = yieldSupplyPromoUM.title.resolveReference(), style = TangemTheme.typography.h2, + textAlign = TextAlign.Center, color = TangemTheme.colors.text.primary1, ) SpacerH8()