Hey John,
To change the label color for all input fields in a Mendix app, the best way is to update the $label-color variable in the custom-variables.scss file.
Then, in main.scss, make sure to import this file before atlas_core. After that, run npm run build to apply the changes.
If you're not using SCSS, you can add this line to main.scss or custom.css:label.control-label { color: #FF5733 !important; }
It’s better to do it this way instead of adding styles to each page, so everything stays consistent and easy to manage.
Regards
Reemali Patil
Many thanks Reemali