30 lines
		
	
	
		
			765 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			765 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * Config
 | 
						|
 * -------------------------------------------------------------------------------------
 | 
						|
 * ! IMPORTANT: Make sure you clear the browser local storage In order to see the config changes in the template.
 | 
						|
 * ! To clear local storage: (https://www.leadshook.com/help/how-to-clear-local-storage-in-google-chrome-browser/).
 | 
						|
 */
 | 
						|
 | 
						|
'use strict';
 | 
						|
 | 
						|
// JS global variables
 | 
						|
let config = {
 | 
						|
  colors: {
 | 
						|
    primary: '#696cff',
 | 
						|
    secondary: '#8592a3',
 | 
						|
    success: '#71dd37',
 | 
						|
    info: '#03c3ec',
 | 
						|
    warning: '#ffab00',
 | 
						|
    danger: '#ff3e1d',
 | 
						|
    dark: '#233446',
 | 
						|
    black: '#000',
 | 
						|
    white: '#fff',
 | 
						|
    cardColor: '#fff',
 | 
						|
    bodyBg: '#f5f5f9',
 | 
						|
    bodyColor: '#697a8d',
 | 
						|
    headingColor: '#566a7f',
 | 
						|
    textMuted: '#a1acb8',
 | 
						|
    borderColor: '#eceef1'
 | 
						|
  }
 | 
						|
};
 |