color
color: {
convertRGB: (r: number, g: number, b: number) => number[];
hexToDec: (hex: string, bgr?: boolean) => string;
hexToRGB: (hex: string) => number[];
randomHexColor: () => string;
rgbToBgr: (rgb: string) => string;
rgbToDec: (r: number, g: number, b: number) => string;
rgbToHex: (r: number, g: number, b: number) => string;
}