Change colour of form label

Hi team, I am wondering how can I change the colour of the label of a custom forms.

I’d like to go for white as this grey label is barely visible with my dark background :slight_smile:
It doesn’t seem to be possible natively, is there a snippet that could help?

Screenshot 2023-03-08 at 15.18.29

Hi Guillaume,

Here it is, just change the id of the form:

<style>
#form1 .form-input-label {
    color: white;
}
</style>

To be inserted in the header code of the page settings -

2 Likes

This is perfect thank you so much Matthieu!!