Type Alias: HSV
HSV:
object
Represents a color in the HSV color space. 'h' (hue) should be between 0 and 360. 's' (saturation) and 'v' (value) should be between 0 and 100. The alpha channel 'a' is optional and should be between 0 and 1 if provided.
Type declaration
Name | Type | Defined in |
---|---|---|
a ? | number | types.ts:38 |
h | number | types.ts:35 |
s | number | types.ts:36 |
v | number | types.ts:37 |
Defined in
types.ts:34