export type SKColor = {
    _class: 'color';
    red: number;
    green: number;
    blue: number;
    alpha: number;
    swatchID?: string;
};
