defaultLayout.ts 360 B

123456789101112131415
  1. import { Settings } from "@ant-design/pro-components";
  2. const defaultLayout: Partial<Settings> = {
  3. navTheme: 'light', //dark:黑色,light:亮色
  4. // 明青
  5. colorPrimary: '#13C2C2',
  6. contentWidth: 'Fluid',
  7. fixedHeader: true,
  8. fixSiderbar: true,
  9. colorWeak: false,
  10. // pwa: false,
  11. iconfontUrl: '',
  12. };
  13. export default defaultLayout;