Build tools
Learn how to use Bootstrap's included npm scripts to build our documentation, compile source code, run tests, and more.
Change brand colors
- You will find all the branding colors inside assets/scss/paper-kit/_variables.scssstarting with line 41 where is the primary color set:$primary-color: #51cbce !default. You can change them with aHEXvalue or with other predefined variables.
Compile SCSS
- Download the project’s zip.
- Make sure you have node.js installed.
- Type npm installin terminal/console in the source folder wherepackage.jsonis located.
- Run in terminal gulp open-appfor 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('index.html').
- Run in terminal gulp compile-scssfor a single compilation orgulp watchfor continous compilation of the changes that you make in*.scssfiles. This command should be run in the same folder wheregulpfile.jsandpackage.jsonare located.