{
const canvas = DOM.canvas(width, height);
const p = new paper.PaperScope();
const { Path, Point, Color } = p;
paper.setup(canvas);
let bg = new Path.Rectangle({
point: [0,0],
size: [width, height],
fillColor: "hsl(216deg 100% 13%)"
})
return canvas;
}