UNPKG

culori

Version:

A general-purpose color library for JavaScript

6 lines (4 loc) 179 B
// Color interpolation hint exponential function const midpoint = (H = 0.5) => t => H <= 0 ? 1 : H >= 1 ? 0 : Math.pow(t, Math.log(0.5) / Math.log(H)); export default midpoint;