module.exports = (foreground, background) => { const l1 = Math.max(foreground, background); const l2 = Math.min(foreground, background); return (l1 + 0.05) / (l2 + 0.05); };