java.awt.Color has a pair of specific colors - for example, Color.RED (or Color.red) is a public static value that returns Color(255, 0, 0). But there is only a limited set of colors defined - 13 in my account.
Are there any Java libraries that have colors in the HTML color scheme, so I can say something like ColorLibrary.AQUAMARINE and return # 60CC93? Or, even better, there are libraries that display the name in color, so what can I say Color color = ColorMap.get("aquamarine");?
source
share