Style Customization

Scss base approach will make a better customization in styling template

Design style customization

Kava is developed with Bootstrap 4 so its easy to change the styling for your app. It uses bootstrap variables along with some custom variables which provides you the more flexibility and control over design.

Changing Default Variables

Open _bootstrap-override.scss file under src/assets/scss/theme folder and change style variable values as per your requirement.

Change Theme Colors

In _bootstrap-overide.scss file find the following variables and Start with assigning color names to specific hex values.

$blue:    #4253FF !default;
$indigo:  #6610f2 !default;
$purple:  #7800E0 !default;
$pink:    #6D0303 !default;
$red:     #F41243 !default;
$orange:  #FF4646 !default;
$yellow:  #FF9B0B !default;
$green:   #10CC2F !default;
$teal:    #D9F762 !default;
$cyan:    #17a2b8 !default;

You can change the font size , text color and other various elements variables as per as your requirements.

Custom Variables

According to the kava design we made some own variable to give full control over this template.

Open _custom-variables.scss file under src/assets/scss/theme and change the variable.

Last updated

Was this helpful?