{
const height = 66;
const context = DOM.context2d(width, height, 1);
context.canvas.style.imageRendering = "pixelated";
for (let x = 0; x < width; ++x) {
const t = (x / width) * 20000 + 1000;
const xyz = spectrum_xyz(v => bb_spectrum(v, t));
const rgb = xyz_rgb(normalize(xyz));
context.fillStyle = `rgb(${rgb.map(c => Math.round(c * 255))})`;
context.fillRect(x, 0, 1, height);
}
yield context.canvas;
}