Currently, I am working on a react app and I have successfully integrated Bootstrap React.
One of the tasks I wanted to accomplish was changing the primary color from the default blue to a different shade. To do this, I navigated to bootstrap/scss/variable.scss
Within the file, I made the necessary change by updating the code to the following:
$blue: #445448 !default;
By changing the value of $primary: $blue !default;
, I expected the primary color to reflect the new shade but it still shows as blue.
After trying to troubleshoot the issue, I stopped the server, ran npm start
again but unfortunately, the changes were not reflected.