react-sleek
Version:
React Sleek Component Library
17 lines (16 loc) • 340 B
TypeScript
export interface IColors {
[key: string]: string;
VeryDarkBlue: string;
DarkBlue: string;
VeryLightGrey: string;
LightGrey: string;
Grey: string;
Blue: string;
Green: string;
Pink: string;
Orange: string;
Yellow: string;
White: string;
}
declare const Colors: IColors;
export default Colors;