export interface ColorVariants { base: string; dark: string; light: string; lighter: string; } export interface ColorComponent { background: string; border: string; } export interface ThemeInterface { colors: { alternation: string; hover: string; background: string; header: string; brand: ColorVariants; text: ColorVariants; components: { notice: { info: ColorComponent; error: ColorComponent; success: ColorComponent; warning: ColorComponent; }; error: { text: string; }; }; }; fonts: { brand: string; text: string; }; } export * from './default';