You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.4 KiB
TypeScript

2 years ago
import { ProLayoutProps } from '@ant-design/pro-components';
/**
* @name
*/
const Settings: ProLayoutProps & {
pwa?: boolean;
2 years ago
logo?: string | null;
2 years ago
} = {
navTheme: 'light',
// 拂晓蓝
colorPrimary: '#1890ff',
layout: 'mix',
contentWidth: 'Fluid',
fixedHeader: false,
fixSiderbar: true,
colorWeak: false,
2 years ago
title: '鞋纺通后台管理',
2 years ago
pwa: true,
2 years ago
logo: null,
2 years ago
iconfontUrl: '',
2 years ago
// token: {
// // 参见ts声明demo 见文档通过token 修改样式
// //https://procomponents.ant.design/components/layout#%E9%80%9A%E8%BF%87-token-%E4%BF%AE%E6%94%B9%E6%A0%B7%E5%BC%8F
// },
2 years ago
token: {
2 years ago
header: {
colorBgHeader: '#292f33',
colorHeaderTitle: '#fff',
colorTextMenu: '#dfdfdf',
colorTextMenuSecondary: '#dfdfdf',
colorTextMenuSelected: '#fff',
colorBgMenuItemSelected: '#22272b',
colorTextMenuActive: 'rgba(255,255,255,0.85)',
colorTextRightActionsItem: '#dfdfdf',
},
colorTextAppListIconHover: '#fff',
colorTextAppListIcon: '#dfdfdf',
sider: {
colorMenuBackground: '#292f33',
colorMenuItemDivider: '#dfdfdf',
colorBgMenuItemHover: '#292f33',
colorBgMenuItemSelected: '#1890ff',
colorTextMenu: 'hsla(0,0%,100%,.65)',
colorTextMenuItemHover: '#fff',
colorTextMenuSelected: '#fff',
colorTextMenuActive: '#fff'
},
}
2 years ago
};
export default Settings;