Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }