xxxxxxxxxx
size(400,400); //sets the size of the canvas to 400px by 400 px
background(183,93,105); //sets the background color to white (or 255,255,255)
rectMode(CENTER); //sets the rectangle mode to draw by center coordinates, width, and height
noStroke(); // removes outlines from any shape drawn below this line
fill(119,76,96,75); //sets fill color(and transparency of 70%) for any shape drawn below this line
rect(100,300,350,350); //draws a rectangle at location (100,300) with width and height 350 px
fill(55,37,73,75); //sets fill color (and transparency of 70%) for any shape drawn below this line
rect(300,100,350,350); //draws a rectangle at location (300,100) with width and height 350 px