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>;