"use strict";Object.defineProperty(exports, "__esModule", {value: true});
function rgbToHex(r, g, b) {
return "#" + [r, g, b].map((x) => {
const hex = x.toString(16);
return hex.length === 1 ? "0" + hex : hex;
}).join("");
}
exports.rgbToHex = rgbToHex;