{
const ctx = DOM.svg(width, height);
d3.select(ctx).style("background-color", "rgb(231,215,186)");
const rc = rough.svg(ctx);
const path = `M${coords1.join("L")}Z`;
const poly = rc.path(path, waterAndInkStyle());
ctx.appendChild(poly);
const eye = rc.circle(310, 120, 20, waterAndInkStyle());
ctx.appendChild(eye);
return ctx;
}