UNPKG

@jupyter/web-components

Version:

A component library for building extensions in Jupyter frontends.

9 lines (8 loc) 262 B
/** * @internal */ export function contrast(a, b) { const L1 = a.relativeLuminance > b.relativeLuminance ? a : b; const L2 = a.relativeLuminance > b.relativeLuminance ? b : a; return (L1.relativeLuminance + 0.05) / (L2.relativeLuminance + 0.05); }