UNPKG

vue-launchers

Version:
20 lines (17 loc) 388 B
import { ThemeEnum } from '../../../enums/styleEnum' export type AppThemeColorType = { CMYK: number[] RGB: number[] hex: string name: string pinyin: string } export interface DesignStateType { // 是否是深色主题 darkTheme: boolean // 主题名称 themeName: ThemeEnum //色号 appTheme: string appThemeDetail: AppThemeColorType | null }