Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export type Swatches = {
gray0: string;
gray5: string;
gray10: string;
gray20: string;
gray30: string;
gray50: string;
gray80: string;
pink50: string;
pink60: string;
pink80: string;
green50: string;
red50: string;
red0: string;
white: string;
black: string;
};
export const swatches: Swatches = {
gray0: '#F6F7F7',
gray5: '#DCDCDE',
gray10: '#C3C4C7',
gray20: '#A7AAAD',
gray30: '#8E9196',
gray50: '#646970',
gray80: '#2C3338',
pink50: '#C9356E',
pink60: '#AB235A',
pink80: '#700F3B',
green50: '#008A20',
red50: '#D63638',
red0: '#F7EBEC',
white: '#FFF',
black: '#000',
};