How can we change the color of the pre-filled form text?

As described in the title. Currently its light grey and I can’t find the option to change it.

Via CSS currently:

<style>
::placeholder {
  color: red;
  opacity: 1;
}
</style>
3 Likes

Thank you @duncan, cheers.