Style Customization
Scss base approach will make a better customization in styling template
Design style customization
Changing Default Variables
Change Theme Colors
// Start with assigning color names to specific hex values.
$blue: #0066EB !default; //Manage default primary color
$green: #00caac !default; //Manage default Success color
$teal: #51CAE3 !default; //Manage default info color
$orange: #ff5723 !default; //Manage default warning color
$red: #F54B5E !default; //Manage default danger colorChanging Basic Variables
/*=========== Custom Variables integrated =============*/
//--- Html Variables ---//
$html-font-size: 16px;
//--- Main Menu ---//
$menu-bg-color: rgba(255, 255, 255, 1);
$menu-nav-color: $gray-700;
//--- Preloader variable ---//
$perloader-bg-overlay: rgba(20, 24, 40, 0.87);
$preloader-bg-one: $blue;
$preloader-bg-two: $orange;
//--- Square box ---//
$square-font-size: 0.5; // 50% relative to the container
$square-box: (10, 15, 20, 30, 40, 50, 60, 70, 100);
//--- Back to top style ---//
$to-top-bg: #fff !default;
$to-top-border-color: $gray-500 !default;
$to-top-border-radius: 5em !default;
$to-top-icon-color: $blue !default;
$to-top-icon-hover-color: #fff !default;Last updated