I have different styles set in a _variables.scss file. like
$secondary: #ffc500;
$tertiary: #ffdd69;
$quartiary: #fffbed;
I want to use different body colors so I want to change the body background in different pages like so:
document.body.style.backgroundColor = "red" });
this works nicely but now i want to use for example $primary instead of 'red' I just can't make it work. does anybody have an idea?