size(1920,1080); // 16:9 int fg = color(31,10,92); int bg = color(208,197,164); int weight = 16; int u = width/16; // a 'unit' background(bg); // bordered boxes fill(bg); stroke(fg); strokeWeight(weight); rect(u, u, u*4, u*7); rect(u*7, u, u*8, u*2); rect(u*7, u*5, u*8, u*3); // labels fill(fg); textSize(32); text("sort", u - (weight / 2), u - (weight / 2)); text("ignore", u*7 - (weight / 2), u - (weight / 2)); text("copied", u*7 - (weight / 2), u*5 - (weight / 2)); save("sortpaper_16_9.png");