export interface Cubehelix {
    mode: "cubehelix";
    h?: number;
    s: number | undefined;
    l: number;
    alpha?: number;
}
