There are functions to parse different color formats, but no parseHsv:
https://culorijs.org/api/#parsing-functions
However it does seems to support HSV color format:
https://culorijs.org/color-spaces/
and it contains other functions like convertHsvToRgb and convertRgbToHsv.
https://culorijs.org/api/
Converter can be used with hsv - either converter('hsv') or hsv directly imported, but it seems to be missing a parseHsv function.
https://culorijs.org/api/#color-spaces
Furthermore it seems to generic parse function also doesn't understand HSV format.
There are functions to parse different color formats, but no
parseHsv:https://culorijs.org/api/#parsing-functions
However it does seems to support
HSVcolor format:https://culorijs.org/color-spaces/
and it contains other functions like
convertHsvToRgbandconvertRgbToHsv.https://culorijs.org/api/
Converter can be used with
hsv- eitherconverter('hsv')orhsvdirectly imported, but it seems to be missing aparseHsvfunction.https://culorijs.org/api/#color-spaces
Furthermore it seems to generic
parsefunction also doesn't understand HSV format.culori/src/parse.js
Line 345 in 435a1fc