2022-12-13 14:57:40 +08:00
|
|
|
export const PresetStatusColorTypes = [
|
|
|
|
'success',
|
|
|
|
'processing',
|
|
|
|
'error',
|
|
|
|
'default',
|
|
|
|
'warning',
|
|
|
|
] as const;
|
2019-03-31 20:21:20 +08:00
|
|
|
|
2022-12-13 14:57:40 +08:00
|
|
|
export const PresetColorTypes = [
|
2019-04-26 18:15:31 +08:00
|
|
|
'pink',
|
|
|
|
'red',
|
|
|
|
'yellow',
|
|
|
|
'orange',
|
|
|
|
'cyan',
|
|
|
|
'green',
|
|
|
|
'blue',
|
|
|
|
'purple',
|
|
|
|
'geekblue',
|
|
|
|
'magenta',
|
|
|
|
'volcano',
|
|
|
|
'gold',
|
|
|
|
'lime',
|
2022-12-13 14:57:40 +08:00
|
|
|
] as const;
|
2019-04-26 18:15:31 +08:00
|
|
|
|
2022-12-13 14:57:40 +08:00
|
|
|
export type PresetColorType = typeof PresetColorTypes[number];
|
|
|
|
|
|
|
|
export type PresetStatusColorType = typeof PresetStatusColorTypes[number];
|