26 lines
761 B
JavaScript
26 lines
761 B
JavaScript
/**
|
|
* 主题配置
|
|
* 统一管理应用的主题色,方便在模板中使用
|
|
*/
|
|
|
|
export const THEME_COLORS = {
|
|
// 中医药主题色
|
|
primary: '#b8956a', // 金棕色 - 主要按钮、选中状态
|
|
secondary: '#8b6f47', // 深棕色 - 文字、图标
|
|
light: '#f5ede0', // 浅米色 - 背景、标签
|
|
border: '#d4c4a8', // 边框色
|
|
bg: '#faf8f3', // 浅背景色
|
|
|
|
// 常用颜色
|
|
gray: '#999',
|
|
darkGray: '#666',
|
|
lightGray: '#f5f5f5',
|
|
}
|
|
|
|
// 导出单个颜色,方便使用
|
|
export const themeColor = THEME_COLORS.primary
|
|
export const themeSecondary = THEME_COLORS.secondary
|
|
export const themeLight = THEME_COLORS.light
|
|
export const themeBorder = THEME_COLORS.border
|
|
export const themeBg = THEME_COLORS.bg
|