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Ā $templateColor which is used in all the site elements. If you will change this variable color code the theme color will be changed.

$templateColor: #a08c69;

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

.sh__icon {color: #{$templateColor};}