mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-26 06:40:17 +08:00
feat(projects): 主题配置抽屉:迁移暗黑模式、布局模式、添加颜色选择面板
This commit is contained in:
13
src/settings/color.ts
Normal file
13
src/settings/color.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import colorJson from './color.json';
|
||||
|
||||
interface TraditionColorDetail {
|
||||
label: string;
|
||||
color: string;
|
||||
}
|
||||
interface TraditionColor {
|
||||
label: string;
|
||||
data: TraditionColorDetail[];
|
||||
}
|
||||
|
||||
/** 中国传统颜色 */
|
||||
export const traditionColors = colorJson as TraditionColor[];
|
||||
Reference in New Issue
Block a user