⚙️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: ThemeMode.Light,
    fontTheme: 'Public sans',
    inputBg: false,
    boxed: false,
    isRtl: false,
    presetColor: 'default'
};              

How to Set Dark Theme?

Config.ts
const config: ConfigProps = {
    Sidebar_drawer: true,
    Customizer_drawer: false,
    mini_sidebar: false,
    setHorizontalLayout: false, 
    actTheme: ThemeMode.Dark, // Change Dark theme
    fontTheme: 'Public sans',
    inputBg: false,
    boxed: true,
    isRtl: false,
    presetColor: 'default'
};    

How to Set Horizontal Layout?

How to Set Minsidebar Layout?

How to unset Boxed Layout?

How to Change Input Text Background?

How to Set RTL theme?

How to Change Color Scheme?

Last updated