axp-ui/docs/colors.d.ts

13 lines
373 B
TypeScript
Raw Normal View History

2023-10-11 10:54:20 +03:00
export declare enum ColorEnum {
primary = "primary",
accent = "accent",
info = "info",
success = "success",
warning = "warning",
error = "error",
dark = "dark",
light = "light"
}
export type TColor = keyof typeof ColorEnum;
export declare const colors: ("primary" | "accent" | "info" | "success" | "warning" | "error" | "dark" | "light")[];