config.ts 310 B

1234567891011121314151617
  1. import zhCN from "ant-design-vue/es/locale/zh_CN";
  2. import { theme } from "ant-design-vue";
  3. export const config = {
  4. locale: zhCN,
  5. theme: {
  6. algorithm: theme.darkAlgorithm,
  7. token: {
  8. colorPrimary: "#00c8af",
  9. fontSize: 14,
  10. wireframe: true,
  11. colorInfo: "#00c8af",
  12. },
  13. }
  14. };