Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
249
function
HexToHSVA(hex) {
250
var
rgb = HexToRGBA(hex);
251
return
RGBAtoHSVA(rgb);
252
}
253
254
function
HSVAtoHex(hsva) {
255
return
RGBAtoHex(HSVAtoRGBA(hsva));
Callers
nothing calls this directly
Calls
2
HexToRGBA
Function · 0.85
RGBAtoHSVA
Function · 0.85
Tested by
no test coverage detected