style:1.重构整个项目的主题颜色,样式风格采用中国风元素 2.优化更新日志逻辑,不再间隔1h自动刷新过于频繁触发403响应

This commit is contained in:
xiamuceer
2025-12-11 17:01:25 +08:00
parent 02bd2a2529
commit 46d56d9fd8
27 changed files with 2892 additions and 2329 deletions
+28 -1
View File
@@ -8,7 +8,34 @@ import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<ConfigProvider locale={zhCN}>
<ConfigProvider
locale={zhCN}
theme={{
token: {
colorPrimary: '#4D8088', // 天青
colorBgBase: '#F8F6F1', // 米汤色
colorTextBase: '#2B2B2B', // 墨色
borderRadius: 6,
wireframe: false,
fontFamily: "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif",
},
components: {
Layout: {
bodyBg: '#F8F6F1',
headerBg: '#FFFFFF',
siderBg: '#FFFFFF',
},
Card: {
colorBgContainer: '#FFFFFF',
boxShadowTertiary: '0 4px 12px rgba(0, 0, 0, 0.05)', // 更柔和的阴影
},
Button: {
borderRadius: 6,
controlHeight: 36,
}
}
}}
>
<App />
</ConfigProvider>
</StrictMode>,