How to change the main color

The theme main color can be changed from app/css/scss/_vars.scss

In this file you will be able to see a variable called $themeColor which is used in all the site elements. If you will change this variable color code the theme color will be changed.

 $themeColor: #3b55e6;

Also you can integrate the theme color on your elements like in the following example:

.ky__icon {color: #{$themeColor};}