export interface Lrgb {
    mode: "lrgb";
    r: number;
    g: number;
    b: number;
    alpha?: number;
}
