UNPKG

musicard-quartz

Version:

Discord music bot module, with aesthetic features. equipped with a music card that is different from the others.

14 lines (11 loc) 317 B
async function rgbToHex(r, g, b) { const toHex = (value) => { const hex = value.toString(16); return hex.length === 1 ? '0' + hex : hex; }; const hexR = toHex(r); const hexG = toHex(g); const hexB = toHex(b); return `#${hexR}${hexG}${hexB}`; } module.exports = { rgbToHex };