From c31875ec3b077718f9f102cc7c4a83a02fcea596 Mon Sep 17 00:00:00 2001 From: Daniel Arantes Loverde Date: Thu, 4 Jun 2026 15:28:20 -0300 Subject: [PATCH] fix(payment): set text field foreground color to brandDark for card input fields --- pedi-foods/Sources/PediFoods/Views/Main/CheckoutView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/pedi-foods/Sources/PediFoods/Views/Main/CheckoutView.swift b/pedi-foods/Sources/PediFoods/Views/Main/CheckoutView.swift index d5dbf8f..5536527 100644 --- a/pedi-foods/Sources/PediFoods/Views/Main/CheckoutView.swift +++ b/pedi-foods/Sources/PediFoods/Views/Main/CheckoutView.swift @@ -931,6 +931,7 @@ struct PaymentCardView: View { HStack(spacing: 8) { TextField(placeholder, text: text) .appNoAutoCap() + .foregroundStyle(AppColors.brandDark) if let brandLogo, brandLogo.isEmpty == false { Image(brandLogo) .resizable()