| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /**
- * 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
- !Please use the hex color code (#000) here. Don't use rgba(), hsl(), etc
- */
- window.config = {
- // global color variables for charts except chartjs
- colors: {
- primary: window.Helpers.getCssVar('primary'),
- secondary: window.Helpers.getCssVar('secondary'),
- success: window.Helpers.getCssVar('success'),
- info: window.Helpers.getCssVar('info'),
- warning: window.Helpers.getCssVar('warning'),
- danger: window.Helpers.getCssVar('danger'),
- dark: window.Helpers.getCssVar('dark'),
- black: window.Helpers.getCssVar('pure-black'),
- white: window.Helpers.getCssVar('white'),
- cardColor: window.Helpers.getCssVar('paper-bg'),
- bodyBg: window.Helpers.getCssVar('body-bg'),
- bodyColor: window.Helpers.getCssVar('body-color'),
- headingColor: window.Helpers.getCssVar('heading-color'),
- textMuted: window.Helpers.getCssVar('secondary-color'),
- borderColor: window.Helpers.getCssVar('border-color')
- },
- colors_label: {
- primary: window.Helpers.getCssVar('primary-bg-subtle'),
- secondary: window.Helpers.getCssVar('secondary-bg-subtle'),
- success: window.Helpers.getCssVar('success-bg-subtle'),
- info: window.Helpers.getCssVar('info-bg-subtle'),
- warning: window.Helpers.getCssVar('warning-bg-subtle'),
- danger: window.Helpers.getCssVar('danger-bg-subtle'),
- dark: window.Helpers.getCssVar('dark-bg-subtle')
- },
- fontFamily: window.Helpers.getCssVar('font-family-base'),
- enableMenuLocalStorage: true // Enable menu state with local storage support
- };
-
- window.assetsPath = document.documentElement.getAttribute('data-assets-path');
- window.baseUrl = document.documentElement.getAttribute('data-base-url') + '/';
- window.templateName = document.documentElement.getAttribute('data-template');
|