//Class #2 9/5/2019 - Shapes practice 1
//Vincent Castillo
//additive colors (R, G, B)
size( 640, 480);
background( 200, 255, 200 );
fill( 0, 0, 0);
textSize(26);
text( "This message will appear on the screen.", 40, 40 );
fill( 255, 200, 200);
rect( 80, 80, 30, 30);
fill( 200, 255, 255);
ellipse( 120, 80, 25, 25);