mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 06:58:53 +08:00
45 lines
655 B
TypeScript
45 lines
655 B
TypeScript
export default {
|
|
prefixCls: 'vben',
|
|
};
|
|
|
|
// app theme preset color
|
|
export const APP_PRESET_COLOR_LIST: string[] = [
|
|
'#0960bd',
|
|
'#0084f4',
|
|
'#009688',
|
|
'#536dfe',
|
|
'#ff5c93',
|
|
'#ee4f12',
|
|
'#0096c7',
|
|
'#9c27b0',
|
|
'#ff9800',
|
|
];
|
|
|
|
// header preset color
|
|
export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
|
|
'#ffffff',
|
|
'#009688',
|
|
'#5172DC',
|
|
'#018ffb',
|
|
'#409eff',
|
|
'#e74c3c',
|
|
'#24292e',
|
|
'#394664',
|
|
'#001529',
|
|
'#383f45',
|
|
];
|
|
|
|
// sider preset color
|
|
export const SIDE_BAR_BG_COLOR_LIST: string[] = [
|
|
'#001529',
|
|
'#273352',
|
|
'#ffffff',
|
|
'#191b24',
|
|
'#191a23',
|
|
'#304156',
|
|
'#001628',
|
|
'#28333E',
|
|
'#344058',
|
|
'#383f45',
|
|
];
|