theme-antd.js 343 B

1234567891011121314
  1. const { getThemeVariables } = require("ant-design-vue/dist/theme");
  2. module.exports = Object.assign(
  3. getThemeVariables({
  4. dark: true,
  5. }),
  6. {
  7. "primary-color": "#E88B00",
  8. // "component-background": "#ffffff",
  9. "select-clear-background":"transparent",
  10. "tree-title-height": "32px",
  11. "modal-content-bg": "#262626",
  12. }
  13. );