canvas = {
const ct = DOM.context2d(WIDTH, HEIGHT);
ct.canvas.ct = ct;
const s = ct.canvas.style;
s.margin = `0 ${(width - WIDTH) / 2}px`;
s.backgroundColor = "black";
ct.setTransform(0,1,1,0, WIDTH, HEIGHT);
ct.strokeStyle = "white";
ct.lineWidth = 2;
return ct.canvas;
}