I cannot seem to change the colour of the font fro...
# support-questions-legacy
v
I cannot seem to change the colour of the font from black to white when I autocomplete the e-mail field. If I am typing it out, the colour is white. The behaviour applies only for autocomplete and not when I type it out manually
r
Hey!@
Can I see the existing CSS changes you have made?
v
These are the changes
These changes are not applied for autocomplete type fields
r
Can you send it in text form?
You can try:
Copy code
style: {
  input: {
    "&:-webkit-autofill": {
      "-webkit-text-fill-color": "white !important"
    }
  },
},
v
It worked, thankyou!
r
great