I'm using Blueprint.js v3.x and have been making use of the SASS variables. I want to leverage the $ns
variable, but my app is in dark mode. The $ns
variable is set to bp3 !default;
on line 10 of the file above, which from what I understand means I can set it to a different value in my app.scss
. It would be fine, then, to just set $ns: bp3-dark;
and use this variable that way. However, in the future I want to support a dark/light mode switch; how can I, following best practice, dynamically set $ns
to be the correct value based on said switch?
Blueprint.js dynamic $ns variable in scss
340 Views Asked by sapphyra At
1
After further consideration, it seems that I am not entirely clear on the fundamentals of why the
$ns
variable exists: rather than trying to use it to reference whether the app is in dark or light mode, it makes more sense to use it thus (SCSS):Essentially, the
$ns
variable is used to point tobp3
to allow for future-proofing of your SASS. Changing it tobp3-dark
or any other value would defeat this purpose.