You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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