brella-transition
Version:
Generates the brella transition for OBS Studio.
20 lines (19 loc) • 360 B
TypeScript
type HSL = {
h: number;
s: number;
l: number;
};
export declare class TinierColor {
hsl: HSL;
constructor(input: string | HSL);
clone(): TinierColor;
darken(amount?: number): this;
spin(amount: number): this;
toRgb(): {
r: number;
g: number;
b: number;
};
toHexString(): string;
}
export {};