color a, b, c, d, e; void setup() { noStroke(); a = color(165, 167, 20); b = color(77, 86, 59); c = color(42, 106, 105); d = color(165, 89, 20); e = color(146, 150, 127); noLoop(); } void draw() { drawBand(a, b, c, d, e, 0, 4); drawBand(c, a, d, b, e, height/2, 4); } void drawBand(color v, color w, color x, color y, color z, int ypos, int barWidth) { int num = 5; color[] colorOrder = { v, w, x, y, z }; for(int i=0; i