⚙️Theme Settings

Manage the theme settings for Dark, Rtl and Preset color options.

The theme settings are located in the config.ts file.

How to Set Dark Theme ?

config.ts
const config: ConfigProps = {
  sidebarCollapse: false,
  actTheme: 'dark', // Set dark here
  isRtl: false,
  presetColor: 'preset-1',
}

How to Set RTL Layout ?

config.ts
const config: ConfigProps = {
  sidebarCollapse: false,
  actTheme: 'dark', 
  isRtl: true, // Set true here
  presetColor: 'preset-1',
}      

How to Change Preset color ?

config.ts
const config: ConfigProps = {
  sidebarCollapse: false,
  actTheme: 'dark', 
  isRtl: true,
  presetColor: 'preset-1', // Change to preset-[1–9] to switch between available color presets
}        

Last updated