Color:

0-255 RGBA color.

groupMath

r: number

Red (0-255.

g: number

Green (0-255).

b: number

Blue (0-255).

fromArray(arr: number[] ): Color

fromHex(hex: string | number ): Color

Create color from hex string or literal.

Color.fromHex(0xfcef8d)
Color.fromHex("#5ba675")
Color.fromHex("d46eb3")

sincev3000.0

fromHSL(h: number , s: number , l: number ): Color

RED: Color

GREEN: Color

BLUE: Color

YELLOW: Color

MAGENTA: Color

CYAN: Color

WHITE: Color

BLACK: Color

clone(): Color

lighten(a: number ): Color

Lighten the color (adds RGB by n).

darken(a: number ): Color

Darkens the color (subtracts RGB by n).

invert(): Color

mult(other: Color ): Color

lerp(dest: Color , t: number ): Color

Linear interpolate to a destination color.

sincev3000.0

toHSL(): [ number, number, number ]

Convert color into HSL format.

sincev3001.0

eq(other: Color ): boolean

toHex(): string

Return the hex string of color.

sincev3000.0

toArray(): Array<number>

Return the color converted to an array.

sincev3001.0