> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.YpINxzRIBEx/rev.1
 * 
 * authors: 
 *   Sofia Gomez

 * license (unless otherwise specified): 
 *   creative commons attribution-share alike 3.0 license.
 *   https://creativecommons.org/licenses/by-sa/3.0/ 
 */ 



size(500, 500); 
 
background(196, 190, 178);
 
stroke (255 ,255 ,255);
strokeWeight(3);
line (0, 0, 45, 45);

stroke (255, 255, 255);
strokeWeight (3);
line (500, 500, 45, 45);

stroke (255, 255, 255);
strokeWeight (3);
line (500, 0, 440, 60);

stroke (255, 255, 255);
strokeWeight (3);
line (0, 500, 440, 60); 

fill (111, 159, 165);
rect (50, 50, 400, 400);

fill (255, 252, 88);
ellipse (250, 250, 400, 400);

fill (255, 255, 255);
rectMode (CENTER);
rect (250, 250, 100, 100);

stroke (255, 255, 255); 
fill (259, 166, 60);
ellipseMode (CENTER);
ellipse (250, 250, 300, 300);

fill (255, 255, 255);
ellipseMode (CENTER);
ellipse (250, 250, 200, 200);