mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-14 17:01:17 +08:00
19 lines
272 B
TypeScript
19 lines
272 B
TypeScript
|
import { tuple } from './type';
|
||
|
|
||
|
export const PresetColorTypes = tuple(
|
||
|
'pink',
|
||
|
'red',
|
||
|
'yellow',
|
||
|
'orange',
|
||
|
'cyan',
|
||
|
'green',
|
||
|
'blue',
|
||
|
'purple',
|
||
|
'geekblue',
|
||
|
'magenta',
|
||
|
'volcano',
|
||
|
'gold',
|
||
|
'lime'
|
||
|
);
|
||
|
export type PresetColorType = (typeof PresetColorTypes)[number];
|