diff --git a/features/onramp/impl/src/main/kotlin/com/tangem/features/onramp/paymentmethod/ui/PaymentMethodIcon.kt b/features/onramp/impl/src/main/kotlin/com/tangem/features/onramp/paymentmethod/ui/PaymentMethodIcon.kt index af5efaae8a..18e7c56005 100644 --- a/features/onramp/impl/src/main/kotlin/com/tangem/features/onramp/paymentmethod/ui/PaymentMethodIcon.kt +++ b/features/onramp/impl/src/main/kotlin/com/tangem/features/onramp/paymentmethod/ui/PaymentMethodIcon.kt @@ -9,6 +9,7 @@ import androidx.compose.ui.draw.clip import androidx.compose.ui.platform.LocalContext import coil.compose.SubcomposeAsyncImage import coil.request.ImageRequest +import com.tangem.core.ui.res.TangemColorPalette import com.tangem.core.ui.res.TangemTheme @Composable @@ -17,7 +18,7 @@ internal fun PaymentMethodIcon(imageUrl: String, modifier: Modifier = Modifier) modifier = modifier .size(TangemTheme.dimens.size40) .clip(TangemTheme.shapes.roundedCorners8) - .background(TangemTheme.colors.background.secondary) + .background(TangemColorPalette.Light1) .padding(TangemTheme.dimens.spacing6), model = ImageRequest.Builder(context = LocalContext.current) .data(imageUrl)