API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
typeColorInput
@codexo/exojs / core / stable
Anything Color.from accepts. A number is always `0xRRGGBB` and never carries alpha - see Color.from for why the packed form stops at six digits.
0
props
0
methods
0
events
Import
import { ColorInput } from '@codexo/exojs'Anything Color.from accepts.
A number is always `0xRRGGBB` and never carries alpha - see Color.from for why the packed form stops at six digits.
Definition1
Color32-bit RGBA color value with channel-wise accessors. Red, green, and blue are integers in 0..255; alpha is a float in 0..1. Out-of-range values are saturated o… | number | string | { a?: number; b: number; g: number; r: number }Source