108 lines
3.8 KiB
JavaScript
108 lines
3.8 KiB
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
|
|
window.config = {
|
|
colors: {
|
|
primary: '#696cff',
|
|
secondary: '#8592a3',
|
|
success: '#71dd37',
|
|
info: '#03c3ec',
|
|
warning: '#ffab00',
|
|
danger: '#ff3e1d',
|
|
dark: '#233446',
|
|
black: '#22303e',
|
|
white: '#fff',
|
|
cardColor: '#fff',
|
|
bodyBg: '#f5f5f9',
|
|
bodyColor: '#646E78',
|
|
headingColor: '#384551',
|
|
textMuted: '#a7acb2',
|
|
borderColor: '#e4e6e8'
|
|
},
|
|
colors_label: {
|
|
primary: '#696cff29',
|
|
secondary: '#8592a329',
|
|
success: '#71dd3729',
|
|
info: '#03c3ec29',
|
|
warning: '#ffab0029',
|
|
danger: '#ff3e1d29',
|
|
dark: '#181c211a'
|
|
},
|
|
colors_dark: {
|
|
cardColor: '#2b2c40',
|
|
bodyBg: '#232333',
|
|
bodyColor: '#b2b2c4',
|
|
headingColor: '#d5d5e2',
|
|
textMuted: '#7e7f96',
|
|
borderColor: '#4e4f6c'
|
|
},
|
|
enableMenuLocalStorage: true // Enable menu state with local storage support
|
|
};
|
|
|
|
window.assetsPath = document.documentElement.getAttribute('data-assets-path');
|
|
window.templateName = document.documentElement.getAttribute('data-template');
|
|
window.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']
|
|
});
|
|
}
|