UNPKG

musicard-quartz

Version:

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

9 lines (7 loc) 341 B
async function adjustBrightness(r, g, b, adjustment) { const adjustedR = Math.max(0, Math.min(255, r + adjustment)); const adjustedG = Math.max(0, Math.min(255, g + adjustment)); const adjustedB = Math.max(0, Math.min(255, b + adjustment)); return [adjustedR, adjustedG, adjustedB]; } module.exports = { adjustBrightness };