πTheme Configuration
Theme Customization options
1. Open this file: src/app/app-config.ts
src/app/app-config.tsexport class BerryConfig {
static layout = 'vertical'; // vertical, horizontal, compact
static isCollapse_menu = false; // true, false
static isDarkMode = false; // true, false;
static sidebar_caption_hide = false; // true, false
static theme_color = 'preset-1'; // present-1, present-2, present-3, present-4, present-5, present-6, present-7
static font_family = 'Roboto'; // Roboto, Poppins, Inter
static isRtl_layout = false; // true, false
static isBox_container = true; // true, false
static isLanding = false; // true
static i18n = 'en'; // en, fr, ro, cn
}
export const DASHBOARD_PATH = '/default';Last updated