MCPcopy Create free account
hub / github.com/diffgram/diffgram / HexToHSVA

Function HexToHSVA

frontend/src/utils/colorUtils.js:249–252  ·  view source on GitHub ↗
(hex)

Source from the content-addressed store, hash-verified

247}
248
249function HexToHSVA(hex) {
250 var rgb = HexToRGBA(hex);
251 return RGBAtoHSVA(rgb);
252}
253
254function HSVAtoHex(hsva) {
255 return RGBAtoHex(HSVAtoRGBA(hsva));

Callers

nothing calls this directly

Calls 2

HexToRGBAFunction · 0.85
RGBAtoHSVAFunction · 0.85

Tested by

no test coverage detected