@retailmenot/anchor
Version:
A React UI Library by RetailMeNot
49 lines (48 loc) • 1.08 kB
TypeScript
export declare type Color = 'grayscale' | 'purple' | 'blue' | 'green' | 'yellow' | 'red';
declare type ColorHue = {
light: string;
base: string;
dark: string;
};
export interface ColorsThemeSchema {
primary: ColorHue;
secondary: ColorHue;
accent: ColorHue;
borders: {
base: string;
light: string;
dark: string;
error: string;
success: string;
info: string;
warning: string;
};
text: {
base: string;
light: string;
label: string;
link: {
base: string;
hover: string;
focus: string;
visited: string;
};
disabled: string;
placeholder: string;
};
background: {
base: string;
light: string;
content: string;
error: string;
success: string;
info: string;
warning: string;
};
error: string;
success: string;
info: string;
warning: string;
}
export declare const ColorsTheme: ColorsThemeSchema;
export {};