export interface Hwb {
    mode: "hwb";
    h?: number;
    w: number;
    b: number;
    alpha?: number;
}
