export interface ColorName {
  name: string;
  hex: string;
}

export const colornames: ColorName[];
export default colornames;
