I've been searching for a solution to this problem for half a day now. My goal is to change the value of the $primary variable from the default $blue to the $orange variable. I tried following the instructions in the documentation:
$primary: red;
@import '../bootstrap-5.2.3/scss/_variables';
@import "../bootstrap-5.2.3/scss/bootstrap";
Although this method works, it's not exactly what I need. What I really want to do is assign one variable to another variable like so:
@import '../bootstrap-5.2.3/scss/_variables';
@import "../bootstrap-5.2.3/scss/bootstrap";
$primary: $orange;
No matter how I try to achieve this, whether by importing bootstrap before or after the declaration, I can't seem to get the $primary variable to be assigned the value of $orange after compiling to css.
What am I missing here? Thank you.