function getJNDspans(baseColor, deltas, fontSize) {
let color = d3.lab(baseColor);
if (deltas === undefined) { deltas = [-9,-6,-3,0,3,6,9]; }
if (fontSize === undefined) { fontSize == 22; }
let colors = [];
deltas.forEach(function(delta) {
colors.push(getColorPlusL(baseColor, delta));
});
return html`${colors.map(c=>getColorSpan(c, c.formatHex(), 'NOPE', fontSize)).join(' ')}`;
}