front-end/src/core/_variants.ts
2022-08-02 15:45:12 +03:00

13 lines
413 B
TypeScript

export type StyleType = "high" | "medium" | "low";
export type StyleColorVariants = "blue" | "pink" | "red" | "purple" | "yellow" | "sky" | "emerald" | "gray" | "dark-coral";
export type StyleGlobalVariants = "primary" | "base" | "secondary";
export type StyleColorVariantsMap<T> = {
[Property in StyleColorVariants]: T;
};
export type StyleGlobalVarinatsMap<T> = {
[Property in StyleGlobalVariants]: T;
}