import { Color } from "../../Colors";
export interface IColorWithTitle {
    color: Color;
    title: string;
}
