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: #5bb7ed;
Also, you can integrate the theme color on your elements like in the following example:
.hg__icon {color: #{$templateColor};}