type TokenValue = { value: string | number; modify?: | { type: "color-alpha"; value: number | string; } | { type: "color-hsl"; value: [number, number, number]; } | { type: "color-mix"; value: ReadonlyArray<string | readonly [string, string]>; } | { type: "multiply"; value: number | string; }; };
value
string
number
modify?
type
"color-alpha"
"color-hsl"
"color-mix"
ReadonlyArray
"multiply"
Was this page helpful?