Here is the code I am trying
@import "~variables";
:root
{
--color-primary: map-get($colors, blue);
}
button {
background: var(--color-primary);
}
in variables I have
$colors: (
black : #000000,
white : #FFFFFF,
blue: : #888888
}
Unfortunately it doesn't work, my buttons aren't blue. As scss is precompiled, I thought that would just work nicely.