darkTheme.ts 296 B

1234567891011
  1. import { theme } from 'antd';
  2. export const darkTheme = {
  3. algorithm: theme.darkAlgorithm,
  4. token: {
  5. colorPrimary: '#ff5722', // 主色调
  6. colorBgContainer: '#000000', // 容器背景色
  7. colorText: '#FFFFFF', // 文字颜色
  8. colorBgLayout: '#121212', // 全局背景色
  9. },
  10. };