添加框架内容
This commit is contained in:
@ -2,15 +2,15 @@ import { Settings as ProSettings } from '@ant-design/pro-layout';
|
||||
|
||||
type DefaultSettings = ProSettings & {
|
||||
pwa: boolean;
|
||||
headingColor:string;
|
||||
textColor:string;
|
||||
headingColor: string;
|
||||
textColor: string;
|
||||
};
|
||||
|
||||
const proSettings: DefaultSettings = {
|
||||
navTheme: 'light',
|
||||
primaryColor: 'rgb(0,79,142)',
|
||||
headingColor:"#000",
|
||||
textColor:"#000",
|
||||
headingColor: "#000",
|
||||
textColor: "#000",
|
||||
layout: 'side',
|
||||
contentWidth: 'Fluid',
|
||||
fixedHeader: false,
|
||||
@ -24,6 +24,15 @@ const proSettings: DefaultSettings = {
|
||||
iconfontUrl: '',
|
||||
};
|
||||
|
||||
export const antdTheme = {
|
||||
// 更改antd 组件颜色
|
||||
'table-header-bg': 'rgb(241,245,251)',
|
||||
'table-row-hover-bg': 'rgb(241,245,251)',
|
||||
'table-padding-vertical': '12px',
|
||||
'table-header-color': 'rgb(143,146,153)'
|
||||
}
|
||||
|
||||
export type { DefaultSettings };
|
||||
|
||||
|
||||
export default proSettings;
|
||||
|
Reference in New Issue
Block a user