import java.awt.Color;
import java.io.PrintStream;
import java.util.ArrayList;

public class L04Ex04_shallow {

	public static void main(String[] args) {
		PrintStream output = System.out;

		Color red = new Color(255, 0, 0);
		Color orange = new Color(255, 165, 0);
		Color yellow = new Color(255, 255, 0);
		Color green = new Color(0, 255, 0);
		Color blue = new Color(0, 0, 255);
		Color purple = new Color(128, 0, 128);

		ArrayList<Color> theRainbow = new ArrayList<Color>();
		theRainbow.add(red);
		theRainbow.add(orange);
		theRainbow.add(yellow);
		theRainbow.add(green);
		theRainbow.add(blue);
		theRainbow.add(purple);

		ArrayList<Color> theRainbow2 = new ArrayList<Color>();
		theRainbow2.add(red);
		theRainbow2.add(orange);
		theRainbow2.add(yellow);
		theRainbow2.add(green);
		theRainbow2.add(blue);
		theRainbow2.add(purple);

	}
}
