Here you can find the source of randomColor()
public static Color randomColor()
//package com.java2s; import java.awt.Color; public class Main { public static Color randomColor() { return new Color((int) (Math.random() * 255), (int) (Math.random() * 255), (int) (Math.random() * 255)); }//from w w w .j a va 2 s .co m }