34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
// Default theme settings configurations
|
|
|
|
export const ThemeSettingsConfig = {
|
|
colorTheme: 'semi-dark', // light, semi-light, semi-dark, dark
|
|
layout: {
|
|
style: 'vertical', // style: 'vertical', horizontal,
|
|
pattern: 'fixed' // fixed, boxed, static
|
|
},
|
|
menuColor: 'menu-dark', // Vertical: [menu-dark, menu-light] , Horizontal: [navbar-dark, navbar-light]
|
|
navigation: 'menu-collapsible', // menu-collapsible, menu-accordation
|
|
menu: 'expand', // collapse, expand
|
|
header: 'fix', // fix, static
|
|
footer: 'static', // fix, static
|
|
customizer: 'on', // on,off
|
|
buybutton: 'on', // on, off
|
|
headerIcons: {
|
|
maximize: 'on', // on, off
|
|
search: 'on', // on, off
|
|
internationalization: 'on', // on, off
|
|
notification: 'on', // on, off
|
|
email: 'on' // on, off
|
|
},
|
|
brand: {
|
|
brand_name: 'Modern ',
|
|
logo: {
|
|
type: 'internal', // internal, url
|
|
value: 'assets/custom/images/logo.png' // recommended location for custom images
|
|
// type:'url',
|
|
// value:'http://evolvision.com/wp-content/uploads/2018/01/envelope4-green.png'
|
|
},
|
|
},
|
|
defaultTitleSuffix: ''
|
|
};
|