Code Explainers
function hexToRgb(hex) { const normalized = hex.replace(/^#/, ''); const full = normalized.length === 3 ? normalized.split('').map((c) => c + c).join('')