Genere colores oscuros aleatorios programáticamente en Android

Random rnd = new Random();
paint.setARGB(255, rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256));
RakshaD