Colors
You can change the default colors via variables from SCSS
- Download the project’s zip
- Make sure you have node.js (https://nodejs.org/en/) installed
- Type
npm install
in terminal/console in the source folder wherepackage.json
is located - You can find the colors in
assets/scss/paper-dashboard/_variables.scss
starting with line 51 where is the primary color set:$primary-color: #f96332 !default
. - Run in terminal
gulp compile-scss
for a single compilation orgulp watch
for continous compilation of the changes that you make in*.scss
files. This command should be run in the same folder wheregulpfile.js
andpackage.json
are located