🛠️Theme Configuration

Theme Customization options

../src/app/app-config.ts

app-config.ts

export class MantisConfig {
  static layout = 'vertical'; // vertical, horizontal, compact
  static isCollapseMenu = false;
  static theme_color = 'preset-1'; // present-1, present-2, present-3, present-4, present-5, present-6, present-7, preset-8, preset-9
  static isLanding = true;
  static isRtlLayout = false; // false, true
  static isDarkMode = false; // false, true    Dark and Default
  static isBox_container = false; // false, true
  static font_family = 'public-sans'; // public-sans, Roboto, Poppins, Inter
}
}

You can edit this file at [ ../src/app/app-config.ts ]

Last updated