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


const color = {
  primary:{
    100: "#d8ddfa",
    .
    .
  },
  secondary:{
    100: "#f8f9fa",
    .
    .
  },
  success:{
    100: "#d1ecdd",
    .
    .
  },
  .
  .
  .
}
        

Updated on February 28, 2022
Was this page helpful?