Build Tools
Learn how to use Paper Dashboard 2 Pro using NPM scripts to build your admin theme, compile SCSS, change the colors and more.
Compile SCSS
- Download the project’s zip.
- Make sure you have node.js installed.
- Type
npm install
in terminal/console in the source folder wherepackage.json
is located. - Run in terminal
gulp open-app
for opening the Dashboard Page (default) of the product. You can set in gulpfile.js from your downloaded archive any page you want to open in browser, at line 30:gulp.src('examples/dashboard.html')
. - You can find the colors in
assets/scss/paper-dashboard/_variables.scss
starting with line 62 where is the primary color set:$default-color: #66615B !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.