Java tutorial
//package com.java2s; import java.util.Random; public class Main { public static int getRandomColor() { return new Random().nextInt(40) + 215; } }