Categories
Converts RGB values to a hex color.
Contributed by @itsbrunodev
function rgbToHex(r, g, b) { return `#${((1 << 24) | (r << 16) | (g << 8) | b) .toString(16) .slice(1) .toUpperCase()}`; }
rgbToHex(255, 99, 71); // #ff6347