I probably got into deadend. I'm trying to override bootstrap scss $primary
variable with own one that I load into a component through a service from external JSON config file (content of this file can vary).
The straightest solution that came to my mind was like this:
ComponentStyles.scss
$primary = {{variableLoadedFromConfigFile}};
Previous solution was static
$primary = blue;
and now I need to change it to dynamic behavior (in sense of loading that value from file).
Is this even possible?
Thanks.