⚙️Theme Settings
Manage the theme settings for Horizontal, Dark, and Box layout options.
Theme settings lie under config.ts file.
How to Set Default Settings?
// Config.ts
const config: ConfigProps = {
Sidebar_drawer: true,
Customizer_drawer: false,
mini_sidebar: false,
setHorizontalLayout: false, // Horizontal layout
actTheme: 'light',
fontTheme: 'Inter-var',
inputBg: false,
themeContrast: false,
boxed: false,
isRtl: false
}; How to Set Dark Theme?
// Config.ts
const config: ConfigProps = {
Sidebar_drawer: true,
Customizer_drawer: false,
mini_sidebar: false,
setHorizontalLayout: false,
actTheme: 'dark', // Change Dark theme
fontTheme: 'Inter-var',
inputBg: false,
themeContrast: false,
boxed: true,
isRtl: false
}; How to Set Horizontal Layout?
How to unset Boxed Layout?
How to Change Input Text Background?
How to Set RTL theme?
How to Change Theme contrast?
Last updated