html`
<div>
<h6>Linear</h6>
${culori.samples(count).map(
culori.interpolate(['green', 'red', 'blue'], 'lrgb')
).map(toSwatch).join('')}</div>
<h6>Smoothstep</h6>
${culori.samples(count).map(
culori.interpolate(['green', culori.easingSmoothstep, 'red', culori.easingSmoothstep, 'blue'], 'lrgb')
).map(toSwatch).join('')}</div>
<h6>Smootherstep</h6>
${culori.samples(count).map(
culori.interpolate(['green', culori.easingSmootherstep, 'red', culori.easingSmootherstep, 'blue'], 'lrgb')
).map(toSwatch).join('')}</div>
<h6>Midpoint(${hint})</h6>
${culori.samples(count).map(
culori.interpolate(['green', culori.easingMidpoint(hint), 'red', culori.easingMidpoint(hint), 'blue'], 'lrgb')
).map(toSwatch).join('')}</div>
`