The Stratos template uses CSS Variables declared in template.css:
--gradient-color-1: #ff00fb;
--gradient-color-2: #802bff}
How can I change the values of these variables in user.css without changing template.css?
I managed to change the color values at a specific location without any problems by using user.css.
However, these color values occur in many different places. I would therefore like to change the value of the variable itself so that I can change all occurring color values with a single entry in user.css.
How can I manage this?