final float green = java.awt.Color.RGBtoHSB(0, 255, 0, null)[0];
final float deltaSaturation = 0.05f;
int rgb = java.awt.Color.HSBtoRGB(red, deltaSaturation, hsbvals[2]);
java.awt.Color cx = new java.awt.Color(rgb);
bgColor_Err = new Color(Display.getCurrent(), new RGB(cx.getRed(),
cx.getGreen(), cx.getBlue()));
rgb = java.awt.Color.HSBtoRGB(green, 2 * deltaSaturation, hsbvals[2]);
cx = new java.awt.Color(rgb);
bgColor_Ok = new Color(Display.getCurrent(), new RGB(cx.getRed(),
cx.getGreen(), cx.getBlue()));
rgb = java.awt.Color.HSBtoRGB(green, deltaSaturation, hsbvals[2]);
cx = new java.awt.Color(rgb);
bgColor_AlmostOk = new Color(Display.getCurrent(), new RGB(cx.getRed(),
cx.getGreen(), cx.getBlue()));
disposeColors = true;
}
}