Color Scheme

See here how to change your color plates.


Using SCSS

Please open _custom.scss file located in template/scss/_custom.scss on top you will see we set all color codes you can edit here all your color with primary colors.

						
	$primary: #cd2c22;
	$secondary: #859daf;
	$success: #27a974;
	$info: #106BDA;
	$warning: #ffc107;
	$danger: #CE3426;
	$light: #f4f5f7;
	$dark: #0e1e2b;
	$cyan: #04765f;
	$purple: #6363f5;
	$cyanlight: rgba(4, 118, 55, 0.1);
	$purplelight: rgba(99, 99, 245, 0.1);
						
					

CSS Method

If you want to change color scheme using css you need to add a colors.css file under head tag and here you will need to define your colors.

You just need to link colors.css at the end of <head> tag of each page and start adding CSS you want to add or edit. See example below:

<link rel="stylesheet" type="text/css" href="css/colors.css" />