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.
|
|
|
export const PresetStatusColorTypes = [
|
|
|
|
'success',
|
|
|
|
'processing',
|
|
|
|
'error',
|
|
|
|
'default',
|
|
|
|
'warning',
|
|
|
|
] as const;
|
|
|
|
|
|
|
|
export const PresetColorTypes = [
|
|
|
|
'pink',
|
|
|
|
'red',
|
|
|
|
'yellow',
|
|
|
|
'orange',
|
|
|
|
'cyan',
|
|
|
|
'green',
|
|
|
|
'blue',
|
|
|
|
'purple',
|
|
|
|
'geekblue',
|
|
|
|
'magenta',
|
|
|
|
'volcano',
|
|
|
|
'gold',
|
|
|
|
'lime',
|
|
|
|
] as const;
|
|
|
|
|
|
|
|
export type PresetColorType = typeof PresetColorTypes[number];
|
|
|
|
|
|
|
|
export type PresetStatusColorType = typeof PresetStatusColorTypes[number];
|