Flag Of France


  // French Flag
  
  // Reference: http://en.wikipedia.org/wiki/Flag_of_France#Design
  
  int kHeight = 300; // The only number that needs changing
  size(kHeight*3/2, kHeight);
  
  color blueColor = color(0,85,164);
  color whiteColor = color(255,255,255);
  color redColor = color(250,60,50);
  
  smooth();
  noStroke();
  
  float stripeWidth = width/3.0;
  
  fill(blueColor);
  rect(0,0, stripeWidth, height);
  
  fill(whiteColor);
  rect(stripeWidth,0, stripeWidth, height);
  
  fill(redColor);
  rect(stripeWidth*2,0, stripeWidth, height);