Your preferences have been saved!
» Parses a java.awt.Color from an HTML color string in the - import java.awt.Color; /** A set of tools for analyzing and manipulating colors */ public class ColorUtils {   /**    * Parses a java.awt.Color from an HTML color string in the form '#RRGGBB' where RR, GG, and BB    * are the red, green, and blue bytes in hexadecimal form    *     * @param htmlColor The HTML color string to parse    * @return The java.awt.Color represented by the HTML color string... 05 Feb 12 » Returns color based on 0-9 scale ranging from black to - import java.awt.Color; public class Util {      /**    * Returns color based on 0-9 scale ranging from black to green.    */   public static Color kgColor(int i) {     int[][] rgb = {             {21, 0, 0},             {99, 0, 0},... 05 Feb 12 » Returns color based on 0-9 scale ranging from green to - import java.awt.Color; public class Util {      /**    * Returns color based on 0-9 scale ranging from green to yellow.    */   public static Color gyColor(int i) {     int[][] rgb = {             {0, 164, 0},             {19, 174, 0},... 05 Feb 12 » Returns black-red-yellow-green color scale - import java.awt.Color; public class Util {   /**    * Returns black-red-yellow-green color scale.    */   public static Color[] krygColorScale() {     int[][] rgb = {         {0, 0, 0},         {21, 0, 0},         {44, 0, 0},... 05 Feb 12