You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
714 B
27 lines
714 B
/**
|
|
* 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: '#11726d',
|
|
secondary: '#8592a3',
|
|
success: '#71dd37',
|
|
info: '#03c3ec',
|
|
warning: '#ffab00',
|
|
danger: '#ff3e1d',
|
|
dark: '#233446',
|
|
black: '#000',
|
|
white: '#fff',
|
|
body: '#f4f5fb',
|
|
headingColor: '#566a7f',
|
|
axisColor: '#a1acb8',
|
|
borderColor: '#eceef1'
|
|
}
|
|
};
|
|
|