ruoyi-plus-soybean/src/theme/settings.ts

80 lines
1.6 KiB
TypeScript
Raw Normal View History

2023-12-14 21:45:29 +08:00
/** Default theme settings */
2023-11-17 08:45:00 +08:00
export const themeSettings: App.Theme.ThemeSetting = {
themeScheme: 'light',
grayscale: false,
recommendColor: false,
2023-11-17 08:45:00 +08:00
themeColor: '#646cff',
otherColor: {
info: '#2080f0',
success: '#52c41a',
warning: '#faad14',
error: '#f5222d'
},
isInfoFollowPrimary: true,
layout: {
mode: 'vertical',
scrollMode: 'content'
},
page: {
animate: true,
animateMode: 'fade-slide'
},
header: {
height: 56,
breadcrumb: {
visible: true,
showIcon: true
}
},
tab: {
visible: true,
cache: true,
height: 44,
mode: 'chrome'
},
fixedHeaderAndTab: true,
sider: {
inverted: false,
width: 220,
collapsedWidth: 64,
mixWidth: 90,
mixCollapsedWidth: 64,
mixChildMenuWidth: 200
},
footer: {
visible: true,
fixed: false,
height: 48,
right: true
},
tokens: {
light: {
colors: {
container: 'rgb(255, 255, 255)',
layout: 'rgb(247, 250, 252)',
inverted: 'rgb(0, 20, 40)',
'base-text': 'rgb(31, 31, 31)'
},
boxShadow: {
header: '0 1px 2px rgb(0, 21, 41, 0.08)',
sider: '2px 0 8px 0 rgb(29, 35, 41, 0.05)',
tab: '0 1px 2px rgb(0, 21, 41, 0.08)'
}
},
dark: {
colors: {
container: 'rgb(28, 28, 28)',
layout: 'rgb(18, 18, 18)',
'base-text': 'rgb(224, 224, 224)'
}
}
2023-11-17 08:45:00 +08:00
}
};
/**
2023-12-14 21:45:29 +08:00
* Override theme settings
*
* If publish new version, use `overrideThemeSettings` to override certain theme settings
2023-11-17 08:45:00 +08:00
*/
export const overrideThemeSettings: Partial<App.Theme.ThemeSetting> = {};