> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://spagnuolo.sketchpad.cc/sp/pad/view/ro.0N5CnrV7qxd/rev.759
 * 
 * authors: 
 *   Cheyenne Spiers

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



// Name: 
// Date: 23/02/2016
// Title:

size (300,300);
background(250,250,250);


//bluesquare
strokeWeight(6);
fill(100,100,250);
rect(90,150,150,100);


//greensquare
fill(10,200,20);
rect(50,250,50,80);


//yellowsquare 
strokeWeight(5);
fill(250,250,0);
rect(10,50,150,100);

//pinksqaure
fill(250,180,250);
rect(80,200,50,70);


//orangesquare 
strokeWeight(5);
fill(250,150,100);
rect(180,90,100,90);


//aquasquare
strokeWeight(6);
fill(200,250,250);
rect(5,10,90,100);



//purplesquare
strokeWeight(6);
fill(170,150,250);
rect(250,20,90,100);


//brightgreensquare
fill(10,250,60);
rect(180,240,65,170);