30 lines
568 B
TypeScript
30 lines
568 B
TypeScript
import { Settings as ProSettings } from '@ant-design/pro-layout';
|
|
|
|
type DefaultSettings = ProSettings & {
|
|
pwa: boolean;
|
|
headingColor:string;
|
|
textColor:string;
|
|
};
|
|
|
|
const proSettings: DefaultSettings = {
|
|
navTheme: 'light',
|
|
primaryColor: 'rgb(0,79,142)',
|
|
headingColor:"#000",
|
|
textColor:"#000",
|
|
layout: 'side',
|
|
contentWidth: 'Fluid',
|
|
fixedHeader: false,
|
|
fixSiderbar: true,
|
|
colorWeak: false,
|
|
menu: {
|
|
locale: true,
|
|
},
|
|
title: '中远海运',
|
|
pwa: false,
|
|
iconfontUrl: '',
|
|
};
|
|
|
|
export type { DefaultSettings };
|
|
|
|
export default proSettings;
|