@cgi-learning-hub/theme
Version:
@cgi-learning-hub/theme is a theme compatible with tailwind and mui
20 lines (19 loc) • 536 B
TypeScript
export type ColorShades = {
darker: string;
dark: string;
regular: string;
light: string;
lighter: string;
contrastText: string;
};
export type Theme = {
palette: {
primary: ColorShades;
secondary: ColorShades;
grey: Omit<ColorShades, "contrastText">;
red: Omit<ColorShades, "darker" | "lighter">;
blue: Omit<ColorShades, "darker" | "lighter">;
green: Omit<ColorShades, "darker" | "lighter">;
yellow: Omit<ColorShades, "darker" | "lighter">;
};
};