I\'m currently developing a web application in Outsystems in which I have the need to customize the CSS, in which I\'m using variables. I need to guarantee the app works cro
I recommend setting your css variables as sass variables, then using sass interpolation to render the color in your elements.
:root { --text-color: #123456; } $text-color: var(--text-color); body { color: #{$text-color}; }