//Lab2b wk2 Reproduce Paul Klee's Fire In The Evening void setup(){ size(250, 260); stroke (255); background(103, 0, 0,255); //good color } void draw(){ noStroke(); fill(250,141,192,255);//pink rect (3,3,244,9); //fill(115,55,152,100);//transparent purple //rect (3,3,244,252); fill(60, 70, 237,255);//blue rect(3,12, 244, 19); fill (139,13,95,255);//top right rect purple rect(3,27,49,13); //1 fill(62,5,16,255);//dark purple rect(3,37,49,12);//2 fill (139,13,95,255);//purple as top of this rect rect(3,49,49, 18);//3 fill(113,44,110,255);//violet rect(3,63,49,11);//4 fill(130,36,137,255);//other violet rect(3,74,49,11);//5 fill (185,143,222,255);//lilac rect (3,83,49,9);//6 fill (137,36,101,255);//other other violet rect (3,92, 49,8); //7 fill (82,24,58,255);//other dark purple rect (3,100,49,9); //8 fill (103,110,227,255);//2nd blue down rect (52,27,195,20); fill(108,54,81, 255); //top two stripes of middle rect rect(52,47,110,9); fill(82,24,53, 255); rect (52,56,110,9); fill(180,48,27,255);//smallest horizontal composite rect rect(52,64,28,4); //1 fill(157,11,11,255);//2 rect(52,68, 28, 4);//2 fill(82,24,53,255);//3 rect(52,72, 28,4); //3 fill(59,28,22,255);//4 rect(52,76,28,5); //4 fill(131,43,25,255); //5 rect(52,75,28,17); //5 fill(242,69,34,255);//6 rect(52,92,28,16); //6 fill(98,50,38,255); //lefthand brown square rect(3,108,15,18); fill(194,175,206);//pale square rect(3,126,15,15); fill(124,10,33,255);//burgundy rect(3,141,15,4); fill(114,27,149);//purple rect(3,145,15,3); fill(124,10,33,255);//burgundy rect(3,148,15,4); fill(114,27,149);//purple rect(3,152,15,4); fill(39,9,27,255);//dark rect(3,156,15,3); fill(114,27,149);//purple rect(3,160,15,4); fill(124,10,33,255);//burgundy rect(3,164,15,5); fill(245,38,10,255); //orange strip top of lowest rectangle form rect(18,108,62,7); fill(39,9,27,255);//darkest strip rect(18,120,62,7); fill(114,27,149); //purple rect(18,127,62,7); fill(124,10,33,255);//burgundy rect(18,134,62,8); fill(100,48,58); //dusty rect(18,142,62,8); fill(54,19,26); //aubergine rect(18,148,62,5); fill(137,37,10,255); //chestnut rect(18,153,62,6); fill(76,91,134,255); //blue rect(18,159,62,11); fill(114,27,149,255); //purple rect(3,170,77,11); fill(207,129,216,255); //lilac rect(3,181,77,11); fill(144,180,160); // green rect(3,192,77,10); fill(222,69,18,255); //orange rect(3,202,77,9); fill(107,134,128,255); // grey blue rect(3,211,77,8); fill(111,49,93,255); //purple rect(3,219,77,10); fill(88,30,19,255); // brown stripe middle rect(80,65,79,9); fill(119,60,152,255);// purple stripe middle rect(80,71,79,10); fill(180,48,27,255); //central rect purple rect(80,81,48,6);//1 fill(88,30,19,255); //chestnut rect(80,87,48,5);//2 fill(119,60,152,255);//dark brown rect(80,93,48,5); //3 fill(180,48,27,255); //purple rect(80,98,48,8);//4 fill(98,50,38,255);//brown level with orange square rect(80,104,48,13); fill(162,80,77,255);//pinky brown rect(80,117,48,15); fill(162,43,3,255);//chestnut rect(80,131,48,15); fill(112,51,126,255); //purple level with big grey rect(80,145,48,25); fill(39,9,27,255); //darkest rect(80,170,48,25); fill(183, 13, 127,255); //magenta top right rect(159,47,88,18); fill(153,81,250,255); //lilac rect(159,65,88,30); fill(81,104,250,255); //blue rect(159,88,88,30); fill(148,104,175); //grey rect(127,80,32,13); fill(75,23,53,2550); //purple rect(127,93,32,5); fill(57,2,34,255);//dark purple rect(127,98,32,6); fill(242,50,17); //orange square rect(127,114,32,29); fill(183,13,127,255); //second right hand magenta rect(159,113,88,15); fill(160,125,178,255);//second right hand grey rect(159,128,88,15); fill(194,175,206);//large grey rect rect (127,143,120,30); fill(245,38,10,255); //long orange right hand stripe rect (127,173,120,10); fill(165,74,52,255);//long brown right hand stripe rect(127,183,120,10); fill(100,64,87,255);//big bottom heather strip rect(79,193,168,18); fill(134,44,41,255);//big redbrown strip rect(79,211,168,18); fill(81,121,113);//bottom green strip rect(3,230,244,14); fill(214,41,22,255); //bottom orange strip rect(3,244,244,14); }