UNPKG

@fe6/water-pro

Version:

An enterprise-class UI design language and Vue-based implementation

23 lines (19 loc) 479 B
import { ElementOf, tuple } from './type'; export const PresetStatusColorTypes = tuple('success', 'processing', 'error', 'default', 'warning'); export const PresetColorTypes = tuple( 'pink', 'red', 'yellow', 'orange', 'cyan', 'green', 'blue', 'purple', 'geekblue', 'magenta', 'volcano', 'gold', 'lime', ); export type PresetColorType = ElementOf<typeof PresetColorTypes>; export type PresetStatusColorType = ElementOf<typeof PresetStatusColorTypes>;