1
2
3
export function convertRGBToHex(rgb) {
return ((rgb * 255) | (1 << 8)).toString(16).slice(1);
}