fix(payment): set text field foreground color to brandDark for card input fields

This commit is contained in:
Daniel Arantes Loverde
2026-06-04 15:28:20 -03:00
parent a319a8f534
commit c31875ec3b

View File

@@ -931,6 +931,7 @@ struct PaymentCardView: View {
HStack(spacing: 8) { HStack(spacing: 8) {
TextField(placeholder, text: text) TextField(placeholder, text: text)
.appNoAutoCap() .appNoAutoCap()
.foregroundStyle(AppColors.brandDark)
if let brandLogo, brandLogo.isEmpty == false { if let brandLogo, brandLogo.isEmpty == false {
Image(brandLogo) Image(brandLogo)
.resizable() .resizable()