nblackburn
5/29/2019 - 6:19 PM

Contrast

module.exports = (foreground, background) => {
    const l1 = Math.max(foreground, background);
    const l2 = Math.min(foreground, background);

    return (l1 + 0.05) / (l2 + 0.05);
};