Use TextField.init(text:prompt:axis:label:) to set a placeholder value for a text field + control the color of the placeholder text:
TextField(text: $email, axis: .horizontal, label: {
Text("Email")
.foregroundColor(.red)
})
.foregroundColor(.white)