UNPKG

blinkstick-ts

Version:
11 lines (10 loc) 306 B
export declare class Color { readonly red: number; readonly green: number; readonly blue: number; constructor(red: number, green: number, blue: number); static fromHex(hex: string): Color; toHex(): string; inverse(): Color; } export declare const Colors: Record<string, Color>;