Here you can find the source of minDark(final int colorValue)
public static int minDark(final int colorValue)
//package com.java2s; //License from project: Open Source License public class Main { public static int minDark(final int colorValue) { return colorValue / 2; }/*from ww w .j ava 2 s . co m*/ }