您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

antd-theme.d.ts 309B

1234567891011
  1. /*This file is created with the purpose of overwrite default antd theme*/
  2. import 'antd/es/theme/interface';
  3. declare module 'antd/es/theme/interface' {
  4. interface GlobalToken {
  5. colorPrimary2?: string;
  6. colorPrimary3?: string;
  7. colorSecondary?: string;
  8. // Add any other custom tokens here
  9. }
  10. }