theme.ts 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /**
  2. * Vite plugin for website theme color switching
  3. * https://github.com/anncwb/vite-plugin-theme
  4. */
  5. import type { Plugin } from 'vite';
  6. import path from 'path';
  7. import { viteThemePlugin, antdDarkThemePlugin, mixLighten, mixDarken, tinycolor } from 'vite-plugin-theme';
  8. import { getThemeColors, generateColors } from '../../config/themeConfig';
  9. import { generateModifyVars } from '../../generate/generateModifyVars';
  10. export function configThemePlugin(isBuild: boolean): Plugin[] {
  11. const colors = generateColors({
  12. mixDarken,
  13. mixLighten,
  14. tinycolor,
  15. });
  16. const plugin = [
  17. viteThemePlugin({
  18. resolveSelector: (s) => {
  19. s = s.trim();
  20. switch (s) {
  21. case '.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon':
  22. return '.ant-steps-item-icon > .ant-steps-icon';
  23. case '.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)':
  24. case '.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover':
  25. case '.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active':
  26. return s;
  27. case '.ant-steps-item-icon > .ant-steps-icon':
  28. return s;
  29. case '.ant-select-item-option-selected:not(.ant-select-item-option-disabled)':
  30. return s;
  31. default:
  32. if (s.indexOf('.ant-btn') >= -1) {
  33. // 按钮被重新定制过,需要过滤掉class防止覆盖
  34. return s;
  35. }
  36. }
  37. return s.startsWith('[data-theme') ? s : `[data-theme] ${s}`;
  38. },
  39. colorVariables: [...getThemeColors(), ...colors],
  40. }),
  41. antdDarkThemePlugin({
  42. preloadFiles: [
  43. path.resolve(process.cwd(), 'node_modules/ant-design-vue/dist/antd.less'),
  44. //path.resolve(process.cwd(), 'node_modules/ant-design-vue/dist/antd.dark.less'),
  45. path.resolve(process.cwd(), 'src/design/index.less'),
  46. ],
  47. filter: (id) => (isBuild ? !id.endsWith('antd.less') : true),
  48. // extractCss: false,
  49. darkModifyVars: {
  50. ...generateModifyVars(true),
  51. 'text-color': '#c9d1d9',
  52. 'primary-1': 'rgb(255 255 255 / 8%)',
  53. 'text-color-base': '#c9d1d9',
  54. 'component-background': '#151515',
  55. 'heading-color': 'rgb(255 255 255 / 65%)',
  56. // black: '#0e1117',
  57. // #8b949e
  58. 'text-color-secondary': '#8b949e',
  59. 'border-color-base': '#303030',
  60. // 'border-color-split': '#30363d',
  61. 'item-active-bg': '#111b26',
  62. 'app-content-background': '#1e1e1e',
  63. 'tree-node-selected-bg': '#11263c',
  64. 'alert-success-border-color': '#274916',
  65. 'alert-success-bg-color': '#162312',
  66. 'alert-success-icon-color': '#49aa19',
  67. 'alert-info-border-color': '#153450',
  68. 'alert-info-bg-color': '#111b26',
  69. 'alert-info-icon-color': '#177ddc',
  70. 'alert-warning-border-color': '#594214',
  71. 'alert-warning-bg-color': '#2b2111',
  72. 'alert-warning-icon-color': '#d89614',
  73. 'alert-error-border-color': '#58181c',
  74. 'alert-error-bg-color': '#2a1215',
  75. 'alert-error-icon-color': '#a61d24',
  76. },
  77. }),
  78. ];
  79. return plugin as unknown as Plugin[];
  80. }