Template color settings
For the whole theme main color change,
go to your scss folder and then find _variables.scss
file in utils
folder
you need to change $primary-color
and $secondary-color
variables hex
code
// Theme colors variables
$primary-color: #009DB5;
$secondary-color: #F94C8E;
style.scss
file from the scss folder :root {
--theme-default: #009DB5;
--theme-secondary: #F94C8E;
}
above 2 css color variables
also change
Make sure your theme-default
and $primary-color
code should be
same.
similar change for secondary
also