Web color enum : Color « 2D Graphics GUI « Java






Web color enum

   

/*
 * @(#)WebColor.java  1.0 Apr 27, 2008
 *
 *  The MIT License
 *
 *  Copyright (c) 2008 Malachi de AElfweald <malachid@gmail.com>
 *
 *  Permission is hereby granted, free of charge, to any person obtaining a copy
 *  of this software and associated documentation files (the "Software"), to deal
 *  in the Software without restriction, including without limitation the rights
 *  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 *  copies of the Software, and to permit persons to whom the Software is
 *  furnished to do so, subject to the following conditions:
 *
 *  The above copyright notice and this permission notice shall be included in
 *  all copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 *  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 *  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 *  THE SOFTWARE.
 */
//package org.eoti.awt;

import java.awt.*;

public enum WebColor
{
  AliceBlue(0xF0, 0xF8, 0xFF),
  AntiqueWhite(0xFA, 0xEB, 0xD7),
  Aqua(0x00, 0xFF, 0xFF),
  AquaMarine(0x7F, 0xFF, 0xD4),
  Azure(0xF0, 0xFF, 0xFF),
  Beige(0xF5, 0xF5, 0xDC),
  Bisque(0xFF, 0xE4, 0xC4),
  Black(0x00, 0x00, 0x00),
  BlanchedAlmond(0xFF, 0xEB, 0xCD),
  Blue(0x00, 0x00, 0xFF),
  BlueViolet(0x8A, 0x2B, 0xE2),
  Brown(0xA5, 0x2A, 0x2A),
  BurlyWood(0xDE, 0xB8, 0x87),
  CadetBlue(0x5F, 0x9E, 0xA0),
  Chartreuse(0x7F, 0xFF, 0x00),
  Chocolate(0xD2, 0x69, 0x1E),
  Coral(0xFF, 0x7F, 0x50),
  CornFlowerBlue(0x64, 0x95, 0xED),
  CornSilk(0xFF, 0xF8, 0xDC),
  Crimson  (0xDC, 0x14, 0x3C),
  Cyan(0x00, 0xFF, 0xFF),
  DarkBlue(0x00, 0x00, 0x8B),
  DarkCyan(0x00, 0x8B, 0x8B),
  DarkGoldenRod(0xB8, 0x86, 0x0B),
  DarkGray(0xA9, 0xA9, 0xA9),
  DarkGreen(0x00, 0x64, 0x00),
  DarkKhaki(0xBD, 0xB7, 0x6B),
  DarkMagenta(0x8B, 0x00, 0x8B),
  DarkOliveGreen(0x55, 0x6B, 0x2F),
  DarkOrange(0xFF, 0x8C, 0x00),
  DarkOrchid(0x99, 0x32, 0xCC),
  DarkRed(0x8B, 0x00, 0x00),
  DarkSalmon(0xE9, 0x96, 0x7A),
  DarkSeaGreen(0x8F, 0xBC, 0x8F),
  DarkSlateBlue(0x48, 0x3D, 0x8B),
  DarkSlateGray(0x2F, 0x4F, 0x4F),
  DarkTurquoise(0x00, 0xCE, 0xD1),
  DarkViolet(0x94, 0x00, 0xD3),
  DeepPink(0xFF, 0x14, 0x93),
  DeepSkyBlue(0x00, 0xBF, 0xFF),
  DimGray(0x69, 0x69, 0x69),
  DodgerBlue(0x1E, 0x90, 0xFF),
  FireBrick(0xB2, 0x22, 0x22),
  FloralWhite(0xFF, 0xFA, 0xF0),
  ForestGreen(0x22, 0x8B, 0x22),
  Fuchsia(0xFF, 0x00, 0xFF),
  Gainsboro(0xDC, 0xDC, 0xDC),
  GhostWhite(0xF8, 0xF8, 0xFF),
  Gold(0xFF, 0xD7, 0x00),
  GoldenRod(0xDA, 0xA5, 0x20),
  Gray(0x80, 0x80, 0x80),
  Green(0x00, 0x80, 0x00),
  GreenYellow(0xAD, 0xFF, 0x2F),
  HoneyDew(0xF0, 0xFF, 0xF0),
  HotPink(0xFF, 0x69, 0xB4),
  IndianRed(0xCD, 0x5C, 0x5C),
  Indigo(0x4B, 0x00, 0x82),
  Ivory(0xFF, 0xFF, 0xF0),
  Khaki(0xF0, 0xE6, 0x8C),
  Lavender(0xE6, 0xE6, 0xFA),
  LavenderBlush(0xFF, 0xF0, 0xF5),
  LawnGreen(0x7C, 0xFC, 0x00),
  LemonChiffon(0xFF, 0xFA, 0xCD),
  LightBlue(0xAD, 0xD8, 0xE6),
  LightCoral(0xF0, 0x80, 0x80),
  LightCyan(0xE0, 0xFF, 0xFF),
  LightGoldenRodYellow(0xFA, 0xFA, 0xD2),
  LightGreen(0x90, 0xEE, 0x90),
  LightGray(0xD3, 0xD3, 0xD3),
  LightPink(0xFF, 0xB6, 0xC1),
  LightSalmon(0xFF, 0xA0, 0x7A),
  LightSeaGreen(0x20, 0xB2, 0xAA),
  LightSkyBlue(0x87, 0xCE, 0xFA),
  LightSlateGray(0x77, 0x88, 0x99),
  LightSteelBlue(0xB0, 0xC4, 0xDE),
  LightYellow(0xFF, 0xFF, 0xE0),
  Lime(0x00, 0xFF, 0x00),
  LimeGreen(0x32, 0xCD, 0x32),
  Linen(0xFA, 0xF0, 0xE6),
  Magenta(0xFF, 0x00, 0xFF),
  Maroon(0x80, 0x00, 0x00),
  MediumAquaMarine(0x66, 0xCD, 0xAA),
  MediumBlue(0x00, 0x00, 0xCD),
  MediumOrchid(0xBA, 0x55, 0xD3),
  MediumPurple(0x93, 0x70, 0xDB),
  MediumSeaGreen(0x3C, 0xB3, 0x71),
  MediumSlateBlue(0x7B, 0x68, 0xEE),
  MediumSpringGreen(0x00, 0xFA, 0x9A),
  MediumTurquoise(0x48, 0xD1, 0xCC),
  MediumVioletRed(0xC7, 0x15, 0x85),
  MidnightBlue(0x19, 0x19, 0x70),
  MintCream(0xF5, 0xFF, 0xFA),
  MistyRose(0xFF, 0xE4, 0xE1),
  Moccasin(0xFF, 0xE4, 0xB5),
  NavajoWhite(0xFF, 0xDE, 0xAD),
  Navy(0x00, 0x00, 0x80),
  OldLace(0xFD, 0xF5, 0xE6),
  Olive(0x80, 0x80, 0x00),
  OliveDrab(0x6B, 0x8E, 0x23),
  Orange(0xFF, 0xA5, 0x00),
  OrangeRed(0xFF, 0x45, 0x00),
  Orchid(0xDA, 0x70, 0xD6),
  PaleGoldenRod(0xEE, 0xE8, 0xAA),
  PaleGreen(0x98, 0xFB, 0x98),
  PaleTurquoise(0xAF, 0xEE, 0xEE),
  PaleVioletRed(0xDB, 0x70, 0x93),
  PapayaWhip(0xFF, 0xEF, 0xD5),
  PeachPuff(0xFF, 0xDA, 0xB9),
  Peru(0xCD, 0x85, 0x3F),
  Pink(0xFF, 0xC0, 0xCB),
  Plum(0xDD, 0xA0, 0xDD),
  PowderBlue(0xB0, 0xE0, 0xE6),
  Purple(0x80, 0x00, 0x80),
  Red(0xFF, 0x00, 0x00),
  RosyBrown(0xBC, 0x8F, 0x8F),
  RoyalBlue(0x41, 0x69, 0xE1),
  SaddleBrown(0x8B, 0x45, 0x13),
  Salmon(0xFA, 0x80, 0x72),
  SandyBrown(0xF4, 0xA4, 0x60),
  SeaGreen(0x2E, 0x8B, 0x57),
  SeaShell(0xFF, 0xF5, 0xEE),
  Sienna(0xA0, 0x52, 0x2D),
  Silver(0xC0, 0xC0, 0xC0),
  SkyBlue(0x87, 0xCE, 0xEB),
  SlateBlue(0x6A, 0x5A, 0xCD),
  SlateGray(0x70, 0x80, 0x90),
  Snow(0xFF, 0xFA, 0xFA),
  SpringGreen(0x00, 0xFF, 0x7F),
  SteelBlue(0x46, 0x82, 0xB4),
  Tan(0xD2, 0xB4, 0x8C),
  Teal(0x00, 0x80, 0x80),
  Thistle(0xD8, 0xBF, 0xD8),
  Tomato(0xFF, 0x63, 0x47),
  Turquoise(0x40, 0xE0, 0xD0),
  Violet(0xEE, 0x82, 0xEE),
  Wheat(0xF5, 0xDE, 0xB3),
  White(0xFF, 0xFF, 0xFF),
  WhiteSmoke(0xF5, 0xF5, 0xF5),
  Yellow(0xFF, 0xFF, 0x00),
  YellowGreen(0x9A, 0xCD, 0x32);

  WebColor(int r, int g, int b){this.r=r;this.g=g;this.b=b;}
  private final int r, g, b;
  public int getRed(){return r;}
  public int getGreen(){return g;}
  public int getBlue(){return b;}
  public Color getColor(){return new Color(r,g,b);}
  public int getRGB(){return getColor().getRGB();}
  public String getRGBString()
  {
    /**
     * toHexString will return "0" instead of "00"
     * String.format will not 0-pad Strings or Hex
     * Have to do it manually...
     */
    return String.format(
      "#%s%s%s",
      (r<0x10?"0":"")+Integer.toHexString(r),
      (g<0x10?"0":"")+Integer.toHexString(g),
      (b<0x10?"0":"")+Integer.toHexString(b)
    );
  }
}

   
    
    
  








Related examples in the same category

1.Color class is used to work with colors in Java 2D
2.Color Utilities: common color operations
3.Color Difference
4.Rainbow ColorRainbow Color
5.XOR colorXOR color
6.Color Gradient
7.Common color utilities
8.Drawing with Color
9.Color fading animation
10.140 colors - defined for X Window System listed in O'Reilly html pocket reference 87pp
11.Color Util
12.Color Factory
13.An efficient color quantization algorithm
14.Utility for checking colors given either hexa or natural language string descriptions.
15.Derives a color by adding the specified offsets to the base color's hue, saturation, and brightness values
16.Map colors into names and vice versa.
17.Converts a given string into a color.
18.If the color is equal to one of the defined constant colors, that name is returned instead.
19.Converts the String representation of a color to an actual Color object.
20.Returns blue-yellow-red color scale
21.Returns green-yellow-red-black color scale
22.Returns black-red-yellow-green color scale
23.Returns color based on 0-9 scale ranging from green to yellow
24.Returns color based on 0-9 scale ranging from yellow to red
25.Returns color based on 0-9 scale ranging from black to green
26.Returns n-dimensional array of colors for given nx3 integer array of RGB values
27.Utility class for managing resources such as colors, fonts, images, etc.
28.Make a color transparent
29.Return a Color object given a string representation of it
30.Return a string representation of a color
31.Serializes a color to its HTML markup (e.g. "#ff0000" for red)
32.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
33.Performs a somewhat subjective analysis of a color to determine how dark it looks to a user
34.Lightens a color by a given amount
35.Darkens a color by a given amount
36.Blend two colors
37.Utility for working with natively-ordered integer-packed RGBA-format colours.
38.HSV to RGB
39.A widget to manipulate an RGBA colour.