Files
fe_portal_frontend/config/defaultSettings.ts

40 lines
843 B
TypeScript
Raw Normal View History

2025-06-16 09:25:19 +08:00
import { Settings as ProSettings } from '@ant-design/pro-layout';
type DefaultSettings = ProSettings & {
pwa: boolean;
2025-06-16 16:22:26 +08:00
headingColor: string;
textColor: string;
2025-06-16 09:25:19 +08:00
};
const proSettings: DefaultSettings = {
navTheme: 'light',
2025-07-07 17:01:07 +08:00
primaryColor: 'rgb(1,68,145)',
2025-06-16 16:22:26 +08:00
headingColor: "#000",
textColor: "#000",
2025-06-16 09:25:19 +08:00
layout: 'side',
contentWidth: 'Fluid',
fixedHeader: false,
fixSiderbar: true,
colorWeak: false,
menu: {
locale: true,
},
title: '中远海运',
2025-06-16 09:25:19 +08:00
pwa: false,
iconfontUrl: '',
};
2025-06-16 16:22:26 +08:00
export const antdTheme = {
// 更改antd 组件颜色
'table-header-bg': 'rgb(241,245,251)',
'table-row-hover-bg': 'rgb(241,245,251)',
'table-padding-vertical': '12px',
2025-06-16 22:11:48 +08:00
'table-header-color': 'rgb(143,146,153)',
'menu-item-active-bg': 'rgba(0,79,142,0.1)'
2025-06-16 16:22:26 +08:00
}
2025-06-16 09:25:19 +08:00
export type { DefaultSettings };
2025-06-16 16:22:26 +08:00
2025-06-16 09:25:19 +08:00
export default proSettings;