xxxxxxxxxx
function setup() {
createCanvas(400, 400); // Set canvas size
// Initialize colors and coordinates based on Photoshop data
background1 = color(242, 234, 214);
background2 = color(218, 221, 220);
line1 = color(38, 63, 86);
line2 = color(125, 118, 103);
line3 = color(185, 176, 179);
eclipse1 = color(25, 82, 144);
eclipse2 = color(251, 203, 14);
}
function draw() {
background(255); // Set background color
fill(242, 234, 214);
noStroke();
rect(0, 0, 400, 140);
fill(background2);
noStroke();
rect(0, 140, 400, 260);
fill(line3);
beginShape();
vertex(220, 0);
bezierVertex(350, 440, 370, 440, 390, 440);
endShape(CLOSE);
noStroke();
fill(eclipse2);
ellipse(200, 50, 200, 40);
noStroke();
fill(eclipse2);
ellipse(180, 220, 420, 120);
strokeWeight(4);
stroke(line2);
line(200, 0, 320, 400);
strokeWeight(8);
stroke(line1);
line(0, 30, 400, 110);
noStroke();
fill(eclipse1);
ellipse(120, 70, 60, 60);
}