Hi Sven,
Due to the nature of scss, it's not possible to do so. Browsers cannot read scss, so all scss is converted into css before it is sent to the browser.
However, what you can do is use css variables as an scss variable. Your variable would look something like this:
$colorvariable: var(--user-color);
You can then define this color in the :root:
:root {
--user-color: white;
}
If you want to change it, you can call a JavaScript action from a nanoflow to change the variable definition:
root.style.setProperty('--user-color', "#acacea");