Currently, I am in the process of modifying some variables for my customized version of Bootstrap. At the moment, I have the Bootstrap SCSS files along with my own variables file. This is how my file appears:
@import "/path/to/bootstrap";
$blue: #42a5f5;
$indigo: #5c6bc0;
more styles here…
Despite this setup, when I execute
sass /path/to/custom.scss /path/to/output.css
, the output still reflects the default Bootstrap files as follows:
:root {
--blue: #007bff;
--indigo: #6610f2;
more styles here…
I am puzzled as to why this is happening. Any insights into this issue?