UNPKG

@chenzoho/ldt-vue-config

Version:

ldt-vue-config

50 lines (49 loc) 1.05 kB
/** 主题模式 */ export declare enum ThemeEnum { /**跟随系统 */ AUOT = "auto", /**暗色主题 */ DARK = "dark", /**亮色主题 */ LIGHT = "light" } /** 主题设置 */ export interface ThemeSetting { /** 主题 */ theme: ThemeEnum; /** 主题颜色 */ themeColor: string; /** 主题名称 */ themeName: string; /** 命名空间 */ namespace: string; } /** 主题颜色选项 */ export declare const colorOptions: { /** 默认主题颜色 */ default: string; /** 绿色 */ green: string; /** 大气红 */ red: string; /** 热卖红 */ hotRed: string; /** 活力橙 */ orange: string; /** 优雅金 */ gold: string; /** 雅致绿 */ lightGreen: string; /** 人气紫 */ purple: string; /** 办公蓝 */ officeBlue: string; /** 高亮蓝 */ deepBlue: string; /** 懂微蓝 */ origin: string; /** 高级黑 */ black: string; }; /** 默认主题 */ export declare const themeSetting: ThemeSetting;