Documentation

Theme colors

Steps to be follow for theme colors with the template:

  • We use a subset of all colors to create a smaller color palette for generating color schemes, also available as Scss variables in scss/_variables.scss file.
  • More Customization will be done in variable file.

Here is the Change color of template in gulp+scss+hbs

​$theme-colors: (
    ​$primary:       #3a57e8;
    ​$secondary:     #001F4D;
    ​$success:       #1aa053;
    ​$info:          #079aa2;
    ​$warning:       #f16a1b;
    ​$danger:        #c03221;
    ​$light:         #dee2e6;
    ​$dark:          #212529;
    ​$gray:          #6c757d;
    ​$gray-dark:     #343a40;
​);