A nice looking, easy-to-use color dialog in Java.
JColorDialog is meant as an improvement over the default JColorChooser. It provides a better looking interface for to picking colors.
The component is extremely easy to use. Simply add the following in your code:
Color chosenColor = JColorDialog.showColorDialog();
Alternatively, you can also provide a starting color:
Color myColor = Color.RED;
Color chosenColor = JColorDialog.showColorDialog(myColor);