> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://spagnuolo.sketchpad.cc/sp/pad/view/ro.LBInxW8O1ph/rev.1061
 * 
 * authors: 
 *   Isobel Pearse

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



// Name:
// Date:
// Title:


size(500,500);

//blue square
strokeWeight(5);
fill(100,100,250);
rect(105,100,80,80);

//green square
strokeWeight(5);
fill(100,250,100);
rect(250,200,80,80);

//red square
strokeWeight(5);
fill(250,100,100)
rect(200,350,80,80);

//yellow square
strokeWeight(5);
fill(250,250,180);
rect(75,270,80,80);

//purple square 
strokeWeight(5)
fill(275,135,290);
rect(375,255,80,80);

//pink square
strokeWeight(5)
fill(180,200,280)
rect(320,100,80,80)

//lines
line(0,120,500,120);
line(0,225,500,225);
line(0,300,500,300);
line(0,400,500,400);