I am learning Sass and trying to customize the Bulma CSS framework. I am trying to make it purple but it isn't working.
I have run npm init and installed Bulma and node-sass.
My sass file: -
@import "node_modules/bulma/bulma";
$purple: #8A4D76;
$primary: $purple;
body {
background: aquamarine;
margin: 0;
}
The script part of the package.json file: -
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"sass": "node-sass scss/ -o dist/css/"
}
I have created a button on which I have given is-primary class. I am getting the default Bulma green color but I am not getting the customized purple color. How should I proceed?