empower_front/src/util/hexToRgb.js
2025-06-17 17:38:50 +08:00

13 lines
242 B
JavaScript

//hex -> rgbsensor_circle
export default function hexToRgb(hex) {
return (
"rgb(" +
parseInt("0x" + hex.slice(1, 3)) +
"," +
parseInt("0x" + hex.slice(3, 5)) +
"," +
parseInt("0x" + hex.slice(5, 7)) +
")"
);
}