/** * 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' }, colors_label: { primary: '#666ee81a', secondary: '#8897aa1a', success: '#28d0941a', info: '#1e9ff21a', warning: '#ff91491a', danger: '#ff49611a', dark: '#181c211a' }, colors_dark: { cardColor: '#2b2c40', bodyBg: '#232333', bodyColor: '#a3a4cc', headingColor: '#cbcbe2', textMuted: '#7071a4', borderColor: '#444564' }, enableMenuLocalStorage: true // Enable menu state with local storage support }; let assetsPath = document.documentElement.getAttribute('data-assets-path'), templateName = document.documentElement.getAttribute('data-template'), rtlSupport = true; // set true for rtl support (rtl + ltr), false for ltr only. /** * TemplateCustomizer * ! You must use(include) template-customizer.js to use TemplateCustomizer settings * ----------------------------------------------------------------------------------------------- */ // To use more themes, just push it to THEMES object. /* TemplateCustomizer.THEMES.push({ name: 'theme-raspberry', title: 'Raspberry' }); */ // To add more languages, just push it to LANGUAGES object. /* TemplateCustomizer.LANGUAGES.fr = { ... }; */ /** * TemplateCustomizer settings * ------------------------------------------------------------------------------------- * cssPath: Core CSS file path * themesPath: Theme CSS file path * displayCustomizer: true(Show customizer), false(Hide customizer) * lang: To set default language, Add more langues and set default. Fallback language is 'en' * controls: [ 'rtl', 'style', 'headerType', 'contentLayout', 'layoutCollapsed', 'layoutNavbarOptions', 'themes' ] | Show/Hide customizer controls * defaultTheme: 0(Default), 1(Bordered), 2(Semi Dark) * defaultStyle: 'light', 'dark', 'system' (Mode) * defaultTextDir: 'ltr', 'rtl' (rtlSupport must be true for rtl mode) * defaultContentLayout: 'compact', 'wide' (compact=container-xxl, wide=container-fluid) * defaultHeaderType: 'static', 'fixed' (for horizontal layout only) * defaultMenuCollapsed: true, false (For vertical layout only) * defaultNavbarType: 'sticky', 'static', 'hidden' (For vertical layout only) * defaultFooterFixed: true, false (For vertical layout only) * defaultShowDropdownOnHover : true, false (for horizontal layout only) */ if (typeof TemplateCustomizer !== 'undefined') { window.templateCustomizer = new TemplateCustomizer({ cssPath: assetsPath + 'vendor/css' + (rtlSupport ? '/rtl' : '') + '/', themesPath: assetsPath + 'vendor/css' + (rtlSupport ? '/rtl' : '') + '/', displayCustomizer: true, lang: localStorage.getItem('templateCustomizer-' + templateName + '--Lang') || 'en', // Set default language here // defaultTheme: 2, // defaultStyle: 'system', // defaultTextDir: 'rtl', // defaultContentLayout: 'wide', // defaultHeaderType: 'static', // defaultMenuCollapsed: true, // defaultNavbarType: 'sticky', // defaultFooterFixed: false, // defaultShowDropdownOnHover: false, controls: ['rtl', 'style', 'headerType', 'contentLayout', 'layoutCollapsed', 'layoutNavbarOptions', 'themes'] }); }