001package squidpony.squidgrid.gui.gdx;
002
003import com.badlogic.gdx.graphics.Color;
004import com.badlogic.gdx.graphics.Colors;
005import com.badlogic.gdx.math.MathUtils;
006import squidpony.ArrayTools;
007import squidpony.StringKit;
008import squidpony.squidmath.CrossHash;
009import squidpony.squidmath.GapShuffler;
010import squidpony.squidmath.IRNG;
011import squidpony.squidmath.NumberTools;
012
013import java.io.Serializable;
014
015/**
016 * Allows for the use of custom colors with custom names.
017 * <p>
018 * These colors are comparable for equality but the ordering of them is based on
019 * their hex values.
020 * <p>
021 * Has some built in palettes available as SColor arrays.
022 *
023 * @author Eben Howard - http://squidpony.com - howard@squidpony.com
024 * @see SquidColorCenter Another way to manage colors if you don't want to use preallocated instances.
025 */
026public class SColor extends Color implements Serializable {
027    private static final long serialVersionUID = 1L;
028    public final String name;
029    private float calculatedFloat;
030
031    /**
032     * This color constant "Alice Blue" has RGB code {@code 0xF0F8FF}, red 0.9411765, green 0.972549, blue 1.0, alpha 1, hue 0.57777786, saturation 0.058823526, and value 1.0.
033     * It can be represented as a packed float with the constant {@code -0x1.fff1ep126F}.
034     * <pre>
035     * <font style='background-color: #F0F8FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F0F8FF; color: #000000'>&nbsp;@&nbsp;</font>
036     * <font style='background-color: #F0F8FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F0F8FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F0F8FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F0F8FF'>&nbsp;@&nbsp;</font><font style='background-color: #F0F8FF; color: #888888'>&nbsp;@&nbsp;</font>
037     * <font style='background-color: #F0F8FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F0F8FF; color: #ffffff'>&nbsp;@&nbsp;</font>
038     * </pre>
039     */
040    public static final SColor ALICE_BLUE = new SColor(0xF0F8FF, "Alice Blue");
041
042    /**
043     * This color constant "Alizarin" has RGB code {@code 0xE32636}, red 0.8901961, green 0.14901961, blue 0.21176471, alpha 1, hue 0.98589075, saturation 0.8325991, and value 0.8901961.
044     * It can be represented as a packed float with the constant {@code -0x1.6c4dc6p125F}.
045     * <pre>
046     * <font style='background-color: #E32636;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E32636; color: #000000'>&nbsp;@&nbsp;</font>
047     * <font style='background-color: #E32636;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E32636'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E32636'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E32636'>&nbsp;@&nbsp;</font><font style='background-color: #E32636; color: #888888'>&nbsp;@&nbsp;</font>
048     * <font style='background-color: #E32636;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E32636; color: #ffffff'>&nbsp;@&nbsp;</font>
049     * </pre>
050     */
051    public static final SColor ALIZARIN = new SColor(0xE32636, "Alizarin");
052
053    /**
054     * This color constant "Aloewood" has RGB code {@code 0x6A432D}, red 0.41568628, green 0.2627451, blue 0.1764706, alpha 1, hue 0.060109377, saturation 0.5754717, and value 0.41568628.
055     * It can be represented as a packed float with the constant {@code -0x1.5a86d4p125F}.
056     * <pre>
057     * <font style='background-color: #6A432D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6A432D; color: #000000'>&nbsp;@&nbsp;</font>
058     * <font style='background-color: #6A432D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6A432D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6A432D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6A432D'>&nbsp;@&nbsp;</font><font style='background-color: #6A432D; color: #888888'>&nbsp;@&nbsp;</font>
059     * <font style='background-color: #6A432D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6A432D; color: #ffffff'>&nbsp;@&nbsp;</font>
060     * </pre>
061     */
062    public static final SColor ALOEWOOD = new SColor(0x6A432D, "Aloewood");
063
064    /**
065     * This color constant "Aloewood Brown" has RGB code {@code 0x5A6457}, red 0.3529412, green 0.39215687, blue 0.34117648, alpha 1, hue 0.2948718, saturation 0.13, and value 0.39215687.
066     * It can be represented as a packed float with the constant {@code -0x1.aec8b4p125F}.
067     * <pre>
068     * <font style='background-color: #5A6457;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5A6457; color: #000000'>&nbsp;@&nbsp;</font>
069     * <font style='background-color: #5A6457;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5A6457'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5A6457'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5A6457'>&nbsp;@&nbsp;</font><font style='background-color: #5A6457; color: #888888'>&nbsp;@&nbsp;</font>
070     * <font style='background-color: #5A6457;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5A6457; color: #ffffff'>&nbsp;@&nbsp;</font>
071     * </pre>
072     */
073    public static final SColor ALOEWOOD_BROWN = new SColor(0x5A6457, "Aloewood Brown");
074
075    /**
076     * This color constant "Amaranth" has RGB code {@code 0xE52B50}, red 0.8980392, green 0.16862746, blue 0.3137255, alpha 1, hue 0.96684587, saturation 0.8122271, and value 0.8980392.
077     * It can be represented as a packed float with the constant {@code -0x1.a057cap125F}.
078     * <pre>
079     * <font style='background-color: #E52B50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E52B50; color: #000000'>&nbsp;@&nbsp;</font>
080     * <font style='background-color: #E52B50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E52B50'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E52B50'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E52B50'>&nbsp;@&nbsp;</font><font style='background-color: #E52B50; color: #888888'>&nbsp;@&nbsp;</font>
081     * <font style='background-color: #E52B50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E52B50; color: #ffffff'>&nbsp;@&nbsp;</font>
082     * </pre>
083     */
084    public static final SColor AMARANTH = new SColor(0xE52B50, "Amaranth");
085
086    /**
087     * This color constant "Amber" has RGB code {@code 0xFFBF00}, red 1.0, green 0.7490196, blue 0.0, alpha 1, hue 0.12483668, saturation 1.0, and value 1.0.
088     * It can be represented as a packed float with the constant {@code -0x1.017ffep125F}.
089     * <pre>
090     * <font style='background-color: #FFBF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFBF00; color: #000000'>&nbsp;@&nbsp;</font>
091     * <font style='background-color: #FFBF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFBF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFBF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFBF00'>&nbsp;@&nbsp;</font><font style='background-color: #FFBF00; color: #888888'>&nbsp;@&nbsp;</font>
092     * <font style='background-color: #FFBF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFBF00; color: #ffffff'>&nbsp;@&nbsp;</font>
093     * </pre>
094     */
095    public static final SColor AMBER = new SColor(0xFFBF00, "Amber");
096
097    /**
098     * This color constant "Amber Dye" has RGB code {@code 0xCA6924}, red 0.7921569, green 0.4117647, blue 0.14117648, alpha 1, hue 0.06927705, saturation 0.8217822, and value 0.7921569.
099     * It can be represented as a packed float with the constant {@code -0x1.48d394p125F}.
100     * <pre>
101     * <font style='background-color: #CA6924;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CA6924; color: #000000'>&nbsp;@&nbsp;</font>
102     * <font style='background-color: #CA6924;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CA6924'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CA6924'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CA6924'>&nbsp;@&nbsp;</font><font style='background-color: #CA6924; color: #888888'>&nbsp;@&nbsp;</font>
103     * <font style='background-color: #CA6924;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CA6924; color: #ffffff'>&nbsp;@&nbsp;</font>
104     * </pre>
105     */
106    public static final SColor AMBER_DYE = new SColor(0xCA6924, "Amber Dye");
107
108    /**
109     * This color constant "Amethyst" has RGB code {@code 0x9966CC}, red 0.6, green 0.4, blue 0.8, alpha 1, hue 0.75000024, saturation 0.5, and value 0.8.
110     * It can be represented as a packed float with the constant {@code -0x1.98cd32p126F}.
111     * <pre>
112     * <font style='background-color: #9966CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9966CC; color: #000000'>&nbsp;@&nbsp;</font>
113     * <font style='background-color: #9966CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9966CC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9966CC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9966CC'>&nbsp;@&nbsp;</font><font style='background-color: #9966CC; color: #888888'>&nbsp;@&nbsp;</font>
114     * <font style='background-color: #9966CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9966CC; color: #ffffff'>&nbsp;@&nbsp;</font>
115     * </pre>
116     */
117    public static final SColor AMETHYST = new SColor(0x9966CC, "Amethyst");
118
119    /**
120     * This color constant "Amur Cork Tree" has RGB code {@code 0xF3C13A}, red 0.9529412, green 0.75686276, blue 0.22745098, alpha 1, hue 0.12162161, saturation 0.7613169, and value 0.9529412.
121     * It can be represented as a packed float with the constant {@code -0x1.7583e6p125F}.
122     * <pre>
123     * <font style='background-color: #F3C13A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F3C13A; color: #000000'>&nbsp;@&nbsp;</font>
124     * <font style='background-color: #F3C13A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F3C13A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F3C13A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F3C13A'>&nbsp;@&nbsp;</font><font style='background-color: #F3C13A; color: #888888'>&nbsp;@&nbsp;</font>
125     * <font style='background-color: #F3C13A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F3C13A; color: #ffffff'>&nbsp;@&nbsp;</font>
126     * </pre>
127     */
128    public static final SColor AMUR_CORK_TREE = new SColor(0xF3C13A, "Amur Cork Tree");
129
130    /**
131     * This color constant "Apricot" has RGB code {@code 0xFBCEB1}, red 0.9843137, green 0.80784315, blue 0.69411767, alpha 1, hue 0.065315366, saturation 0.2948207, and value 0.9843137.
132     * It can be represented as a packed float with the constant {@code -0x1.639df6p126F}.
133     * <pre>
134     * <font style='background-color: #FBCEB1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBCEB1; color: #000000'>&nbsp;@&nbsp;</font>
135     * <font style='background-color: #FBCEB1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FBCEB1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FBCEB1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FBCEB1'>&nbsp;@&nbsp;</font><font style='background-color: #FBCEB1; color: #888888'>&nbsp;@&nbsp;</font>
136     * <font style='background-color: #FBCEB1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBCEB1; color: #ffffff'>&nbsp;@&nbsp;</font>
137     * </pre>
138     */
139    public static final SColor APRICOT = new SColor(0xFBCEB1, "Apricot");
140
141    /**
142     * This color constant "Aqua" has RGB code {@code 0x00FFFF}, red 0.0, green 1.0, blue 1.0, alpha 1, hue 0.5, saturation 1.0, and value 1.0.
143     * It can be represented as a packed float with the constant {@code -0x1.fffep126F}.
144     * <pre>
145     * <font style='background-color: #00FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FFFF; color: #000000'>&nbsp;@&nbsp;</font>
146     * <font style='background-color: #00FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #00FFFF; color: #888888'>&nbsp;@&nbsp;</font>
147     * <font style='background-color: #00FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
148     * </pre>
149     */
150    public static final SColor AQUA = new SColor(0x00FFFF, "Aqua");
151
152    /**
153     * This color constant "Aquamarine" has RGB code {@code 0x7FFFD4}, red 0.49803922, green 1.0, blue 0.83137256, alpha 1, hue 0.4440105, saturation 0.50196075, and value 1.0.
154     * It can be represented as a packed float with the constant {@code -0x1.a9fefep126F}.
155     * <pre>
156     * <font style='background-color: #7FFFD4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7FFFD4; color: #000000'>&nbsp;@&nbsp;</font>
157     * <font style='background-color: #7FFFD4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7FFFD4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7FFFD4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7FFFD4'>&nbsp;@&nbsp;</font><font style='background-color: #7FFFD4; color: #888888'>&nbsp;@&nbsp;</font>
158     * <font style='background-color: #7FFFD4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7FFFD4; color: #ffffff'>&nbsp;@&nbsp;</font>
159     * </pre>
160     */
161    public static final SColor AQUAMARINE = new SColor(0x7FFFD4, "Aquamarine");
162
163    /**
164     * This color constant "Army Green" has RGB code {@code 0x4B5320}, red 0.29411766, green 0.3254902, blue 0.1254902, alpha 1, hue 0.19281054, saturation 0.61445785, and value 0.3254902.
165     * It can be represented as a packed float with the constant {@code -0x1.40a696p125F}.
166     * <pre>
167     * <font style='background-color: #4B5320;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B5320; color: #000000'>&nbsp;@&nbsp;</font>
168     * <font style='background-color: #4B5320;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4B5320'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4B5320'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4B5320'>&nbsp;@&nbsp;</font><font style='background-color: #4B5320; color: #888888'>&nbsp;@&nbsp;</font>
169     * <font style='background-color: #4B5320;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B5320; color: #ffffff'>&nbsp;@&nbsp;</font>
170     * </pre>
171     */
172    public static final SColor ARMY_GREEN = new SColor(0x4B5320, "Army Green");
173
174    /**
175     * This color constant "Asparagus" has RGB code {@code 0x7BA05B}, red 0.48235294, green 0.627451, blue 0.35686275, alpha 1, hue 0.25603878, saturation 0.43125, and value 0.627451.
176     * It can be represented as a packed float with the constant {@code -0x1.b740f6p125F}.
177     * <pre>
178     * <font style='background-color: #7BA05B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7BA05B; color: #000000'>&nbsp;@&nbsp;</font>
179     * <font style='background-color: #7BA05B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7BA05B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7BA05B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7BA05B'>&nbsp;@&nbsp;</font><font style='background-color: #7BA05B; color: #888888'>&nbsp;@&nbsp;</font>
180     * <font style='background-color: #7BA05B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7BA05B; color: #ffffff'>&nbsp;@&nbsp;</font>
181     * </pre>
182     */
183    public static final SColor ASPARAGUS = new SColor(0x7BA05B, "Asparagus");
184
185    /**
186     * This color constant "Atomic Tangerine" has RGB code {@code 0xFF9966}, red 1.0, green 0.6, blue 0.4, alpha 1, hue 0.055555582, saturation 0.6, and value 1.0.
187     * It can be represented as a packed float with the constant {@code -0x1.cd33fep125F}.
188     * <pre>
189     * <font style='background-color: #FF9966;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF9966; color: #000000'>&nbsp;@&nbsp;</font>
190     * <font style='background-color: #FF9966;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF9966'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF9966'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF9966'>&nbsp;@&nbsp;</font><font style='background-color: #FF9966; color: #888888'>&nbsp;@&nbsp;</font>
191     * <font style='background-color: #FF9966;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF9966; color: #ffffff'>&nbsp;@&nbsp;</font>
192     * </pre>
193     */
194    public static final SColor ATOMIC_TANGERINE = new SColor(0xFF9966, "Atomic Tangerine");
195
196    /**
197     * This color constant "Auburn" has RGB code {@code 0x6D351A}, red 0.42745098, green 0.20784314, blue 0.101960786, alpha 1, hue 0.05421686, saturation 0.76146793, and value 0.42745098.
198     * It can be represented as a packed float with the constant {@code -0x1.346adap125F}.
199     * <pre>
200     * <font style='background-color: #6D351A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6D351A; color: #000000'>&nbsp;@&nbsp;</font>
201     * <font style='background-color: #6D351A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6D351A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6D351A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6D351A'>&nbsp;@&nbsp;</font><font style='background-color: #6D351A; color: #888888'>&nbsp;@&nbsp;</font>
202     * <font style='background-color: #6D351A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6D351A; color: #ffffff'>&nbsp;@&nbsp;</font>
203     * </pre>
204     */
205    public static final SColor AUBURN = new SColor(0x6D351A, "Auburn");
206
207    /**
208     * This color constant "Azul" has RGB code {@code 0x007FFF}, red 0.0, green 0.49803922, blue 1.0, alpha 1, hue 0.5836601, saturation 1.0, and value 1.0.
209     * It can be represented as a packed float with the constant {@code -0x1.fefep126F}.
210     * <pre>
211     * <font style='background-color: #007FFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #007FFF; color: #000000'>&nbsp;@&nbsp;</font>
212     * <font style='background-color: #007FFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #007FFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #007FFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #007FFF'>&nbsp;@&nbsp;</font><font style='background-color: #007FFF; color: #888888'>&nbsp;@&nbsp;</font>
213     * <font style='background-color: #007FFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #007FFF; color: #ffffff'>&nbsp;@&nbsp;</font>
214     * </pre>
215     */
216    public static final SColor AZUL = new SColor(0x007FFF, "Azul");
217
218    /**
219     * This color constant "Azure" has RGB code {@code 0xF0FFFF}, red 0.9411765, green 1.0, blue 1.0, alpha 1, hue 0.5, saturation 0.058823526, and value 1.0.
220     * It can be represented as a packed float with the constant {@code -0x1.ffffep126F}.
221     * <pre>
222     * <font style='background-color: #F0FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F0FFFF; color: #000000'>&nbsp;@&nbsp;</font>
223     * <font style='background-color: #F0FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F0FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F0FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F0FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #F0FFFF; color: #888888'>&nbsp;@&nbsp;</font>
224     * <font style='background-color: #F0FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F0FFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
225     * </pre>
226     */
227    public static final SColor AZURE = new SColor(0xF0FFFF, "Azure");
228
229    /**
230     * This color constant "Baby Blue" has RGB code {@code 0xE0FFFF}, red 0.8784314, green 1.0, blue 1.0, alpha 1, hue 0.5, saturation 0.12156862, and value 1.0.
231     * It can be represented as a packed float with the constant {@code -0x1.ffffcp126F}.
232     * <pre>
233     * <font style='background-color: #E0FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E0FFFF; color: #000000'>&nbsp;@&nbsp;</font>
234     * <font style='background-color: #E0FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E0FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E0FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E0FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #E0FFFF; color: #888888'>&nbsp;@&nbsp;</font>
235     * <font style='background-color: #E0FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E0FFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
236     * </pre>
237     */
238    public static final SColor BABY_BLUE = new SColor(0xE0FFFF, "Baby Blue");
239
240    /**
241     * This color constant "Baiko Brown" has RGB code {@code 0x857C55}, red 0.52156866, green 0.4862745, blue 0.33333334, alpha 1, hue 0.13541651, saturation 0.36090228, and value 0.52156866.
242     * It can be represented as a packed float with the constant {@code -0x1.aaf90ap125F}.
243     * <pre>
244     * <font style='background-color: #857C55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #857C55; color: #000000'>&nbsp;@&nbsp;</font>
245     * <font style='background-color: #857C55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #857C55'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #857C55'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #857C55'>&nbsp;@&nbsp;</font><font style='background-color: #857C55; color: #888888'>&nbsp;@&nbsp;</font>
246     * <font style='background-color: #857C55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #857C55; color: #ffffff'>&nbsp;@&nbsp;</font>
247     * </pre>
248     */
249    public static final SColor BAIKO_BROWN = new SColor(0x857C55, "Baiko Brown");
250
251    /**
252     * This color constant "Beige" has RGB code {@code 0xF5F5DC}, red 0.9607843, green 0.9607843, blue 0.8627451, alpha 1, hue 0.16666675, saturation 0.10204081, and value 0.9607843.
253     * It can be represented as a packed float with the constant {@code -0x1.b9ebeap126F}.
254     * <pre>
255     * <font style='background-color: #F5F5DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F5F5DC; color: #000000'>&nbsp;@&nbsp;</font>
256     * <font style='background-color: #F5F5DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F5F5DC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F5F5DC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F5F5DC'>&nbsp;@&nbsp;</font><font style='background-color: #F5F5DC; color: #888888'>&nbsp;@&nbsp;</font>
257     * <font style='background-color: #F5F5DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F5F5DC; color: #ffffff'>&nbsp;@&nbsp;</font>
258     * </pre>
259     */
260    public static final SColor BEIGE = new SColor(0xF5F5DC, "Beige");
261
262    /**
263     * This color constant "Bellflower" has RGB code {@code 0x5D3F6A}, red 0.3647059, green 0.24705882, blue 0.41568628, alpha 1, hue 0.7829459, saturation 0.4056604, and value 0.41568628.
264     * It can be represented as a packed float with the constant {@code -0x1.d47ebap125F}.
265     * <pre>
266     * <font style='background-color: #5D3F6A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5D3F6A; color: #000000'>&nbsp;@&nbsp;</font>
267     * <font style='background-color: #5D3F6A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5D3F6A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5D3F6A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5D3F6A'>&nbsp;@&nbsp;</font><font style='background-color: #5D3F6A; color: #888888'>&nbsp;@&nbsp;</font>
268     * <font style='background-color: #5D3F6A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5D3F6A; color: #ffffff'>&nbsp;@&nbsp;</font>
269     * </pre>
270     */
271    public static final SColor BELLFLOWER = new SColor(0x5D3F6A, "Bellflower");
272
273    /**
274     * This color constant "Beni Dye" has RGB code {@code 0x913225}, red 0.5686275, green 0.19607843, blue 0.14509805, alpha 1, hue 0.020061731, saturation 0.7448276, and value 0.5686275.
275     * It can be represented as a packed float with the constant {@code -0x1.4a6522p125F}.
276     * <pre>
277     * <font style='background-color: #913225;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #913225; color: #000000'>&nbsp;@&nbsp;</font>
278     * <font style='background-color: #913225;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #913225'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #913225'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #913225'>&nbsp;@&nbsp;</font><font style='background-color: #913225; color: #888888'>&nbsp;@&nbsp;</font>
279     * <font style='background-color: #913225;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #913225; color: #ffffff'>&nbsp;@&nbsp;</font>
280     * </pre>
281     */
282    public static final SColor BENI_DYE = new SColor(0x913225, "Beni Dye");
283
284    /**
285     * This color constant "Betel Nut Dye" has RGB code {@code 0x352925}, red 0.20784314, green 0.16078432, blue 0.14509805, alpha 1, hue 0.041666746, saturation 0.30188677, and value 0.20784314.
286     * It can be represented as a packed float with the constant {@code -0x1.4a526ap125F}.
287     * <pre>
288     * <font style='background-color: #352925;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #352925; color: #000000'>&nbsp;@&nbsp;</font>
289     * <font style='background-color: #352925;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #352925'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #352925'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #352925'>&nbsp;@&nbsp;</font><font style='background-color: #352925; color: #888888'>&nbsp;@&nbsp;</font>
290     * <font style='background-color: #352925;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #352925; color: #ffffff'>&nbsp;@&nbsp;</font>
291     * </pre>
292     */
293    public static final SColor BETEL_NUT_DYE = new SColor(0x352925, "Betel Nut Dye");
294
295    /**
296     * This color constant "Birch Brown" has RGB code {@code 0xB14A30}, red 0.69411767, green 0.2901961, blue 0.1882353, alpha 1, hue 0.033591747, saturation 0.7288136, and value 0.69411767.
297     * It can be represented as a packed float with the constant {@code -0x1.609562p125F}.
298     * <pre>
299     * <font style='background-color: #B14A30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B14A30; color: #000000'>&nbsp;@&nbsp;</font>
300     * <font style='background-color: #B14A30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B14A30'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B14A30'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B14A30'>&nbsp;@&nbsp;</font><font style='background-color: #B14A30; color: #888888'>&nbsp;@&nbsp;</font>
301     * <font style='background-color: #B14A30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B14A30; color: #ffffff'>&nbsp;@&nbsp;</font>
302     * </pre>
303     */
304    public static final SColor BIRCH_BROWN = new SColor(0xB14A30, "Birch Brown");
305
306    /**
307     * This color constant "Bistre" has RGB code {@code 0x3D2B1F}, red 0.23921569, green 0.16862746, blue 0.12156863, alpha 1, hue 0.06666684, saturation 0.4918033, and value 0.23921569.
308     * It can be represented as a packed float with the constant {@code -0x1.3e567ap125F}.
309     * <pre>
310     * <font style='background-color: #3D2B1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D2B1F; color: #000000'>&nbsp;@&nbsp;</font>
311     * <font style='background-color: #3D2B1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3D2B1F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3D2B1F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3D2B1F'>&nbsp;@&nbsp;</font><font style='background-color: #3D2B1F; color: #888888'>&nbsp;@&nbsp;</font>
312     * <font style='background-color: #3D2B1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D2B1F; color: #ffffff'>&nbsp;@&nbsp;</font>
313     * </pre>
314     */
315    public static final SColor BISTRE = new SColor(0x3D2B1F, "Bistre");
316
317    /**
318     * This color constant "Black" has RGB code {@code 0x000000}, red 0.0, green 0.0, blue 0.0, alpha 1, hue 0.0, saturation 0.0, and value 0.0.
319     * It can be represented as a packed float with the constant {@code -0x1.0p125F}.
320     * <pre>
321     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;@&nbsp;</font>
322     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #000000; color: #888888'>&nbsp;@&nbsp;</font>
323     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ffffff'>&nbsp;@&nbsp;</font>
324     * </pre>
325     */
326    public static final SColor BLACK = new SColor(0x000000, "Black");
327
328    /**
329     * This color constant "Black Chestnut Oak" has RGB code {@code 0x252321}, red 0.14509805, green 0.13725491, blue 0.12941177, alpha 1, hue 0.08333349, saturation 0.108108096, and value 0.14509805.
330     * It can be represented as a packed float with the constant {@code -0x1.42464ap125F}.
331     * <pre>
332     * <font style='background-color: #252321;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #252321; color: #000000'>&nbsp;@&nbsp;</font>
333     * <font style='background-color: #252321;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #252321'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #252321'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #252321'>&nbsp;@&nbsp;</font><font style='background-color: #252321; color: #888888'>&nbsp;@&nbsp;</font>
334     * <font style='background-color: #252321;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #252321; color: #ffffff'>&nbsp;@&nbsp;</font>
335     * </pre>
336     */
337    public static final SColor BLACK_CHESTNUT_OAK = new SColor(0x252321, "Black Chestnut Oak");
338
339    /**
340     * This color constant "Black Dye" has RGB code {@code 0x171412}, red 0.09019608, green 0.078431375, blue 0.07058824, alpha 1, hue 0.06666672, saturation 0.21739128, and value 0.09019608.
341     * It can be represented as a packed float with the constant {@code -0x1.24282ep125F}.
342     * <pre>
343     * <font style='background-color: #171412;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #171412; color: #000000'>&nbsp;@&nbsp;</font>
344     * <font style='background-color: #171412;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #171412'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #171412'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #171412'>&nbsp;@&nbsp;</font><font style='background-color: #171412; color: #888888'>&nbsp;@&nbsp;</font>
345     * <font style='background-color: #171412;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #171412; color: #ffffff'>&nbsp;@&nbsp;</font>
346     * </pre>
347     */
348    public static final SColor BLACK_DYE = new SColor(0x171412, "Black Dye");
349
350    /**
351     * This color constant "Black Kite" has RGB code {@code 0x351E1C}, red 0.20784314, green 0.11764706, blue 0.10980392, alpha 1, hue 0.013333321, saturation 0.4716981, and value 0.20784314.
352     * It can be represented as a packed float with the constant {@code -0x1.383c6ap125F}.
353     * <pre>
354     * <font style='background-color: #351E1C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #351E1C; color: #000000'>&nbsp;@&nbsp;</font>
355     * <font style='background-color: #351E1C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #351E1C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #351E1C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #351E1C'>&nbsp;@&nbsp;</font><font style='background-color: #351E1C; color: #888888'>&nbsp;@&nbsp;</font>
356     * <font style='background-color: #351E1C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #351E1C; color: #ffffff'>&nbsp;@&nbsp;</font>
357     * </pre>
358     */
359    public static final SColor BLACK_KITE = new SColor(0x351E1C, "Black Kite");
360
361    /**
362     * This color constant "Blood" has RGB code {@code 0xCF3A24}, red 0.8117647, green 0.22745098, blue 0.14117648, alpha 1, hue 0.021442413, saturation 0.826087, and value 0.8117647.
363     * It can be represented as a packed float with the constant {@code -0x1.48759ep125F}.
364     * <pre>
365     * <font style='background-color: #CF3A24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CF3A24; color: #000000'>&nbsp;@&nbsp;</font>
366     * <font style='background-color: #CF3A24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CF3A24'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CF3A24'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CF3A24'>&nbsp;@&nbsp;</font><font style='background-color: #CF3A24; color: #888888'>&nbsp;@&nbsp;</font>
367     * <font style='background-color: #CF3A24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CF3A24; color: #ffffff'>&nbsp;@&nbsp;</font>
368     * </pre>
369     */
370    public static final SColor BLOOD = new SColor(0xCF3A24, "Blood");
371
372    /**
373     * This color constant "Blood Red" has RGB code {@code 0xF35336}, red 0.9529412, green 0.3254902, blue 0.21176471, alpha 1, hue 0.025573134, saturation 0.7777778, and value 0.9529412.
374     * It can be represented as a packed float with the constant {@code -0x1.6ca7e6p125F}.
375     * <pre>
376     * <font style='background-color: #F35336;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F35336; color: #000000'>&nbsp;@&nbsp;</font>
377     * <font style='background-color: #F35336;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F35336'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F35336'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F35336'>&nbsp;@&nbsp;</font><font style='background-color: #F35336; color: #888888'>&nbsp;@&nbsp;</font>
378     * <font style='background-color: #F35336;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F35336; color: #ffffff'>&nbsp;@&nbsp;</font>
379     * </pre>
380     */
381    public static final SColor BLOOD_RED = new SColor(0xF35336, "Blood Red");
382
383    /**
384     * This color constant "Blue" has RGB code {@code 0x0000FF}, red 0.0, green 0.0, blue 1.0, alpha 1, hue 0.66666675, saturation 1.0, and value 1.0.
385     * It can be represented as a packed float with the constant {@code -0x1.fep126F}.
386     * <pre>
387     * <font style='background-color: #0000FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000FF; color: #000000'>&nbsp;@&nbsp;</font>
388     * <font style='background-color: #0000FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0000FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0000FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0000FF'>&nbsp;@&nbsp;</font><font style='background-color: #0000FF; color: #888888'>&nbsp;@&nbsp;</font>
389     * <font style='background-color: #0000FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000FF; color: #ffffff'>&nbsp;@&nbsp;</font>
390     * </pre>
391     */
392    public static final SColor BLUE = new SColor(0x0000FF, "Blue");
393
394    /**
395     * This color constant "Blue Black Crayfish" has RGB code {@code 0x62693B}, red 0.38431373, green 0.4117647, blue 0.23137255, alpha 1, hue 0.19202912, saturation 0.43809524, and value 0.4117647.
396     * It can be represented as a packed float with the constant {@code -0x1.76d2c4p125F}.
397     * <pre>
398     * <font style='background-color: #62693B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #62693B; color: #000000'>&nbsp;@&nbsp;</font>
399     * <font style='background-color: #62693B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #62693B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #62693B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #62693B'>&nbsp;@&nbsp;</font><font style='background-color: #62693B; color: #888888'>&nbsp;@&nbsp;</font>
400     * <font style='background-color: #62693B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #62693B; color: #ffffff'>&nbsp;@&nbsp;</font>
401     * </pre>
402     */
403    public static final SColor BLUE_BLACK_CRAYFISH = new SColor(0x62693B, "Blue Black Crayfish");
404
405    /**
406     * This color constant "Blue Green" has RGB code {@code 0x00DDDD}, red 0.0, green 0.8666667, blue 0.8666667, alpha 1, hue 0.5, saturation 1.0, and value 0.8666667.
407     * It can be represented as a packed float with the constant {@code -0x1.bbbap126F}.
408     * <pre>
409     * <font style='background-color: #00DDDD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00DDDD; color: #000000'>&nbsp;@&nbsp;</font>
410     * <font style='background-color: #00DDDD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00DDDD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00DDDD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00DDDD'>&nbsp;@&nbsp;</font><font style='background-color: #00DDDD; color: #888888'>&nbsp;@&nbsp;</font>
411     * <font style='background-color: #00DDDD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00DDDD; color: #ffffff'>&nbsp;@&nbsp;</font>
412     * </pre>
413     */
414    public static final SColor BLUE_GREEN = new SColor(0x00DDDD, "Blue Green");
415
416    /**
417     * This color constant "Blue Green Dye" has RGB code {@code 0x3A6960}, red 0.22745098, green 0.4117647, blue 0.3764706, alpha 1, hue 0.46808505, saturation 0.44761905, and value 0.4117647.
418     * It can be represented as a packed float with the constant {@code -0x1.c0d274p125F}.
419     * <pre>
420     * <font style='background-color: #3A6960;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3A6960; color: #000000'>&nbsp;@&nbsp;</font>
421     * <font style='background-color: #3A6960;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3A6960'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3A6960'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3A6960'>&nbsp;@&nbsp;</font><font style='background-color: #3A6960; color: #888888'>&nbsp;@&nbsp;</font>
422     * <font style='background-color: #3A6960;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3A6960; color: #ffffff'>&nbsp;@&nbsp;</font>
423     * </pre>
424     */
425    public static final SColor BLUE_GREEN_DYE = new SColor(0x3A6960, "Blue Green Dye");
426
427    /**
428     * This color constant "Blue Violet" has RGB code {@code 0x8A2BE2}, red 0.5411765, green 0.16862746, blue 0.8862745, alpha 1, hue 0.7531878, saturation 0.8097345, and value 0.8862745.
429     * It can be represented as a packed float with the constant {@code -0x1.c45714p126F}.
430     * <pre>
431     * <font style='background-color: #8A2BE2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8A2BE2; color: #000000'>&nbsp;@&nbsp;</font>
432     * <font style='background-color: #8A2BE2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8A2BE2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8A2BE2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8A2BE2'>&nbsp;@&nbsp;</font><font style='background-color: #8A2BE2; color: #888888'>&nbsp;@&nbsp;</font>
433     * <font style='background-color: #8A2BE2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8A2BE2; color: #ffffff'>&nbsp;@&nbsp;</font>
434     * </pre>
435     */
436    public static final SColor BLUE_VIOLET = new SColor(0x8A2BE2, "Blue Violet");
437
438    /**
439     * This color constant "Blue Violet Dye" has RGB code {@code 0x2B2028}, red 0.16862746, green 0.1254902, blue 0.15686275, alpha 1, hue 0.8787878, saturation 0.25581393, and value 0.16862746.
440     * It can be represented as a packed float with the constant {@code -0x1.504056p125F}.
441     * <pre>
442     * <font style='background-color: #2B2028;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2B2028; color: #000000'>&nbsp;@&nbsp;</font>
443     * <font style='background-color: #2B2028;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2B2028'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2B2028'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2B2028'>&nbsp;@&nbsp;</font><font style='background-color: #2B2028; color: #888888'>&nbsp;@&nbsp;</font>
444     * <font style='background-color: #2B2028;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2B2028; color: #ffffff'>&nbsp;@&nbsp;</font>
445     * </pre>
446     */
447    public static final SColor BLUE_VIOLET_DYE = new SColor(0x2B2028, "Blue Violet Dye");
448
449    /**
450     * This color constant "Boiled Red Bean Brown" has RGB code {@code 0x542D24}, red 0.32941177, green 0.1764706, blue 0.14117648, alpha 1, hue 0.03125012, saturation 0.57142854, and value 0.32941177.
451     * It can be represented as a packed float with the constant {@code -0x1.485aa8p125F}.
452     * <pre>
453     * <font style='background-color: #542D24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #542D24; color: #000000'>&nbsp;@&nbsp;</font>
454     * <font style='background-color: #542D24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #542D24'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #542D24'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #542D24'>&nbsp;@&nbsp;</font><font style='background-color: #542D24; color: #888888'>&nbsp;@&nbsp;</font>
455     * <font style='background-color: #542D24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #542D24; color: #ffffff'>&nbsp;@&nbsp;</font>
456     * </pre>
457     */
458    public static final SColor BOILED_RED_BEAN_BROWN = new SColor(0x542D24, "Boiled Red Bean Brown");
459
460    /**
461     * This color constant "Bondi Blue" has RGB code {@code 0x0095B6}, red 0.0, green 0.58431375, blue 0.7137255, alpha 1, hue 0.5302199, saturation 1.0, and value 0.7137255.
462     * It can be represented as a packed float with the constant {@code -0x1.6d2ap126F}.
463     * <pre>
464     * <font style='background-color: #0095B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0095B6; color: #000000'>&nbsp;@&nbsp;</font>
465     * <font style='background-color: #0095B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0095B6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0095B6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0095B6'>&nbsp;@&nbsp;</font><font style='background-color: #0095B6; color: #888888'>&nbsp;@&nbsp;</font>
466     * <font style='background-color: #0095B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0095B6; color: #ffffff'>&nbsp;@&nbsp;</font>
467     * </pre>
468     */
469    public static final SColor BONDI_BLUE = new SColor(0x0095B6, "Bondi Blue");
470
471    /**
472     * This color constant "Brass" has RGB code {@code 0xB5A642}, red 0.70980394, green 0.6509804, blue 0.25882354, alpha 1, hue 0.14492762, saturation 0.6353591, and value 0.70980394.
473     * It can be represented as a packed float with the constant {@code -0x1.854d6ap125F}.
474     * <pre>
475     * <font style='background-color: #B5A642;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B5A642; color: #000000'>&nbsp;@&nbsp;</font>
476     * <font style='background-color: #B5A642;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B5A642'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B5A642'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B5A642'>&nbsp;@&nbsp;</font><font style='background-color: #B5A642; color: #888888'>&nbsp;@&nbsp;</font>
477     * <font style='background-color: #B5A642;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B5A642; color: #ffffff'>&nbsp;@&nbsp;</font>
478     * </pre>
479     */
480    public static final SColor BRASS = new SColor(0xB5A642, "Brass");
481
482    /**
483     * This color constant "Brewed Mustard Brown" has RGB code {@code 0xE68364}, red 0.9019608, green 0.5137255, blue 0.39215687, alpha 1, hue 0.039743662, saturation 0.5652174, and value 0.9019608.
484     * It can be represented as a packed float with the constant {@code -0x1.c907ccp125F}.
485     * <pre>
486     * <font style='background-color: #E68364;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E68364; color: #000000'>&nbsp;@&nbsp;</font>
487     * <font style='background-color: #E68364;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E68364'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E68364'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E68364'>&nbsp;@&nbsp;</font><font style='background-color: #E68364; color: #888888'>&nbsp;@&nbsp;</font>
488     * <font style='background-color: #E68364;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E68364; color: #ffffff'>&nbsp;@&nbsp;</font>
489     * </pre>
490     */
491    public static final SColor BREWED_MUSTARD_BROWN = new SColor(0xE68364, "Brewed Mustard Brown");
492
493    /**
494     * This color constant "Bright Gold Brown" has RGB code {@code 0xCB7E1F}, red 0.79607844, green 0.49411765, blue 0.12156863, alpha 1, hue 0.09205425, saturation 0.84729064, and value 0.79607844.
495     * It can be represented as a packed float with the constant {@code -0x1.3efd96p125F}.
496     * <pre>
497     * <font style='background-color: #CB7E1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CB7E1F; color: #000000'>&nbsp;@&nbsp;</font>
498     * <font style='background-color: #CB7E1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CB7E1F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CB7E1F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CB7E1F'>&nbsp;@&nbsp;</font><font style='background-color: #CB7E1F; color: #888888'>&nbsp;@&nbsp;</font>
499     * <font style='background-color: #CB7E1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CB7E1F; color: #ffffff'>&nbsp;@&nbsp;</font>
500     * </pre>
501     */
502    public static final SColor BRIGHT_GOLD_BROWN = new SColor(0xCB7E1F, "Bright Gold Brown");
503
504    /**
505     * This color constant "Bright Golden Yellow" has RGB code {@code 0xFFA400}, red 1.0, green 0.6431373, blue 0.0, alpha 1, hue 0.107189655, saturation 1.0, and value 1.0.
506     * It can be represented as a packed float with the constant {@code -0x1.0149fep125F}.
507     * <pre>
508     * <font style='background-color: #FFA400;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA400; color: #000000'>&nbsp;@&nbsp;</font>
509     * <font style='background-color: #FFA400;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFA400'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFA400'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFA400'>&nbsp;@&nbsp;</font><font style='background-color: #FFA400; color: #888888'>&nbsp;@&nbsp;</font>
510     * <font style='background-color: #FFA400;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA400; color: #ffffff'>&nbsp;@&nbsp;</font>
511     * </pre>
512     */
513    public static final SColor BRIGHT_GOLDEN_YELLOW = new SColor(0xFFA400, "Bright Golden Yellow");
514
515    /**
516     * This color constant "Bright Green" has RGB code {@code 0x66FF00}, red 0.4, green 1.0, blue 0.0, alpha 1, hue 0.26666665, saturation 1.0, and value 1.0.
517     * It can be represented as a packed float with the constant {@code -0x1.01feccp125F}.
518     * <pre>
519     * <font style='background-color: #66FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #66FF00; color: #000000'>&nbsp;@&nbsp;</font>
520     * <font style='background-color: #66FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #66FF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #66FF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #66FF00'>&nbsp;@&nbsp;</font><font style='background-color: #66FF00; color: #888888'>&nbsp;@&nbsp;</font>
521     * <font style='background-color: #66FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #66FF00; color: #ffffff'>&nbsp;@&nbsp;</font>
522     * </pre>
523     */
524    public static final SColor BRIGHT_GREEN = new SColor(0x66FF00, "Bright Green");
525
526    /**
527     * This color constant "Bright Pink" has RGB code {@code 0xFF0080}, red 1.0, green 0.0, blue 0.5019608, alpha 1, hue 0.9163398, saturation 1.0, and value 1.0.
528     * It can be represented as a packed float with the constant {@code -0x1.0001fep126F}.
529     * <pre>
530     * <font style='background-color: #FF0080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF0080; color: #000000'>&nbsp;@&nbsp;</font>
531     * <font style='background-color: #FF0080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF0080'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF0080'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF0080'>&nbsp;@&nbsp;</font><font style='background-color: #FF0080; color: #888888'>&nbsp;@&nbsp;</font>
532     * <font style='background-color: #FF0080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF0080; color: #ffffff'>&nbsp;@&nbsp;</font>
533     * </pre>
534     */
535    public static final SColor BRIGHT_PINK = new SColor(0xFF0080, "Bright Pink");
536
537    /**
538     * This color constant "Bright Turquoise" has RGB code {@code 0x08E8DE}, red 0.03137255, green 0.9098039, blue 0.87058824, alpha 1, hue 0.49255955, saturation 0.9655172, and value 0.9098039.
539     * It can be represented as a packed float with the constant {@code -0x1.bdd01p126F}.
540     * <pre>
541     * <font style='background-color: #08E8DE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #08E8DE; color: #000000'>&nbsp;@&nbsp;</font>
542     * <font style='background-color: #08E8DE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #08E8DE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #08E8DE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #08E8DE'>&nbsp;@&nbsp;</font><font style='background-color: #08E8DE; color: #888888'>&nbsp;@&nbsp;</font>
543     * <font style='background-color: #08E8DE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #08E8DE; color: #ffffff'>&nbsp;@&nbsp;</font>
544     * </pre>
545     */
546    public static final SColor BRIGHT_TURQUOISE = new SColor(0x08E8DE, "Bright Turquoise");
547
548    /**
549     * This color constant "Brilliant Rose" has RGB code {@code 0xFF55A3}, red 1.0, green 0.33333334, blue 0.6392157, alpha 1, hue 0.92352945, saturation 0.6666666, and value 1.0.
550     * It can be represented as a packed float with the constant {@code -0x1.46abfep126F}.
551     * <pre>
552     * <font style='background-color: #FF55A3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF55A3; color: #000000'>&nbsp;@&nbsp;</font>
553     * <font style='background-color: #FF55A3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF55A3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF55A3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF55A3'>&nbsp;@&nbsp;</font><font style='background-color: #FF55A3; color: #888888'>&nbsp;@&nbsp;</font>
554     * <font style='background-color: #FF55A3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF55A3; color: #ffffff'>&nbsp;@&nbsp;</font>
555     * </pre>
556     */
557    public static final SColor BRILLIANT_ROSE = new SColor(0xFF55A3, "Brilliant Rose");
558
559    /**
560     * This color constant "Bronze" has RGB code {@code 0xCD7F32}, red 0.8039216, green 0.49803922, blue 0.19607843, alpha 1, hue 0.08279562, saturation 0.75609756, and value 0.8039216.
561     * It can be represented as a packed float with the constant {@code -0x1.64ff9ap125F}.
562     * <pre>
563     * <font style='background-color: #CD7F32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD7F32; color: #000000'>&nbsp;@&nbsp;</font>
564     * <font style='background-color: #CD7F32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CD7F32'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CD7F32'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CD7F32'>&nbsp;@&nbsp;</font><font style='background-color: #CD7F32; color: #888888'>&nbsp;@&nbsp;</font>
565     * <font style='background-color: #CD7F32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD7F32; color: #ffffff'>&nbsp;@&nbsp;</font>
566     * </pre>
567     */
568    public static final SColor BRONZE = new SColor(0xCD7F32, "Bronze");
569
570    /**
571     * This color constant "Brown" has RGB code {@code 0x808000}, red 0.5019608, green 0.5019608, blue 0.0, alpha 1, hue 0.16666663, saturation 1.0, and value 0.5019608.
572     * It can be represented as a packed float with the constant {@code -0x1.0101p125F}.
573     * <pre>
574     * <font style='background-color: #808000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #808000; color: #000000'>&nbsp;@&nbsp;</font>
575     * <font style='background-color: #808000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #808000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #808000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #808000'>&nbsp;@&nbsp;</font><font style='background-color: #808000; color: #888888'>&nbsp;@&nbsp;</font>
576     * <font style='background-color: #808000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #808000; color: #ffffff'>&nbsp;@&nbsp;</font>
577     * </pre>
578     */
579    public static final SColor BROWN = new SColor(0x808000, "Brown");
580
581    /**
582     * This color constant "Brown Rat Grey" has RGB code {@code 0x4B3C39}, red 0.29411766, green 0.23529412, blue 0.22352941, alpha 1, hue 0.02777791, saturation 0.24000002, and value 0.29411766.
583     * It can be represented as a packed float with the constant {@code -0x1.727896p125F}.
584     * <pre>
585     * <font style='background-color: #4B3C39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B3C39; color: #000000'>&nbsp;@&nbsp;</font>
586     * <font style='background-color: #4B3C39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4B3C39'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4B3C39'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4B3C39'>&nbsp;@&nbsp;</font><font style='background-color: #4B3C39; color: #888888'>&nbsp;@&nbsp;</font>
587     * <font style='background-color: #4B3C39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B3C39; color: #ffffff'>&nbsp;@&nbsp;</font>
588     * </pre>
589     */
590    public static final SColor BROWN_RAT_GREY = new SColor(0x4B3C39, "Brown Rat Grey");
591
592    /**
593     * This color constant "Browner" has RGB code {@code 0x964B00}, red 0.5882353, green 0.29411766, blue 0.0, alpha 1, hue 0.083333254, saturation 1.0, and value 0.5882353.
594     * It can be represented as a packed float with the constant {@code -0x1.00972cp125F}.
595     * <pre>
596     * <font style='background-color: #964B00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #964B00; color: #000000'>&nbsp;@&nbsp;</font>
597     * <font style='background-color: #964B00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #964B00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #964B00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #964B00'>&nbsp;@&nbsp;</font><font style='background-color: #964B00; color: #888888'>&nbsp;@&nbsp;</font>
598     * <font style='background-color: #964B00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #964B00; color: #ffffff'>&nbsp;@&nbsp;</font>
599     * </pre>
600     */
601    public static final SColor BROWNER = new SColor(0x964B00, "Browner");
602
603    /**
604     * This color constant "Brushwood Dyed" has RGB code {@code 0x8C5939}, red 0.54901963, green 0.34901962, blue 0.22352941, alpha 1, hue 0.064257145, saturation 0.5928572, and value 0.54901963.
605     * It can be represented as a packed float with the constant {@code -0x1.72b318p125F}.
606     * <pre>
607     * <font style='background-color: #8C5939;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C5939; color: #000000'>&nbsp;@&nbsp;</font>
608     * <font style='background-color: #8C5939;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8C5939'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8C5939'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8C5939'>&nbsp;@&nbsp;</font><font style='background-color: #8C5939; color: #888888'>&nbsp;@&nbsp;</font>
609     * <font style='background-color: #8C5939;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C5939; color: #ffffff'>&nbsp;@&nbsp;</font>
610     * </pre>
611     */
612    public static final SColor BRUSHWOOD_DYED = new SColor(0x8C5939, "Brushwood Dyed");
613
614    /**
615     * This color constant "Buff" has RGB code {@code 0xF0DC82}, red 0.9411765, green 0.8627451, blue 0.50980395, alpha 1, hue 0.13636374, saturation 0.4583333, and value 0.9411765.
616     * It can be represented as a packed float with the constant {@code -0x1.05b9ep126F}.
617     * <pre>
618     * <font style='background-color: #F0DC82;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F0DC82; color: #000000'>&nbsp;@&nbsp;</font>
619     * <font style='background-color: #F0DC82;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F0DC82'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F0DC82'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F0DC82'>&nbsp;@&nbsp;</font><font style='background-color: #F0DC82; color: #888888'>&nbsp;@&nbsp;</font>
620     * <font style='background-color: #F0DC82;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F0DC82; color: #ffffff'>&nbsp;@&nbsp;</font>
621     * </pre>
622     */
623    public static final SColor BUFF = new SColor(0xF0DC82, "Buff");
624
625    /**
626     * This color constant "Burgundy" has RGB code {@code 0x900020}, red 0.5647059, green 0.0, blue 0.1254902, alpha 1, hue 0.962963, saturation 1.0, and value 0.5647059.
627     * It can be represented as a packed float with the constant {@code -0x1.40012p125F}.
628     * <pre>
629     * <font style='background-color: #900020;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #900020; color: #000000'>&nbsp;@&nbsp;</font>
630     * <font style='background-color: #900020;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #900020'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #900020'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #900020'>&nbsp;@&nbsp;</font><font style='background-color: #900020; color: #888888'>&nbsp;@&nbsp;</font>
631     * <font style='background-color: #900020;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #900020; color: #ffffff'>&nbsp;@&nbsp;</font>
632     * </pre>
633     */
634    public static final SColor BURGUNDY = new SColor(0x900020, "Burgundy");
635
636    /**
637     * This color constant "Burnt Bamboo" has RGB code {@code 0x4D3B3C}, red 0.3019608, green 0.23137255, blue 0.23529412, alpha 1, hue 0.9907407, saturation 0.23376626, and value 0.3019608.
638     * It can be represented as a packed float with the constant {@code -0x1.78769ap125F}.
639     * <pre>
640     * <font style='background-color: #4D3B3C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4D3B3C; color: #000000'>&nbsp;@&nbsp;</font>
641     * <font style='background-color: #4D3B3C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4D3B3C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4D3B3C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4D3B3C'>&nbsp;@&nbsp;</font><font style='background-color: #4D3B3C; color: #888888'>&nbsp;@&nbsp;</font>
642     * <font style='background-color: #4D3B3C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4D3B3C; color: #ffffff'>&nbsp;@&nbsp;</font>
643     * </pre>
644     */
645    public static final SColor BURNT_BAMBOO = new SColor(0x4D3B3C, "Burnt Bamboo");
646
647    /**
648     * This color constant "Burnt Orange" has RGB code {@code 0xCC5500}, red 0.8, green 0.33333334, blue 0.0, alpha 1, hue 0.06944454, saturation 1.0, and value 0.8.
649     * It can be represented as a packed float with the constant {@code -0x1.00ab98p125F}.
650     * <pre>
651     * <font style='background-color: #CC5500;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC5500; color: #000000'>&nbsp;@&nbsp;</font>
652     * <font style='background-color: #CC5500;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CC5500'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CC5500'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CC5500'>&nbsp;@&nbsp;</font><font style='background-color: #CC5500; color: #888888'>&nbsp;@&nbsp;</font>
653     * <font style='background-color: #CC5500;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC5500; color: #ffffff'>&nbsp;@&nbsp;</font>
654     * </pre>
655     */
656    public static final SColor BURNT_ORANGE = new SColor(0xCC5500, "Burnt Orange");
657
658    /**
659     * This color constant "Burnt Sienna" has RGB code {@code 0xE97451}, red 0.9137255, green 0.45490196, blue 0.31764707, alpha 1, hue 0.038377285, saturation 0.6523605, and value 0.9137255.
660     * It can be represented as a packed float with the constant {@code -0x1.a2e9d2p125F}.
661     * <pre>
662     * <font style='background-color: #E97451;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E97451; color: #000000'>&nbsp;@&nbsp;</font>
663     * <font style='background-color: #E97451;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E97451'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E97451'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E97451'>&nbsp;@&nbsp;</font><font style='background-color: #E97451; color: #888888'>&nbsp;@&nbsp;</font>
664     * <font style='background-color: #E97451;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E97451; color: #ffffff'>&nbsp;@&nbsp;</font>
665     * </pre>
666     */
667    public static final SColor BURNT_SIENNA = new SColor(0xE97451, "Burnt Sienna");
668
669    /**
670     * This color constant "Burnt Umber" has RGB code {@code 0x8A3324}, red 0.5411765, green 0.2, blue 0.14117648, alpha 1, hue 0.024509788, saturation 0.73913044, and value 0.5411765.
671     * It can be represented as a packed float with the constant {@code -0x1.486714p125F}.
672     * <pre>
673     * <font style='background-color: #8A3324;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8A3324; color: #000000'>&nbsp;@&nbsp;</font>
674     * <font style='background-color: #8A3324;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8A3324'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8A3324'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8A3324'>&nbsp;@&nbsp;</font><font style='background-color: #8A3324; color: #888888'>&nbsp;@&nbsp;</font>
675     * <font style='background-color: #8A3324;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8A3324; color: #ffffff'>&nbsp;@&nbsp;</font>
676     * </pre>
677     */
678    public static final SColor BURNT_UMBER = new SColor(0x8A3324, "Burnt Umber");
679
680    /**
681     * This color constant "Camo Green" has RGB code {@code 0x78866B}, red 0.47058824, green 0.5254902, blue 0.41960785, alpha 1, hue 0.25308633, saturation 0.20149258, and value 0.5254902.
682     * It can be represented as a packed float with the constant {@code -0x1.d70cfp125F}.
683     * <pre>
684     * <font style='background-color: #78866B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #78866B; color: #000000'>&nbsp;@&nbsp;</font>
685     * <font style='background-color: #78866B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #78866B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #78866B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #78866B'>&nbsp;@&nbsp;</font><font style='background-color: #78866B; color: #888888'>&nbsp;@&nbsp;</font>
686     * <font style='background-color: #78866B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #78866B; color: #ffffff'>&nbsp;@&nbsp;</font>
687     * </pre>
688     */
689    public static final SColor CAMO_GREEN = new SColor(0x78866B, "Camo Green");
690
691    /**
692     * This color constant "Cape Jasmine" has RGB code {@code 0xFFB95A}, red 1.0, green 0.7254902, blue 0.3529412, alpha 1, hue 0.095959544, saturation 0.64705884, and value 1.0.
693     * It can be represented as a packed float with the constant {@code -0x1.b573fep125F}.
694     * <pre>
695     * <font style='background-color: #FFB95A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB95A; color: #000000'>&nbsp;@&nbsp;</font>
696     * <font style='background-color: #FFB95A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFB95A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFB95A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFB95A'>&nbsp;@&nbsp;</font><font style='background-color: #FFB95A; color: #888888'>&nbsp;@&nbsp;</font>
697     * <font style='background-color: #FFB95A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB95A; color: #ffffff'>&nbsp;@&nbsp;</font>
698     * </pre>
699     */
700    public static final SColor CAPE_JASMINE = new SColor(0xFFB95A, "Cape Jasmine");
701
702    /**
703     * This color constant "Caput Mortuum" has RGB code {@code 0x592720}, red 0.34901962, green 0.15294118, blue 0.1254902, alpha 1, hue 0.020467877, saturation 0.6404494, and value 0.34901962.
704     * It can be represented as a packed float with the constant {@code -0x1.404eb2p125F}.
705     * <pre>
706     * <font style='background-color: #592720;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #592720; color: #000000'>&nbsp;@&nbsp;</font>
707     * <font style='background-color: #592720;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #592720'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #592720'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #592720'>&nbsp;@&nbsp;</font><font style='background-color: #592720; color: #888888'>&nbsp;@&nbsp;</font>
708     * <font style='background-color: #592720;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #592720; color: #ffffff'>&nbsp;@&nbsp;</font>
709     * </pre>
710     */
711    public static final SColor CAPUT_MORTUUM = new SColor(0x592720, "Caput Mortuum");
712
713    /**
714     * This color constant "Cardinal" has RGB code {@code 0xC41E3A}, red 0.76862746, green 0.11764706, blue 0.22745098, alpha 1, hue 0.9718876, saturation 0.8469388, and value 0.76862746.
715     * It can be represented as a packed float with the constant {@code -0x1.743d88p125F}.
716     * <pre>
717     * <font style='background-color: #C41E3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C41E3A; color: #000000'>&nbsp;@&nbsp;</font>
718     * <font style='background-color: #C41E3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C41E3A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C41E3A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C41E3A'>&nbsp;@&nbsp;</font><font style='background-color: #C41E3A; color: #888888'>&nbsp;@&nbsp;</font>
719     * <font style='background-color: #C41E3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C41E3A; color: #ffffff'>&nbsp;@&nbsp;</font>
720     * </pre>
721     */
722    public static final SColor CARDINAL = new SColor(0xC41E3A, "Cardinal");
723
724    /**
725     * This color constant "Carmine" has RGB code {@code 0x960018}, red 0.5882353, green 0.0, blue 0.09411765, alpha 1, hue 0.97333336, saturation 1.0, and value 0.5882353.
726     * It can be represented as a packed float with the constant {@code -0x1.30012cp125F}.
727     * <pre>
728     * <font style='background-color: #960018;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #960018; color: #000000'>&nbsp;@&nbsp;</font>
729     * <font style='background-color: #960018;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #960018'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #960018'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #960018'>&nbsp;@&nbsp;</font><font style='background-color: #960018; color: #888888'>&nbsp;@&nbsp;</font>
730     * <font style='background-color: #960018;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #960018; color: #ffffff'>&nbsp;@&nbsp;</font>
731     * </pre>
732     */
733    public static final SColor CARMINE = new SColor(0x960018, "Carmine");
734
735    /**
736     * This color constant "Carnation Pink" has RGB code {@code 0xFFA6C9}, red 1.0, green 0.6509804, blue 0.7882353, alpha 1, hue 0.9344569, saturation 0.3490196, and value 1.0.
737     * It can be represented as a packed float with the constant {@code -0x1.934dfep126F}.
738     * <pre>
739     * <font style='background-color: #FFA6C9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA6C9; color: #000000'>&nbsp;@&nbsp;</font>
740     * <font style='background-color: #FFA6C9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFA6C9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFA6C9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFA6C9'>&nbsp;@&nbsp;</font><font style='background-color: #FFA6C9; color: #888888'>&nbsp;@&nbsp;</font>
741     * <font style='background-color: #FFA6C9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA6C9; color: #ffffff'>&nbsp;@&nbsp;</font>
742     * </pre>
743     */
744    public static final SColor CARNATION_PINK = new SColor(0xFFA6C9, "Carnation Pink");
745
746    /**
747     * This color constant "Carolina Blue" has RGB code {@code 0x99BADD}, red 0.6, green 0.7294118, blue 0.8666667, alpha 1, hue 0.5857842, saturation 0.3076923, and value 0.8666667.
748     * It can be represented as a packed float with the constant {@code -0x1.bb7532p126F}.
749     * <pre>
750     * <font style='background-color: #99BADD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #99BADD; color: #000000'>&nbsp;@&nbsp;</font>
751     * <font style='background-color: #99BADD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #99BADD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #99BADD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #99BADD'>&nbsp;@&nbsp;</font><font style='background-color: #99BADD; color: #888888'>&nbsp;@&nbsp;</font>
752     * <font style='background-color: #99BADD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #99BADD; color: #ffffff'>&nbsp;@&nbsp;</font>
753     * </pre>
754     */
755    public static final SColor CAROLINA_BLUE = new SColor(0x99BADD, "Carolina Blue");
756
757    /**
758     * This color constant "Carrot Orange" has RGB code {@code 0xED9121}, red 0.92941177, green 0.5686275, blue 0.12941177, alpha 1, hue 0.09150338, saturation 0.8607595, and value 0.92941177.
759     * It can be represented as a packed float with the constant {@code -0x1.4323dap125F}.
760     * <pre>
761     * <font style='background-color: #ED9121;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ED9121; color: #000000'>&nbsp;@&nbsp;</font>
762     * <font style='background-color: #ED9121;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ED9121'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ED9121'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ED9121'>&nbsp;@&nbsp;</font><font style='background-color: #ED9121; color: #888888'>&nbsp;@&nbsp;</font>
763     * <font style='background-color: #ED9121;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ED9121; color: #ffffff'>&nbsp;@&nbsp;</font>
764     * </pre>
765     */
766    public static final SColor CARROT_ORANGE = new SColor(0xED9121, "Carrot Orange");
767
768    /**
769     * This color constant "Cattail" has RGB code {@code 0xB64925}, red 0.7137255, green 0.28627452, blue 0.14509805, alpha 1, hue 0.041379213, saturation 0.79670334, and value 0.7137255.
770     * It can be represented as a packed float with the constant {@code -0x1.4a936cp125F}.
771     * <pre>
772     * <font style='background-color: #B64925;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B64925; color: #000000'>&nbsp;@&nbsp;</font>
773     * <font style='background-color: #B64925;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B64925'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B64925'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B64925'>&nbsp;@&nbsp;</font><font style='background-color: #B64925; color: #888888'>&nbsp;@&nbsp;</font>
774     * <font style='background-color: #B64925;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B64925; color: #ffffff'>&nbsp;@&nbsp;</font>
775     * </pre>
776     */
777    public static final SColor CATTAIL = new SColor(0xB64925, "Cattail");
778
779    /**
780     * This color constant "Celadon" has RGB code {@code 0xACE1AF}, red 0.6745098, green 0.88235295, blue 0.6862745, alpha 1, hue 0.34276724, saturation 0.23555554, and value 0.88235295.
781     * It can be represented as a packed float with the constant {@code -0x1.5fc358p126F}.
782     * <pre>
783     * <font style='background-color: #ACE1AF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ACE1AF; color: #000000'>&nbsp;@&nbsp;</font>
784     * <font style='background-color: #ACE1AF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ACE1AF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ACE1AF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ACE1AF'>&nbsp;@&nbsp;</font><font style='background-color: #ACE1AF; color: #888888'>&nbsp;@&nbsp;</font>
785     * <font style='background-color: #ACE1AF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ACE1AF; color: #ffffff'>&nbsp;@&nbsp;</font>
786     * </pre>
787     */
788    public static final SColor CELADON = new SColor(0xACE1AF, "Celadon");
789
790    /**
791     * This color constant "Celadon Dye" has RGB code {@code 0x819C8B}, red 0.5058824, green 0.6117647, blue 0.54509807, alpha 1, hue 0.39506173, saturation 0.17307691, and value 0.6117647.
792     * It can be represented as a packed float with the constant {@code -0x1.173902p126F}.
793     * <pre>
794     * <font style='background-color: #819C8B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #819C8B; color: #000000'>&nbsp;@&nbsp;</font>
795     * <font style='background-color: #819C8B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #819C8B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #819C8B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #819C8B'>&nbsp;@&nbsp;</font><font style='background-color: #819C8B; color: #888888'>&nbsp;@&nbsp;</font>
796     * <font style='background-color: #819C8B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #819C8B; color: #ffffff'>&nbsp;@&nbsp;</font>
797     * </pre>
798     */
799    public static final SColor CELADON_DYE = new SColor(0x819C8B, "Celadon Dye");
800
801    /**
802     * This color constant "Cerise" has RGB code {@code 0xDE3163}, red 0.87058824, green 0.19215687, blue 0.3882353, alpha 1, hue 0.9518305, saturation 0.7792793, and value 0.87058824.
803     * It can be represented as a packed float with the constant {@code -0x1.c663bcp125F}.
804     * <pre>
805     * <font style='background-color: #DE3163;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DE3163; color: #000000'>&nbsp;@&nbsp;</font>
806     * <font style='background-color: #DE3163;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DE3163'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DE3163'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DE3163'>&nbsp;@&nbsp;</font><font style='background-color: #DE3163; color: #888888'>&nbsp;@&nbsp;</font>
807     * <font style='background-color: #DE3163;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DE3163; color: #ffffff'>&nbsp;@&nbsp;</font>
808     * </pre>
809     */
810    public static final SColor CERISE = new SColor(0xDE3163, "Cerise");
811
812    /**
813     * This color constant "Cerulean" has RGB code {@code 0x007BA7}, red 0.0, green 0.48235294, blue 0.654902, alpha 1, hue 0.5439123, saturation 1.0, and value 0.654902.
814     * It can be represented as a packed float with the constant {@code -0x1.4ef6p126F}.
815     * <pre>
816     * <font style='background-color: #007BA7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #007BA7; color: #000000'>&nbsp;@&nbsp;</font>
817     * <font style='background-color: #007BA7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #007BA7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #007BA7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #007BA7'>&nbsp;@&nbsp;</font><font style='background-color: #007BA7; color: #888888'>&nbsp;@&nbsp;</font>
818     * <font style='background-color: #007BA7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #007BA7; color: #ffffff'>&nbsp;@&nbsp;</font>
819     * </pre>
820     */
821    public static final SColor CERULEAN = new SColor(0x007BA7, "Cerulean");
822
823    /**
824     * This color constant "Cerulean Blue" has RGB code {@code 0x2A52BE}, red 0.16470589, green 0.32156864, blue 0.74509805, alpha 1, hue 0.6216217, saturation 0.7789474, and value 0.74509805.
825     * It can be represented as a packed float with the constant {@code -0x1.7ca454p126F}.
826     * <pre>
827     * <font style='background-color: #2A52BE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2A52BE; color: #000000'>&nbsp;@&nbsp;</font>
828     * <font style='background-color: #2A52BE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2A52BE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2A52BE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2A52BE'>&nbsp;@&nbsp;</font><font style='background-color: #2A52BE; color: #888888'>&nbsp;@&nbsp;</font>
829     * <font style='background-color: #2A52BE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2A52BE; color: #ffffff'>&nbsp;@&nbsp;</font>
830     * </pre>
831     */
832    public static final SColor CERULEAN_BLUE = new SColor(0x2A52BE, "Cerulean Blue");
833
834    /**
835     * This color constant "Chartreuse" has RGB code {@code 0xDFFF00}, red 0.8745098, green 1.0, blue 0.0, alpha 1, hue 0.18758178, saturation 1.0, and value 1.0.
836     * It can be represented as a packed float with the constant {@code -0x1.01ffbep125F}.
837     * <pre>
838     * <font style='background-color: #DFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DFFF00; color: #000000'>&nbsp;@&nbsp;</font>
839     * <font style='background-color: #DFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #DFFF00; color: #888888'>&nbsp;@&nbsp;</font>
840     * <font style='background-color: #DFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DFFF00; color: #ffffff'>&nbsp;@&nbsp;</font>
841     * </pre>
842     */
843    public static final SColor CHARTREUSE = new SColor(0xDFFF00, "Chartreuse");
844
845    /**
846     * This color constant "Chartreuse Green" has RGB code {@code 0x7FFF00}, red 0.49803922, green 1.0, blue 0.0, alpha 1, hue 0.25032687, saturation 1.0, and value 1.0.
847     * It can be represented as a packed float with the constant {@code -0x1.01fefep125F}.
848     * <pre>
849     * <font style='background-color: #7FFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7FFF00; color: #000000'>&nbsp;@&nbsp;</font>
850     * <font style='background-color: #7FFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7FFF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7FFF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7FFF00'>&nbsp;@&nbsp;</font><font style='background-color: #7FFF00; color: #888888'>&nbsp;@&nbsp;</font>
851     * <font style='background-color: #7FFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7FFF00; color: #ffffff'>&nbsp;@&nbsp;</font>
852     * </pre>
853     */
854    public static final SColor CHARTREUSE_GREEN = new SColor(0x7FFF00, "Chartreuse Green");
855
856    /**
857     * This color constant "Cherry Blossom" has RGB code {@code 0xFFB7C5}, red 1.0, green 0.7176471, blue 0.77254903, alpha 1, hue 0.96759254, saturation 0.28235292, and value 1.0.
858     * It can be represented as a packed float with the constant {@code -0x1.8b6ffep126F}.
859     * <pre>
860     * <font style='background-color: #FFB7C5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB7C5; color: #000000'>&nbsp;@&nbsp;</font>
861     * <font style='background-color: #FFB7C5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFB7C5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFB7C5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFB7C5'>&nbsp;@&nbsp;</font><font style='background-color: #FFB7C5; color: #888888'>&nbsp;@&nbsp;</font>
862     * <font style='background-color: #FFB7C5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB7C5; color: #ffffff'>&nbsp;@&nbsp;</font>
863     * </pre>
864     */
865    public static final SColor CHERRY_BLOSSOM = new SColor(0xFFB7C5, "Cherry Blossom");
866
867    /**
868     * This color constant "Cherry Blossom Dye" has RGB code {@code 0xFCC9B9}, red 0.9882353, green 0.7882353, blue 0.7254902, alpha 1, hue 0.03980112, saturation 0.265873, and value 0.9882353.
869     * It can be represented as a packed float with the constant {@code -0x1.7393f8p126F}.
870     * <pre>
871     * <font style='background-color: #FCC9B9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FCC9B9; color: #000000'>&nbsp;@&nbsp;</font>
872     * <font style='background-color: #FCC9B9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FCC9B9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FCC9B9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FCC9B9'>&nbsp;@&nbsp;</font><font style='background-color: #FCC9B9; color: #888888'>&nbsp;@&nbsp;</font>
873     * <font style='background-color: #FCC9B9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FCC9B9; color: #ffffff'>&nbsp;@&nbsp;</font>
874     * </pre>
875     */
876    public static final SColor CHERRY_BLOSSOM_DYE = new SColor(0xFCC9B9, "Cherry Blossom Dye");
877
878    /**
879     * This color constant "Cherry Blossom Mouse" has RGB code {@code 0xAC8181}, red 0.6745098, green 0.5058824, blue 0.5058824, alpha 1, hue 0.0, saturation 0.24999999, and value 0.6745098.
880     * It can be represented as a packed float with the constant {@code -0x1.030358p126F}.
881     * <pre>
882     * <font style='background-color: #AC8181;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AC8181; color: #000000'>&nbsp;@&nbsp;</font>
883     * <font style='background-color: #AC8181;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AC8181'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AC8181'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AC8181'>&nbsp;@&nbsp;</font><font style='background-color: #AC8181; color: #888888'>&nbsp;@&nbsp;</font>
884     * <font style='background-color: #AC8181;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AC8181; color: #ffffff'>&nbsp;@&nbsp;</font>
885     * </pre>
886     */
887    public static final SColor CHERRY_BLOSSOM_MOUSE = new SColor(0xAC8181, "Cherry Blossom Mouse");
888
889    /**
890     * This color constant "Chestnut" has RGB code {@code 0xCD5C5C}, red 0.8039216, green 0.36078432, blue 0.36078432, alpha 1, hue 0.0, saturation 0.5512195, and value 0.8039216.
891     * It can be represented as a packed float with the constant {@code -0x1.b8b99ap125F}.
892     * <pre>
893     * <font style='background-color: #CD5C5C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD5C5C; color: #000000'>&nbsp;@&nbsp;</font>
894     * <font style='background-color: #CD5C5C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CD5C5C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CD5C5C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CD5C5C'>&nbsp;@&nbsp;</font><font style='background-color: #CD5C5C; color: #888888'>&nbsp;@&nbsp;</font>
895     * <font style='background-color: #CD5C5C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD5C5C; color: #ffffff'>&nbsp;@&nbsp;</font>
896     * </pre>
897     */
898    public static final SColor CHESTNUT = new SColor(0xCD5C5C, "Chestnut");
899
900    /**
901     * This color constant "Chestnut Leather Brown" has RGB code {@code 0x60281E}, red 0.3764706, green 0.15686275, blue 0.11764706, alpha 1, hue 0.02525258, saturation 0.6875, and value 0.3764706.
902     * It can be represented as a packed float with the constant {@code -0x1.3c50cp125F}.
903     * <pre>
904     * <font style='background-color: #60281E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #60281E; color: #000000'>&nbsp;@&nbsp;</font>
905     * <font style='background-color: #60281E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #60281E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #60281E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #60281E'>&nbsp;@&nbsp;</font><font style='background-color: #60281E; color: #888888'>&nbsp;@&nbsp;</font>
906     * <font style='background-color: #60281E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #60281E; color: #ffffff'>&nbsp;@&nbsp;</font>
907     * </pre>
908     */
909    public static final SColor CHESTNUT_LEATHER_BROWN = new SColor(0x60281E, "Chestnut Leather Brown");
910
911    /**
912     * This color constant "Chestnut Plum" has RGB code {@code 0x8B352D}, red 0.54509807, green 0.20784314, blue 0.1764706, alpha 1, hue 0.014184475, saturation 0.67625904, and value 0.54509807.
913     * It can be represented as a packed float with the constant {@code -0x1.5a6b16p125F}.
914     * <pre>
915     * <font style='background-color: #8B352D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8B352D; color: #000000'>&nbsp;@&nbsp;</font>
916     * <font style='background-color: #8B352D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8B352D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8B352D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8B352D'>&nbsp;@&nbsp;</font><font style='background-color: #8B352D; color: #888888'>&nbsp;@&nbsp;</font>
917     * <font style='background-color: #8B352D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8B352D; color: #ffffff'>&nbsp;@&nbsp;</font>
918     * </pre>
919     */
920    public static final SColor CHESTNUT_PLUM = new SColor(0x8B352D, "Chestnut Plum");
921
922    /**
923     * This color constant "Chinese Tea Brown" has RGB code {@code 0xB35C44}, red 0.7019608, green 0.36078432, blue 0.26666668, alpha 1, hue 0.036036015, saturation 0.6201117, and value 0.7019608.
924     * It can be represented as a packed float with the constant {@code -0x1.88b966p125F}.
925     * <pre>
926     * <font style='background-color: #B35C44;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B35C44; color: #000000'>&nbsp;@&nbsp;</font>
927     * <font style='background-color: #B35C44;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B35C44'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B35C44'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B35C44'>&nbsp;@&nbsp;</font><font style='background-color: #B35C44; color: #888888'>&nbsp;@&nbsp;</font>
928     * <font style='background-color: #B35C44;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B35C44; color: #ffffff'>&nbsp;@&nbsp;</font>
929     * </pre>
930     */
931    public static final SColor CHINESE_TEA_BROWN = new SColor(0xB35C44, "Chinese Tea Brown");
932
933    /**
934     * This color constant "Chinese Tea Yellow" has RGB code {@code 0xB7702D}, red 0.7176471, green 0.4392157, blue 0.1764706, alpha 1, hue 0.080917835, saturation 0.75409836, and value 0.7176471.
935     * It can be represented as a packed float with the constant {@code -0x1.5ae16ep125F}.
936     * <pre>
937     * <font style='background-color: #B7702D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B7702D; color: #000000'>&nbsp;@&nbsp;</font>
938     * <font style='background-color: #B7702D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B7702D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B7702D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B7702D'>&nbsp;@&nbsp;</font><font style='background-color: #B7702D; color: #888888'>&nbsp;@&nbsp;</font>
939     * <font style='background-color: #B7702D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B7702D; color: #ffffff'>&nbsp;@&nbsp;</font>
940     * </pre>
941     */
942    public static final SColor CHINESE_TEA_YELLOW = new SColor(0xB7702D, "Chinese Tea Yellow");
943
944    /**
945     * This color constant "Chocolate" has RGB code {@code 0x7B3F00}, red 0.48235294, green 0.24705882, blue 0.0, alpha 1, hue 0.08536589, saturation 1.0, and value 0.48235294.
946     * It can be represented as a packed float with the constant {@code -0x1.007ef6p125F}.
947     * <pre>
948     * <font style='background-color: #7B3F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7B3F00; color: #000000'>&nbsp;@&nbsp;</font>
949     * <font style='background-color: #7B3F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7B3F00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7B3F00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7B3F00'>&nbsp;@&nbsp;</font><font style='background-color: #7B3F00; color: #888888'>&nbsp;@&nbsp;</font>
950     * <font style='background-color: #7B3F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7B3F00; color: #ffffff'>&nbsp;@&nbsp;</font>
951     * </pre>
952     */
953    public static final SColor CHOCOLATE = new SColor(0x7B3F00, "Chocolate");
954
955    /**
956     * This color constant "Cinnabar" has RGB code {@code 0xE34234}, red 0.8901961, green 0.25882354, blue 0.20392157, alpha 1, hue 0.013333321, saturation 0.7709251, and value 0.8901961.
957     * It can be represented as a packed float with the constant {@code -0x1.6885c6p125F}.
958     * <pre>
959     * <font style='background-color: #E34234;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E34234; color: #000000'>&nbsp;@&nbsp;</font>
960     * <font style='background-color: #E34234;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E34234'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E34234'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E34234'>&nbsp;@&nbsp;</font><font style='background-color: #E34234; color: #888888'>&nbsp;@&nbsp;</font>
961     * <font style='background-color: #E34234;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E34234; color: #ffffff'>&nbsp;@&nbsp;</font>
962     * </pre>
963     */
964    public static final SColor CINNABAR = new SColor(0xE34234, "Cinnabar");
965
966    /**
967     * This color constant "Cinnamon" has RGB code {@code 0xD2691E}, red 0.8235294, green 0.4117647, blue 0.11764706, alpha 1, hue 0.06944442, saturation 0.85714287, and value 0.8235294.
968     * It can be represented as a packed float with the constant {@code -0x1.3cd3a4p125F}.
969     * <pre>
970     * <font style='background-color: #D2691E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D2691E; color: #000000'>&nbsp;@&nbsp;</font>
971     * <font style='background-color: #D2691E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D2691E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D2691E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D2691E'>&nbsp;@&nbsp;</font><font style='background-color: #D2691E; color: #888888'>&nbsp;@&nbsp;</font>
972     * <font style='background-color: #D2691E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D2691E; color: #ffffff'>&nbsp;@&nbsp;</font>
973     * </pre>
974     */
975    public static final SColor CINNAMON = new SColor(0xD2691E, "Cinnamon");
976
977    /**
978     * This color constant "Clove Brown" has RGB code {@code 0x8F583C}, red 0.56078434, green 0.34509805, blue 0.23529412, alpha 1, hue 0.05622506, saturation 0.5804196, and value 0.56078434.
979     * It can be represented as a packed float with the constant {@code -0x1.78b11ep125F}.
980     * <pre>
981     * <font style='background-color: #8F583C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F583C; color: #000000'>&nbsp;@&nbsp;</font>
982     * <font style='background-color: #8F583C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8F583C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8F583C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8F583C'>&nbsp;@&nbsp;</font><font style='background-color: #8F583C; color: #888888'>&nbsp;@&nbsp;</font>
983     * <font style='background-color: #8F583C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F583C; color: #ffffff'>&nbsp;@&nbsp;</font>
984     * </pre>
985     */
986    public static final SColor CLOVE_BROWN = new SColor(0x8F583C, "Clove Brown");
987
988    /**
989     * This color constant "Clove Dyed" has RGB code {@code 0xC66B27}, red 0.7764706, green 0.41960785, blue 0.15294118, alpha 1, hue 0.07127881, saturation 0.8030303, and value 0.7764706.
990     * It can be represented as a packed float with the constant {@code -0x1.4ed78cp125F}.
991     * <pre>
992     * <font style='background-color: #C66B27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C66B27; color: #000000'>&nbsp;@&nbsp;</font>
993     * <font style='background-color: #C66B27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C66B27'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C66B27'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C66B27'>&nbsp;@&nbsp;</font><font style='background-color: #C66B27; color: #888888'>&nbsp;@&nbsp;</font>
994     * <font style='background-color: #C66B27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C66B27; color: #ffffff'>&nbsp;@&nbsp;</font>
995     * </pre>
996     */
997    public static final SColor CLOVE_DYED = new SColor(0xC66B27, "Clove Dyed");
998
999    /**
1000     * This color constant "Coarse Wool" has RGB code {@code 0x181B26}, red 0.09411765, green 0.105882354, blue 0.14901961, alpha 1, hue 0.6309525, saturation 0.36842108, and value 0.14901961.
1001     * It can be represented as a packed float with the constant {@code -0x1.4c363p125F}.
1002     * <pre>
1003     * <font style='background-color: #181B26;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #181B26; color: #000000'>&nbsp;@&nbsp;</font>
1004     * <font style='background-color: #181B26;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #181B26'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #181B26'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #181B26'>&nbsp;@&nbsp;</font><font style='background-color: #181B26; color: #888888'>&nbsp;@&nbsp;</font>
1005     * <font style='background-color: #181B26;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #181B26; color: #ffffff'>&nbsp;@&nbsp;</font>
1006     * </pre>
1007     */
1008    public static final SColor COARSE_WOOL = new SColor(0x181B26, "Coarse Wool");
1009
1010    /**
1011     * This color constant "Cobalt" has RGB code {@code 0x0047AB}, red 0.0, green 0.2784314, blue 0.67058825, alpha 1, hue 0.5974659, saturation 1.0, and value 0.67058825.
1012     * It can be represented as a packed float with the constant {@code -0x1.568ep126F}.
1013     * <pre>
1014     * <font style='background-color: #0047AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0047AB; color: #000000'>&nbsp;@&nbsp;</font>
1015     * <font style='background-color: #0047AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0047AB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0047AB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0047AB'>&nbsp;@&nbsp;</font><font style='background-color: #0047AB; color: #888888'>&nbsp;@&nbsp;</font>
1016     * <font style='background-color: #0047AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0047AB; color: #ffffff'>&nbsp;@&nbsp;</font>
1017     * </pre>
1018     */
1019    public static final SColor COBALT = new SColor(0x0047AB, "Cobalt");
1020
1021    /**
1022     * This color constant "Cochineal Red" has RGB code {@code 0x9D2933}, red 0.6156863, green 0.16078432, blue 0.2, alpha 1, hue 0.9856322, saturation 0.7388535, and value 0.6156863.
1023     * It can be represented as a packed float with the constant {@code -0x1.66533ap125F}.
1024     * <pre>
1025     * <font style='background-color: #9D2933;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9D2933; color: #000000'>&nbsp;@&nbsp;</font>
1026     * <font style='background-color: #9D2933;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9D2933'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9D2933'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9D2933'>&nbsp;@&nbsp;</font><font style='background-color: #9D2933; color: #888888'>&nbsp;@&nbsp;</font>
1027     * <font style='background-color: #9D2933;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9D2933; color: #ffffff'>&nbsp;@&nbsp;</font>
1028     * </pre>
1029     */
1030    public static final SColor COCHINEAL_RED = new SColor(0x9D2933, "Cochineal Red");
1031
1032    /**
1033     * This color constant "Columbia Blue" has RGB code {@code 0x9BDDFF}, red 0.60784316, green 0.8666667, blue 1.0, alpha 1, hue 0.5566666, saturation 0.39215684, and value 1.0.
1034     * It can be represented as a packed float with the constant {@code -0x1.ffbb36p126F}.
1035     * <pre>
1036     * <font style='background-color: #9BDDFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9BDDFF; color: #000000'>&nbsp;@&nbsp;</font>
1037     * <font style='background-color: #9BDDFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9BDDFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9BDDFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9BDDFF'>&nbsp;@&nbsp;</font><font style='background-color: #9BDDFF; color: #888888'>&nbsp;@&nbsp;</font>
1038     * <font style='background-color: #9BDDFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9BDDFF; color: #ffffff'>&nbsp;@&nbsp;</font>
1039     * </pre>
1040     */
1041    public static final SColor COLUMBIA_BLUE = new SColor(0x9BDDFF, "Columbia Blue");
1042
1043    /**
1044     * This color constant "Copper" has RGB code {@code 0xB87333}, red 0.72156864, green 0.4509804, blue 0.2, alpha 1, hue 0.080200434, saturation 0.7228261, and value 0.72156864.
1045     * It can be represented as a packed float with the constant {@code -0x1.66e77p125F}.
1046     * <pre>
1047     * <font style='background-color: #B87333;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B87333; color: #000000'>&nbsp;@&nbsp;</font>
1048     * <font style='background-color: #B87333;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B87333'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B87333'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B87333'>&nbsp;@&nbsp;</font><font style='background-color: #B87333; color: #888888'>&nbsp;@&nbsp;</font>
1049     * <font style='background-color: #B87333;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B87333; color: #ffffff'>&nbsp;@&nbsp;</font>
1050     * </pre>
1051     */
1052    public static final SColor COPPER = new SColor(0xB87333, "Copper");
1053
1054    /**
1055     * This color constant "Copper Rose" has RGB code {@code 0x996666}, red 0.6, green 0.4, blue 0.4, alpha 1, hue 0.0, saturation 0.33333334, and value 0.6.
1056     * It can be represented as a packed float with the constant {@code -0x1.cccd32p125F}.
1057     * <pre>
1058     * <font style='background-color: #996666;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #996666; color: #000000'>&nbsp;@&nbsp;</font>
1059     * <font style='background-color: #996666;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #996666'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #996666'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #996666'>&nbsp;@&nbsp;</font><font style='background-color: #996666; color: #888888'>&nbsp;@&nbsp;</font>
1060     * <font style='background-color: #996666;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #996666; color: #ffffff'>&nbsp;@&nbsp;</font>
1061     * </pre>
1062     */
1063    public static final SColor COPPER_ROSE = new SColor(0x996666, "Copper Rose");
1064
1065    /**
1066     * This color constant "Coral" has RGB code {@code 0xFF7F50}, red 1.0, green 0.49803922, blue 0.3137255, alpha 1, hue 0.044761896, saturation 0.6862745, and value 1.0.
1067     * It can be represented as a packed float with the constant {@code -0x1.a0fffep125F}.
1068     * <pre>
1069     * <font style='background-color: #FF7F50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF7F50; color: #000000'>&nbsp;@&nbsp;</font>
1070     * <font style='background-color: #FF7F50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF7F50'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF7F50'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF7F50'>&nbsp;@&nbsp;</font><font style='background-color: #FF7F50; color: #888888'>&nbsp;@&nbsp;</font>
1071     * <font style='background-color: #FF7F50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF7F50; color: #ffffff'>&nbsp;@&nbsp;</font>
1072     * </pre>
1073     */
1074    public static final SColor CORAL = new SColor(0xFF7F50, "Coral");
1075
1076    /**
1077     * This color constant "Coral Dye" has RGB code {@code 0xF8674F}, red 0.972549, green 0.40392157, blue 0.30980393, alpha 1, hue 0.023668528, saturation 0.6814516, and value 0.972549.
1078     * It can be represented as a packed float with the constant {@code -0x1.9ecffp125F}.
1079     * <pre>
1080     * <font style='background-color: #F8674F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F8674F; color: #000000'>&nbsp;@&nbsp;</font>
1081     * <font style='background-color: #F8674F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F8674F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F8674F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F8674F'>&nbsp;@&nbsp;</font><font style='background-color: #F8674F; color: #888888'>&nbsp;@&nbsp;</font>
1082     * <font style='background-color: #F8674F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F8674F; color: #ffffff'>&nbsp;@&nbsp;</font>
1083     * </pre>
1084     */
1085    public static final SColor CORAL_DYE = new SColor(0xF8674F, "Coral Dye");
1086
1087    /**
1088     * This color constant "Coral Red" has RGB code {@code 0xFF4040}, red 1.0, green 0.2509804, blue 0.2509804, alpha 1, hue 0.0, saturation 0.7490196, and value 1.0.
1089     * It can be represented as a packed float with the constant {@code -0x1.8081fep125F}.
1090     * <pre>
1091     * <font style='background-color: #FF4040;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF4040; color: #000000'>&nbsp;@&nbsp;</font>
1092     * <font style='background-color: #FF4040;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF4040'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF4040'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF4040'>&nbsp;@&nbsp;</font><font style='background-color: #FF4040; color: #888888'>&nbsp;@&nbsp;</font>
1093     * <font style='background-color: #FF4040;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF4040; color: #ffffff'>&nbsp;@&nbsp;</font>
1094     * </pre>
1095     */
1096    public static final SColor CORAL_RED = new SColor(0xFF4040, "Coral Red");
1097
1098    /**
1099     * This color constant "Corn" has RGB code {@code 0xFBEC5D}, red 0.9843137, green 0.9254902, blue 0.3647059, alpha 1, hue 0.15084398, saturation 0.62948203, and value 0.9843137.
1100     * It can be represented as a packed float with the constant {@code -0x1.bbd9f6p125F}.
1101     * <pre>
1102     * <font style='background-color: #FBEC5D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBEC5D; color: #000000'>&nbsp;@&nbsp;</font>
1103     * <font style='background-color: #FBEC5D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FBEC5D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FBEC5D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FBEC5D'>&nbsp;@&nbsp;</font><font style='background-color: #FBEC5D; color: #888888'>&nbsp;@&nbsp;</font>
1104     * <font style='background-color: #FBEC5D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBEC5D; color: #ffffff'>&nbsp;@&nbsp;</font>
1105     * </pre>
1106     */
1107    public static final SColor CORN = new SColor(0xFBEC5D, "Corn");
1108
1109    /**
1110     * This color constant "Corn Dye" has RGB code {@code 0xFAA945}, red 0.98039216, green 0.6627451, blue 0.27058825, alpha 1, hue 0.09208107, saturation 0.72400004, and value 0.98039216.
1111     * It can be represented as a packed float with the constant {@code -0x1.8b53f4p125F}.
1112     * <pre>
1113     * <font style='background-color: #FAA945;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FAA945; color: #000000'>&nbsp;@&nbsp;</font>
1114     * <font style='background-color: #FAA945;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FAA945'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FAA945'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FAA945'>&nbsp;@&nbsp;</font><font style='background-color: #FAA945; color: #888888'>&nbsp;@&nbsp;</font>
1115     * <font style='background-color: #FAA945;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FAA945; color: #ffffff'>&nbsp;@&nbsp;</font>
1116     * </pre>
1117     */
1118    public static final SColor CORN_DYE = new SColor(0xFAA945, "Corn Dye");
1119
1120    /**
1121     * This color constant "Cornflower Blue" has RGB code {@code 0x6495ED}, red 0.39215687, green 0.58431375, blue 0.92941177, alpha 1, hue 0.607056, saturation 0.5780591, and value 0.92941177.
1122     * It can be represented as a packed float with the constant {@code -0x1.db2ac8p126F}.
1123     * <pre>
1124     * <font style='background-color: #6495ED;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6495ED; color: #000000'>&nbsp;@&nbsp;</font>
1125     * <font style='background-color: #6495ED;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6495ED'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6495ED'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6495ED'>&nbsp;@&nbsp;</font><font style='background-color: #6495ED; color: #888888'>&nbsp;@&nbsp;</font>
1126     * <font style='background-color: #6495ED;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6495ED; color: #ffffff'>&nbsp;@&nbsp;</font>
1127     * </pre>
1128     */
1129    public static final SColor CORNFLOWER_BLUE = new SColor(0x6495ED, "Cornflower Blue");
1130
1131    /**
1132     * This color constant "Cosmic Latte" has RGB code {@code 0xFFF8E7}, red 1.0, green 0.972549, blue 0.90588236, alpha 1, hue 0.11805558, saturation 0.09411764, and value 1.0.
1133     * It can be represented as a packed float with the constant {@code -0x1.cff1fep126F}.
1134     * <pre>
1135     * <font style='background-color: #FFF8E7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFF8E7; color: #000000'>&nbsp;@&nbsp;</font>
1136     * <font style='background-color: #FFF8E7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFF8E7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFF8E7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFF8E7'>&nbsp;@&nbsp;</font><font style='background-color: #FFF8E7; color: #888888'>&nbsp;@&nbsp;</font>
1137     * <font style='background-color: #FFF8E7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFF8E7; color: #ffffff'>&nbsp;@&nbsp;</font>
1138     * </pre>
1139     */
1140    public static final SColor COSMIC_LATTE = new SColor(0xFFF8E7, "Cosmic Latte");
1141
1142    /**
1143     * This color constant "Cream" has RGB code {@code 0xFFFDD0}, red 1.0, green 0.99215686, blue 0.8156863, alpha 1, hue 0.15957451, saturation 0.18431371, and value 1.0.
1144     * It can be represented as a packed float with the constant {@code -0x1.a1fbfep126F}.
1145     * <pre>
1146     * <font style='background-color: #FFFDD0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFDD0; color: #000000'>&nbsp;@&nbsp;</font>
1147     * <font style='background-color: #FFFDD0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFFDD0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFFDD0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFFDD0'>&nbsp;@&nbsp;</font><font style='background-color: #FFFDD0; color: #888888'>&nbsp;@&nbsp;</font>
1148     * <font style='background-color: #FFFDD0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFDD0; color: #ffffff'>&nbsp;@&nbsp;</font>
1149     * </pre>
1150     */
1151    public static final SColor CREAM = new SColor(0xFFFDD0, "Cream");
1152
1153    /**
1154     * This color constant "Crimson" has RGB code {@code 0xDC143C}, red 0.8627451, green 0.078431375, blue 0.23529412, alpha 1, hue 0.96666664, saturation 0.90909094, and value 0.8627451.
1155     * It can be represented as a packed float with the constant {@code -0x1.7829b8p125F}.
1156     * <pre>
1157     * <font style='background-color: #DC143C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DC143C; color: #000000'>&nbsp;@&nbsp;</font>
1158     * <font style='background-color: #DC143C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DC143C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DC143C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DC143C'>&nbsp;@&nbsp;</font><font style='background-color: #DC143C; color: #888888'>&nbsp;@&nbsp;</font>
1159     * <font style='background-color: #DC143C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DC143C; color: #ffffff'>&nbsp;@&nbsp;</font>
1160     * </pre>
1161     */
1162    public static final SColor CRIMSON = new SColor(0xDC143C, "Crimson");
1163
1164    /**
1165     * This color constant "Cyan" has RGB code {@code 0x00FFFF}, red 0.0, green 1.0, blue 1.0, alpha 1, hue 0.5, saturation 1.0, and value 1.0.
1166     * It can be represented as a packed float with the constant {@code -0x1.fffep126F}.
1167     * <pre>
1168     * <font style='background-color: #00FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FFFF; color: #000000'>&nbsp;@&nbsp;</font>
1169     * <font style='background-color: #00FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #00FFFF; color: #888888'>&nbsp;@&nbsp;</font>
1170     * <font style='background-color: #00FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
1171     * </pre>
1172     */
1173    public static final SColor CYAN = new SColor(0x00FFFF, "Cyan");
1174
1175    /**
1176     * This color constant "Cypress Bark" has RGB code {@code 0x752E23}, red 0.45882353, green 0.18039216, blue 0.13725491, alpha 1, hue 0.022357821, saturation 0.70085466, and value 0.45882353.
1177     * It can be represented as a packed float with the constant {@code -0x1.465ceap125F}.
1178     * <pre>
1179     * <font style='background-color: #752E23;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #752E23; color: #000000'>&nbsp;@&nbsp;</font>
1180     * <font style='background-color: #752E23;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #752E23'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #752E23'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #752E23'>&nbsp;@&nbsp;</font><font style='background-color: #752E23; color: #888888'>&nbsp;@&nbsp;</font>
1181     * <font style='background-color: #752E23;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #752E23; color: #ffffff'>&nbsp;@&nbsp;</font>
1182     * </pre>
1183     */
1184    public static final SColor CYPRESS_BARK = new SColor(0x752E23, "Cypress Bark");
1185
1186    /**
1187     * This color constant "Cypress Bark Red" has RGB code {@code 0x6F3028}, red 0.43529412, green 0.1882353, blue 0.15686275, alpha 1, hue 0.018779397, saturation 0.6396396, and value 0.43529412.
1188     * It can be represented as a packed float with the constant {@code -0x1.5060dep125F}.
1189     * <pre>
1190     * <font style='background-color: #6F3028;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6F3028; color: #000000'>&nbsp;@&nbsp;</font>
1191     * <font style='background-color: #6F3028;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6F3028'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6F3028'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6F3028'>&nbsp;@&nbsp;</font><font style='background-color: #6F3028; color: #888888'>&nbsp;@&nbsp;</font>
1192     * <font style='background-color: #6F3028;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6F3028; color: #ffffff'>&nbsp;@&nbsp;</font>
1193     * </pre>
1194     */
1195    public static final SColor CYPRESS_BARK_RED = new SColor(0x6F3028, "Cypress Bark Red");
1196
1197    /**
1198     * This color constant "Dark Blue" has RGB code {@code 0x0000C8}, red 0.0, green 0.0, blue 0.78431374, alpha 1, hue 0.66666675, saturation 1.0, and value 0.78431374.
1199     * It can be represented as a packed float with the constant {@code -0x1.9p126F}.
1200     * <pre>
1201     * <font style='background-color: #0000C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000C8; color: #000000'>&nbsp;@&nbsp;</font>
1202     * <font style='background-color: #0000C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0000C8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0000C8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0000C8'>&nbsp;@&nbsp;</font><font style='background-color: #0000C8; color: #888888'>&nbsp;@&nbsp;</font>
1203     * <font style='background-color: #0000C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000C8; color: #ffffff'>&nbsp;@&nbsp;</font>
1204     * </pre>
1205     */
1206    public static final SColor DARK_BLUE = new SColor(0x0000C8, "Dark Blue");
1207
1208    /**
1209     * This color constant "Dark Blue Dye" has RGB code {@code 0x192236}, red 0.09803922, green 0.13333334, blue 0.21176471, alpha 1, hue 0.61494255, saturation 0.537037, and value 0.21176471.
1210     * It can be represented as a packed float with the constant {@code -0x1.6c4432p125F}.
1211     * <pre>
1212     * <font style='background-color: #192236;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #192236; color: #000000'>&nbsp;@&nbsp;</font>
1213     * <font style='background-color: #192236;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #192236'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #192236'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #192236'>&nbsp;@&nbsp;</font><font style='background-color: #192236; color: #888888'>&nbsp;@&nbsp;</font>
1214     * <font style='background-color: #192236;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #192236; color: #ffffff'>&nbsp;@&nbsp;</font>
1215     * </pre>
1216     */
1217    public static final SColor DARK_BLUE_DYE = new SColor(0x192236, "Dark Blue Dye");
1218
1219    /**
1220     * This color constant "Dark Blue Lapis Lazuli" has RGB code {@code 0x1B294B}, red 0.105882354, green 0.16078432, blue 0.29411766, alpha 1, hue 0.6180557, saturation 0.64000005, and value 0.29411766.
1221     * It can be represented as a packed float with the constant {@code -0x1.965236p125F}.
1222     * <pre>
1223     * <font style='background-color: #1B294B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1B294B; color: #000000'>&nbsp;@&nbsp;</font>
1224     * <font style='background-color: #1B294B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1B294B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1B294B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1B294B'>&nbsp;@&nbsp;</font><font style='background-color: #1B294B; color: #888888'>&nbsp;@&nbsp;</font>
1225     * <font style='background-color: #1B294B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1B294B; color: #ffffff'>&nbsp;@&nbsp;</font>
1226     * </pre>
1227     */
1228    public static final SColor DARK_BLUE_LAPIS_LAZULI = new SColor(0x1B294B, "Dark Blue Lapis Lazuli");
1229
1230    /**
1231     * This color constant "Dark Brown" has RGB code {@code 0x654321}, red 0.39607844, green 0.2627451, blue 0.12941177, alpha 1, hue 0.08333349, saturation 0.6732673, and value 0.39607844.
1232     * It can be represented as a packed float with the constant {@code -0x1.4286cap125F}.
1233     * <pre>
1234     * <font style='background-color: #654321;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #654321; color: #000000'>&nbsp;@&nbsp;</font>
1235     * <font style='background-color: #654321;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #654321'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #654321'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #654321'>&nbsp;@&nbsp;</font><font style='background-color: #654321; color: #888888'>&nbsp;@&nbsp;</font>
1236     * <font style='background-color: #654321;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #654321; color: #ffffff'>&nbsp;@&nbsp;</font>
1237     * </pre>
1238     */
1239    public static final SColor DARK_BROWN = new SColor(0x654321, "Dark Brown");
1240
1241    /**
1242     * This color constant "Dark Cerulean" has RGB code {@code 0x08457E}, red 0.03137255, green 0.27058825, blue 0.49411765, alpha 1, hue 0.5805085, saturation 0.93650794, and value 0.49411765.
1243     * It can be represented as a packed float with the constant {@code -0x1.fc8a1p125F}.
1244     * <pre>
1245     * <font style='background-color: #08457E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #08457E; color: #000000'>&nbsp;@&nbsp;</font>
1246     * <font style='background-color: #08457E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #08457E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #08457E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #08457E'>&nbsp;@&nbsp;</font><font style='background-color: #08457E; color: #888888'>&nbsp;@&nbsp;</font>
1247     * <font style='background-color: #08457E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #08457E; color: #ffffff'>&nbsp;@&nbsp;</font>
1248     * </pre>
1249     */
1250    public static final SColor DARK_CERULEAN = new SColor(0x08457E, "Dark Cerulean");
1251
1252    /**
1253     * This color constant "Dark Chestnut" has RGB code {@code 0x986960}, red 0.59607846, green 0.4117647, blue 0.3764706, alpha 1, hue 0.026785612, saturation 0.36842108, and value 0.59607846.
1254     * It can be represented as a packed float with the constant {@code -0x1.c0d33p125F}.
1255     * <pre>
1256     * <font style='background-color: #986960;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #986960; color: #000000'>&nbsp;@&nbsp;</font>
1257     * <font style='background-color: #986960;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #986960'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #986960'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #986960'>&nbsp;@&nbsp;</font><font style='background-color: #986960; color: #888888'>&nbsp;@&nbsp;</font>
1258     * <font style='background-color: #986960;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #986960; color: #ffffff'>&nbsp;@&nbsp;</font>
1259     * </pre>
1260     */
1261    public static final SColor DARK_CHESTNUT = new SColor(0x986960, "Dark Chestnut");
1262
1263    /**
1264     * This color constant "Dark Coral" has RGB code {@code 0xCD5B45}, red 0.8039216, green 0.35686275, blue 0.27058825, alpha 1, hue 0.02696085, saturation 0.6634146, and value 0.8039216.
1265     * It can be represented as a packed float with the constant {@code -0x1.8ab79ap125F}.
1266     * <pre>
1267     * <font style='background-color: #CD5B45;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD5B45; color: #000000'>&nbsp;@&nbsp;</font>
1268     * <font style='background-color: #CD5B45;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CD5B45'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CD5B45'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CD5B45'>&nbsp;@&nbsp;</font><font style='background-color: #CD5B45; color: #888888'>&nbsp;@&nbsp;</font>
1269     * <font style='background-color: #CD5B45;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD5B45; color: #ffffff'>&nbsp;@&nbsp;</font>
1270     * </pre>
1271     */
1272    public static final SColor DARK_CORAL = new SColor(0xCD5B45, "Dark Coral");
1273
1274    /**
1275     * This color constant "Dark Goldenrod" has RGB code {@code 0xB8860B}, red 0.72156864, green 0.5254902, blue 0.043137256, alpha 1, hue 0.11849713, saturation 0.9402174, and value 0.72156864.
1276     * It can be represented as a packed float with the constant {@code -0x1.170d7p125F}.
1277     * <pre>
1278     * <font style='background-color: #B8860B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B8860B; color: #000000'>&nbsp;@&nbsp;</font>
1279     * <font style='background-color: #B8860B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B8860B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B8860B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B8860B'>&nbsp;@&nbsp;</font><font style='background-color: #B8860B; color: #888888'>&nbsp;@&nbsp;</font>
1280     * <font style='background-color: #B8860B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B8860B; color: #ffffff'>&nbsp;@&nbsp;</font>
1281     * </pre>
1282     */
1283    public static final SColor DARK_GOLDENROD = new SColor(0xB8860B, "Dark Goldenrod");
1284
1285    /**
1286     * This color constant "Dark Gray" has RGB code {@code 0x404040}, red 0.2509804, green 0.2509804, blue 0.2509804, alpha 1, hue 0.0, saturation 0.0, and value 0.2509804.
1287     * It can be represented as a packed float with the constant {@code -0x1.80808p125F}.
1288     * <pre>
1289     * <font style='background-color: #404040;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #404040; color: #000000'>&nbsp;@&nbsp;</font>
1290     * <font style='background-color: #404040;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #404040'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #404040'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #404040'>&nbsp;@&nbsp;</font><font style='background-color: #404040; color: #888888'>&nbsp;@&nbsp;</font>
1291     * <font style='background-color: #404040;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #404040; color: #ffffff'>&nbsp;@&nbsp;</font>
1292     * </pre>
1293     */
1294    public static final SColor DARK_GRAY = new SColor(0x404040, "Dark Gray");
1295
1296    /**
1297     * This color constant "Dark Green" has RGB code {@code 0x013220}, red 0.003921569, green 0.19607843, blue 0.1254902, alpha 1, hue 0.43877554, saturation 0.98, and value 0.19607843.
1298     * It can be represented as a packed float with the constant {@code -0x1.406402p125F}.
1299     * <pre>
1300     * <font style='background-color: #013220;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #013220; color: #000000'>&nbsp;@&nbsp;</font>
1301     * <font style='background-color: #013220;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #013220'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #013220'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #013220'>&nbsp;@&nbsp;</font><font style='background-color: #013220; color: #888888'>&nbsp;@&nbsp;</font>
1302     * <font style='background-color: #013220;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #013220; color: #ffffff'>&nbsp;@&nbsp;</font>
1303     * </pre>
1304     */
1305    public static final SColor DARK_GREEN = new SColor(0x013220, "Dark Green");
1306
1307    /**
1308     * This color constant "Dark Indigo" has RGB code {@code 0x614E6E}, red 0.38039216, green 0.30588236, blue 0.43137255, alpha 1, hue 0.76562524, saturation 0.29090908, and value 0.43137255.
1309     * It can be represented as a packed float with the constant {@code -0x1.dc9cc2p125F}.
1310     * <pre>
1311     * <font style='background-color: #614E6E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #614E6E; color: #000000'>&nbsp;@&nbsp;</font>
1312     * <font style='background-color: #614E6E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #614E6E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #614E6E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #614E6E'>&nbsp;@&nbsp;</font><font style='background-color: #614E6E; color: #888888'>&nbsp;@&nbsp;</font>
1313     * <font style='background-color: #614E6E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #614E6E; color: #ffffff'>&nbsp;@&nbsp;</font>
1314     * </pre>
1315     */
1316    public static final SColor DARK_INDIGO = new SColor(0x614E6E, "Dark Indigo");
1317
1318    /**
1319     * This color constant "Dark Khaki" has RGB code {@code 0xBDB76B}, red 0.7411765, green 0.7176471, blue 0.41960785, alpha 1, hue 0.15447152, saturation 0.43386245, and value 0.7411765.
1320     * It can be represented as a packed float with the constant {@code -0x1.d76f7ap125F}.
1321     * <pre>
1322     * <font style='background-color: #BDB76B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BDB76B; color: #000000'>&nbsp;@&nbsp;</font>
1323     * <font style='background-color: #BDB76B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BDB76B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BDB76B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BDB76B'>&nbsp;@&nbsp;</font><font style='background-color: #BDB76B; color: #888888'>&nbsp;@&nbsp;</font>
1324     * <font style='background-color: #BDB76B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BDB76B; color: #ffffff'>&nbsp;@&nbsp;</font>
1325     * </pre>
1326     */
1327    public static final SColor DARK_KHAKI = new SColor(0xBDB76B, "Dark Khaki");
1328
1329    /**
1330     * This color constant "Dark Pastel Green" has RGB code {@code 0x03C03C}, red 0.011764706, green 0.7529412, blue 0.23529412, alpha 1, hue 0.38359785, saturation 0.984375, and value 0.7529412.
1331     * It can be represented as a packed float with the constant {@code -0x1.798006p125F}.
1332     * <pre>
1333     * <font style='background-color: #03C03C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #03C03C; color: #000000'>&nbsp;@&nbsp;</font>
1334     * <font style='background-color: #03C03C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #03C03C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #03C03C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #03C03C'>&nbsp;@&nbsp;</font><font style='background-color: #03C03C; color: #888888'>&nbsp;@&nbsp;</font>
1335     * <font style='background-color: #03C03C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #03C03C; color: #ffffff'>&nbsp;@&nbsp;</font>
1336     * </pre>
1337     */
1338    public static final SColor DARK_PASTEL_GREEN = new SColor(0x03C03C, "Dark Pastel Green");
1339
1340    /**
1341     * This color constant "Dark Pink" has RGB code {@code 0xE75480}, red 0.90588236, green 0.32941177, blue 0.5019608, alpha 1, hue 0.9501134, saturation 0.6363637, and value 0.90588236.
1342     * It can be represented as a packed float with the constant {@code -0x1.00a9cep126F}.
1343     * <pre>
1344     * <font style='background-color: #E75480;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E75480; color: #000000'>&nbsp;@&nbsp;</font>
1345     * <font style='background-color: #E75480;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E75480'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E75480'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E75480'>&nbsp;@&nbsp;</font><font style='background-color: #E75480; color: #888888'>&nbsp;@&nbsp;</font>
1346     * <font style='background-color: #E75480;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E75480; color: #ffffff'>&nbsp;@&nbsp;</font>
1347     * </pre>
1348     */
1349    public static final SColor DARK_PINK = new SColor(0xE75480, "Dark Pink");
1350
1351    /**
1352     * This color constant "Dark Scarlet" has RGB code {@code 0x560319}, red 0.3372549, green 0.011764706, blue 0.09803922, alpha 1, hue 0.9558233, saturation 0.96511626, and value 0.3372549.
1353     * It can be represented as a packed float with the constant {@code -0x1.3206acp125F}.
1354     * <pre>
1355     * <font style='background-color: #560319;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #560319; color: #000000'>&nbsp;@&nbsp;</font>
1356     * <font style='background-color: #560319;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #560319'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #560319'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #560319'>&nbsp;@&nbsp;</font><font style='background-color: #560319; color: #888888'>&nbsp;@&nbsp;</font>
1357     * <font style='background-color: #560319;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #560319; color: #ffffff'>&nbsp;@&nbsp;</font>
1358     * </pre>
1359     */
1360    public static final SColor DARK_SCARLET = new SColor(0x560319, "Dark Scarlet");
1361
1362    /**
1363     * This color constant "Dark Red" has RGB code {@code 0x800000}, red 0.5019608, green 0.0, blue 0.0, alpha 1, hue 0.0, saturation 1.0, and value 0.5019608.
1364     * It can be represented as a packed float with the constant {@code -0x1.0001p125F}.
1365     * <pre>
1366     * <font style='background-color: #800000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #800000; color: #000000'>&nbsp;@&nbsp;</font>
1367     * <font style='background-color: #800000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #800000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #800000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #800000'>&nbsp;@&nbsp;</font><font style='background-color: #800000; color: #888888'>&nbsp;@&nbsp;</font>
1368     * <font style='background-color: #800000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #800000; color: #ffffff'>&nbsp;@&nbsp;</font>
1369     * </pre>
1370     */
1371    public static final SColor DARK_RED = new SColor(0x800000, "Dark Red");
1372
1373    /**
1374     * This color constant "Dark Red Dye" has RGB code {@code 0x23191E}, red 0.13725491, green 0.09803922, blue 0.11764706, alpha 1, hue 0.9166667, saturation 0.2857143, and value 0.13725491.
1375     * It can be represented as a packed float with the constant {@code -0x1.3c3246p125F}.
1376     * <pre>
1377     * <font style='background-color: #23191E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #23191E; color: #000000'>&nbsp;@&nbsp;</font>
1378     * <font style='background-color: #23191E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #23191E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #23191E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #23191E'>&nbsp;@&nbsp;</font><font style='background-color: #23191E; color: #888888'>&nbsp;@&nbsp;</font>
1379     * <font style='background-color: #23191E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #23191E; color: #ffffff'>&nbsp;@&nbsp;</font>
1380     * </pre>
1381     */
1382    public static final SColor DARK_RED_DYE = new SColor(0x23191E, "Dark Red Dye");
1383
1384    /**
1385     * This color constant "Dark Salmon" has RGB code {@code 0xE9967A}, red 0.9137255, green 0.5882353, blue 0.47843137, alpha 1, hue 0.042042136, saturation 0.47639486, and value 0.9137255.
1386     * It can be represented as a packed float with the constant {@code -0x1.f52dd2p125F}.
1387     * <pre>
1388     * <font style='background-color: #E9967A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E9967A; color: #000000'>&nbsp;@&nbsp;</font>
1389     * <font style='background-color: #E9967A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E9967A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E9967A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E9967A'>&nbsp;@&nbsp;</font><font style='background-color: #E9967A; color: #888888'>&nbsp;@&nbsp;</font>
1390     * <font style='background-color: #E9967A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E9967A; color: #ffffff'>&nbsp;@&nbsp;</font>
1391     * </pre>
1392     */
1393    public static final SColor DARK_SALMON = new SColor(0xE9967A, "Dark Salmon");
1394
1395    /**
1396     * This color constant "Dark Slate Gray" has RGB code {@code 0x2F4F4F}, red 0.18431373, green 0.30980393, blue 0.30980393, alpha 1, hue 0.5, saturation 0.4050633, and value 0.30980393.
1397     * It can be represented as a packed float with the constant {@code -0x1.9e9e5ep125F}.
1398     * <pre>
1399     * <font style='background-color: #2F4F4F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2F4F4F; color: #000000'>&nbsp;@&nbsp;</font>
1400     * <font style='background-color: #2F4F4F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2F4F4F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2F4F4F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2F4F4F'>&nbsp;@&nbsp;</font><font style='background-color: #2F4F4F; color: #888888'>&nbsp;@&nbsp;</font>
1401     * <font style='background-color: #2F4F4F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2F4F4F; color: #ffffff'>&nbsp;@&nbsp;</font>
1402     * </pre>
1403     */
1404    public static final SColor DARK_SLATE_GRAY = new SColor(0x2F4F4F, "Dark Slate Gray");
1405
1406    /**
1407     * This color constant "Dark Spring Green" has RGB code {@code 0x177245}, red 0.09019608, green 0.44705883, blue 0.27058825, alpha 1, hue 0.4175825, saturation 0.7982456, and value 0.44705883.
1408     * It can be represented as a packed float with the constant {@code -0x1.8ae42ep125F}.
1409     * <pre>
1410     * <font style='background-color: #177245;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #177245; color: #000000'>&nbsp;@&nbsp;</font>
1411     * <font style='background-color: #177245;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #177245'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #177245'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #177245'>&nbsp;@&nbsp;</font><font style='background-color: #177245; color: #888888'>&nbsp;@&nbsp;</font>
1412     * <font style='background-color: #177245;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #177245; color: #ffffff'>&nbsp;@&nbsp;</font>
1413     * </pre>
1414     */
1415    public static final SColor DARK_SPRING_GREEN = new SColor(0x177245, "Dark Spring Green");
1416
1417    /**
1418     * This color constant "Dark Tan" has RGB code {@code 0x918151}, red 0.5686275, green 0.5058824, blue 0.31764707, alpha 1, hue 0.125, saturation 0.4413793, and value 0.5686275.
1419     * It can be represented as a packed float with the constant {@code -0x1.a30322p125F}.
1420     * <pre>
1421     * <font style='background-color: #918151;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #918151; color: #000000'>&nbsp;@&nbsp;</font>
1422     * <font style='background-color: #918151;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #918151'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #918151'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #918151'>&nbsp;@&nbsp;</font><font style='background-color: #918151; color: #888888'>&nbsp;@&nbsp;</font>
1423     * <font style='background-color: #918151;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #918151; color: #ffffff'>&nbsp;@&nbsp;</font>
1424     * </pre>
1425     */
1426    public static final SColor DARK_TAN = new SColor(0x918151, "Dark Tan");
1427
1428    /**
1429     * This color constant "Dark Turquoise" has RGB code {@code 0x00CED1}, red 0.0, green 0.80784315, blue 0.81960785, alpha 1, hue 0.5023923, saturation 1.0, and value 0.81960785.
1430     * It can be represented as a packed float with the constant {@code -0x1.a39cp126F}.
1431     * <pre>
1432     * <font style='background-color: #00CED1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00CED1; color: #000000'>&nbsp;@&nbsp;</font>
1433     * <font style='background-color: #00CED1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00CED1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00CED1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00CED1'>&nbsp;@&nbsp;</font><font style='background-color: #00CED1; color: #888888'>&nbsp;@&nbsp;</font>
1434     * <font style='background-color: #00CED1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00CED1; color: #ffffff'>&nbsp;@&nbsp;</font>
1435     * </pre>
1436     */
1437    public static final SColor DARK_TURQUOISE = new SColor(0x00CED1, "Dark Turquoise");
1438
1439    /**
1440     * This color constant "Dark Violet" has RGB code {@code 0x9400D3}, red 0.5803922, green 0.0, blue 0.827451, alpha 1, hue 0.7835705, saturation 1.0, and value 0.827451.
1441     * It can be represented as a packed float with the constant {@code -0x1.a60128p126F}.
1442     * <pre>
1443     * <font style='background-color: #9400D3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9400D3; color: #000000'>&nbsp;@&nbsp;</font>
1444     * <font style='background-color: #9400D3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9400D3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9400D3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9400D3'>&nbsp;@&nbsp;</font><font style='background-color: #9400D3; color: #888888'>&nbsp;@&nbsp;</font>
1445     * <font style='background-color: #9400D3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9400D3; color: #ffffff'>&nbsp;@&nbsp;</font>
1446     * </pre>
1447     */
1448    public static final SColor DARK_VIOLET = new SColor(0x9400D3, "Dark Violet");
1449
1450    /**
1451     * This color constant "Dawn" has RGB code {@code 0xFA7B62}, red 0.98039216, green 0.48235294, blue 0.38431373, alpha 1, hue 0.027412415, saturation 0.608, and value 0.98039216.
1452     * It can be represented as a packed float with the constant {@code -0x1.c4f7f4p125F}.
1453     * <pre>
1454     * <font style='background-color: #FA7B62;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FA7B62; color: #000000'>&nbsp;@&nbsp;</font>
1455     * <font style='background-color: #FA7B62;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FA7B62'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FA7B62'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FA7B62'>&nbsp;@&nbsp;</font><font style='background-color: #FA7B62; color: #888888'>&nbsp;@&nbsp;</font>
1456     * <font style='background-color: #FA7B62;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FA7B62; color: #ffffff'>&nbsp;@&nbsp;</font>
1457     * </pre>
1458     */
1459    public static final SColor DAWN = new SColor(0xFA7B62, "Dawn");
1460
1461    /**
1462     * This color constant "Daylily" has RGB code {@code 0xFF8936}, red 1.0, green 0.5372549, blue 0.21176471, alpha 1, hue 0.06882262, saturation 0.7882353, and value 1.0.
1463     * It can be represented as a packed float with the constant {@code -0x1.6d13fep125F}.
1464     * <pre>
1465     * <font style='background-color: #FF8936;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF8936; color: #000000'>&nbsp;@&nbsp;</font>
1466     * <font style='background-color: #FF8936;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF8936'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF8936'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF8936'>&nbsp;@&nbsp;</font><font style='background-color: #FF8936; color: #888888'>&nbsp;@&nbsp;</font>
1467     * <font style='background-color: #FF8936;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF8936; color: #ffffff'>&nbsp;@&nbsp;</font>
1468     * </pre>
1469     */
1470    public static final SColor DAYLILY = new SColor(0xFF8936, "Daylily");
1471
1472    /**
1473     * This color constant "Dead Man's Fingers Seaweed" has RGB code {@code 0x524B2A}, red 0.32156864, green 0.29411766, blue 0.16470589, alpha 1, hue 0.13750005, saturation 0.4878049, and value 0.32156864.
1474     * It can be represented as a packed float with the constant {@code -0x1.5496a4p125F}.
1475     * <pre>
1476     * <font style='background-color: #524B2A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #524B2A; color: #000000'>&nbsp;@&nbsp;</font>
1477     * <font style='background-color: #524B2A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #524B2A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #524B2A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #524B2A'>&nbsp;@&nbsp;</font><font style='background-color: #524B2A; color: #888888'>&nbsp;@&nbsp;</font>
1478     * <font style='background-color: #524B2A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #524B2A; color: #ffffff'>&nbsp;@&nbsp;</font>
1479     * </pre>
1480     */
1481    public static final SColor DEAD_MANS_FINGERS_SEAWEED = new SColor(0x524B2A, "Dead Man's Fingers Seaweed");
1482
1483    /**
1484     * This color constant "Decaying Leaves" has RGB code {@code 0xD57835}, red 0.8352941, green 0.47058824, blue 0.20784314, alpha 1, hue 0.069791555, saturation 0.75117373, and value 0.8352941.
1485     * It can be represented as a packed float with the constant {@code -0x1.6af1aap125F}.
1486     * <pre>
1487     * <font style='background-color: #D57835;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D57835; color: #000000'>&nbsp;@&nbsp;</font>
1488     * <font style='background-color: #D57835;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D57835'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D57835'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D57835'>&nbsp;@&nbsp;</font><font style='background-color: #D57835; color: #888888'>&nbsp;@&nbsp;</font>
1489     * <font style='background-color: #D57835;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D57835; color: #ffffff'>&nbsp;@&nbsp;</font>
1490     * </pre>
1491     */
1492    public static final SColor DECAYING_LEAVES = new SColor(0xD57835, "Decaying Leaves");
1493
1494    /**
1495     * This color constant "Deep Cerise" has RGB code {@code 0xDA3287}, red 0.85490197, green 0.19607843, blue 0.5294118, alpha 1, hue 0.91567457, saturation 0.7706422, and value 0.85490197.
1496     * It can be represented as a packed float with the constant {@code -0x1.0e65b4p126F}.
1497     * <pre>
1498     * <font style='background-color: #DA3287;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA3287; color: #000000'>&nbsp;@&nbsp;</font>
1499     * <font style='background-color: #DA3287;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DA3287'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DA3287'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DA3287'>&nbsp;@&nbsp;</font><font style='background-color: #DA3287; color: #888888'>&nbsp;@&nbsp;</font>
1500     * <font style='background-color: #DA3287;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA3287; color: #ffffff'>&nbsp;@&nbsp;</font>
1501     * </pre>
1502     */
1503    public static final SColor DEEP_CERISE = new SColor(0xDA3287, "Deep Cerise");
1504
1505    /**
1506     * This color constant "Deep Chestnut" has RGB code {@code 0xB94E48}, red 0.7254902, green 0.30588236, blue 0.28235295, alpha 1, hue 0.008849621, saturation 0.6108108, and value 0.7254902.
1507     * It can be represented as a packed float with the constant {@code -0x1.909d72p125F}.
1508     * <pre>
1509     * <font style='background-color: #B94E48;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B94E48; color: #000000'>&nbsp;@&nbsp;</font>
1510     * <font style='background-color: #B94E48;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B94E48'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B94E48'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B94E48'>&nbsp;@&nbsp;</font><font style='background-color: #B94E48; color: #888888'>&nbsp;@&nbsp;</font>
1511     * <font style='background-color: #B94E48;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B94E48; color: #ffffff'>&nbsp;@&nbsp;</font>
1512     * </pre>
1513     */
1514    public static final SColor DEEP_CHESTNUT = new SColor(0xB94E48, "Deep Chestnut");
1515
1516    /**
1517     * This color constant "Deep Fuchsia" has RGB code {@code 0xC154C1}, red 0.75686276, green 0.32941177, blue 0.75686276, alpha 1, hue 0.8333333, saturation 0.5647668, and value 0.75686276.
1518     * It can be represented as a packed float with the constant {@code -0x1.82a982p126F}.
1519     * <pre>
1520     * <font style='background-color: #C154C1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C154C1; color: #000000'>&nbsp;@&nbsp;</font>
1521     * <font style='background-color: #C154C1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C154C1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C154C1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C154C1'>&nbsp;@&nbsp;</font><font style='background-color: #C154C1; color: #888888'>&nbsp;@&nbsp;</font>
1522     * <font style='background-color: #C154C1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C154C1; color: #ffffff'>&nbsp;@&nbsp;</font>
1523     * </pre>
1524     */
1525    public static final SColor DEEP_FUCHSIA = new SColor(0xC154C1, "Deep Fuchsia");
1526
1527    /**
1528     * This color constant "Deep Lilac" has RGB code {@code 0x9955BB}, red 0.6, green 0.33333334, blue 0.73333335, alpha 1, hue 0.7777779, saturation 0.54545456, and value 0.73333335.
1529     * It can be represented as a packed float with the constant {@code -0x1.76ab32p126F}.
1530     * <pre>
1531     * <font style='background-color: #9955BB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9955BB; color: #000000'>&nbsp;@&nbsp;</font>
1532     * <font style='background-color: #9955BB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9955BB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9955BB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9955BB'>&nbsp;@&nbsp;</font><font style='background-color: #9955BB; color: #888888'>&nbsp;@&nbsp;</font>
1533     * <font style='background-color: #9955BB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9955BB; color: #ffffff'>&nbsp;@&nbsp;</font>
1534     * </pre>
1535     */
1536    public static final SColor DEEP_LILAC = new SColor(0x9955BB, "Deep Lilac");
1537
1538    /**
1539     * This color constant "Deep Magenta" has RGB code {@code 0xCD00CC}, red 0.8039216, green 0.0, blue 0.8, alpha 1, hue 0.8341463, saturation 1.0, and value 0.8039216.
1540     * It can be represented as a packed float with the constant {@code -0x1.98019ap126F}.
1541     * <pre>
1542     * <font style='background-color: #CD00CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD00CC; color: #000000'>&nbsp;@&nbsp;</font>
1543     * <font style='background-color: #CD00CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CD00CC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CD00CC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CD00CC'>&nbsp;@&nbsp;</font><font style='background-color: #CD00CC; color: #888888'>&nbsp;@&nbsp;</font>
1544     * <font style='background-color: #CD00CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD00CC; color: #ffffff'>&nbsp;@&nbsp;</font>
1545     * </pre>
1546     */
1547    public static final SColor DEEP_MAGENTA = new SColor(0xCD00CC, "Deep Magenta");
1548
1549    /**
1550     * This color constant "Deep Peach" has RGB code {@code 0xFFCBA4}, red 1.0, green 0.79607844, blue 0.6431373, alpha 1, hue 0.07142866, saturation 0.35686272, and value 1.0.
1551     * It can be represented as a packed float with the constant {@code -0x1.4997fep126F}.
1552     * <pre>
1553     * <font style='background-color: #FFCBA4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFCBA4; color: #000000'>&nbsp;@&nbsp;</font>
1554     * <font style='background-color: #FFCBA4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFCBA4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFCBA4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFCBA4'>&nbsp;@&nbsp;</font><font style='background-color: #FFCBA4; color: #888888'>&nbsp;@&nbsp;</font>
1555     * <font style='background-color: #FFCBA4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFCBA4; color: #ffffff'>&nbsp;@&nbsp;</font>
1556     * </pre>
1557     */
1558    public static final SColor DEEP_PEACH = new SColor(0xFFCBA4, "Deep Peach");
1559
1560    /**
1561     * This color constant "Deep Pink" has RGB code {@code 0xFF1493}, red 1.0, green 0.078431375, blue 0.5764706, alpha 1, hue 0.9099291, saturation 0.92156863, and value 1.0.
1562     * It can be represented as a packed float with the constant {@code -0x1.2629fep126F}.
1563     * <pre>
1564     * <font style='background-color: #FF1493;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF1493; color: #000000'>&nbsp;@&nbsp;</font>
1565     * <font style='background-color: #FF1493;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF1493'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF1493'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF1493'>&nbsp;@&nbsp;</font><font style='background-color: #FF1493; color: #888888'>&nbsp;@&nbsp;</font>
1566     * <font style='background-color: #FF1493;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF1493; color: #ffffff'>&nbsp;@&nbsp;</font>
1567     * </pre>
1568     */
1569    public static final SColor DEEP_PINK = new SColor(0xFF1493, "Deep Pink");
1570
1571    /**
1572     * This color constant "Deep Purple" has RGB code {@code 0x3A243B}, red 0.22745098, green 0.14117648, blue 0.23137255, alpha 1, hue 0.8260871, saturation 0.38983047, and value 0.23137255.
1573     * It can be represented as a packed float with the constant {@code -0x1.764874p125F}.
1574     * <pre>
1575     * <font style='background-color: #3A243B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3A243B; color: #000000'>&nbsp;@&nbsp;</font>
1576     * <font style='background-color: #3A243B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3A243B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3A243B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3A243B'>&nbsp;@&nbsp;</font><font style='background-color: #3A243B; color: #888888'>&nbsp;@&nbsp;</font>
1577     * <font style='background-color: #3A243B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3A243B; color: #ffffff'>&nbsp;@&nbsp;</font>
1578     * </pre>
1579     */
1580    public static final SColor DEEP_PURPLE = new SColor(0x3A243B, "Deep Purple");
1581
1582    /**
1583     * This color constant "Deep Scarlet" has RGB code {@code 0x7B3B3A}, red 0.48235294, green 0.23137255, blue 0.22745098, alpha 1, hue 0.0025641918, saturation 0.52845526, and value 0.48235294.
1584     * It can be represented as a packed float with the constant {@code -0x1.7476f6p125F}.
1585     * <pre>
1586     * <font style='background-color: #7B3B3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7B3B3A; color: #000000'>&nbsp;@&nbsp;</font>
1587     * <font style='background-color: #7B3B3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7B3B3A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7B3B3A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7B3B3A'>&nbsp;@&nbsp;</font><font style='background-color: #7B3B3A; color: #888888'>&nbsp;@&nbsp;</font>
1588     * <font style='background-color: #7B3B3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7B3B3A; color: #ffffff'>&nbsp;@&nbsp;</font>
1589     * </pre>
1590     */
1591    public static final SColor DEEP_SCARLET = new SColor(0x7B3B3A, "Deep Scarlet");
1592
1593    /**
1594     * This color constant "Denim" has RGB code {@code 0x1560BD}, red 0.08235294, green 0.3764706, blue 0.7411765, alpha 1, hue 0.59226215, saturation 0.8888889, and value 0.7411765.
1595     * It can be represented as a packed float with the constant {@code -0x1.7ac02ap126F}.
1596     * <pre>
1597     * <font style='background-color: #1560BD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1560BD; color: #000000'>&nbsp;@&nbsp;</font>
1598     * <font style='background-color: #1560BD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1560BD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1560BD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1560BD'>&nbsp;@&nbsp;</font><font style='background-color: #1560BD; color: #888888'>&nbsp;@&nbsp;</font>
1599     * <font style='background-color: #1560BD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1560BD; color: #ffffff'>&nbsp;@&nbsp;</font>
1600     * </pre>
1601     */
1602    public static final SColor DENIM = new SColor(0x1560BD, "Denim");
1603
1604    /**
1605     * This color constant "Disappearing Purple" has RGB code {@code 0x3F313A}, red 0.24705882, green 0.19215687, blue 0.22745098, alpha 1, hue 0.89285713, saturation 0.22222221, and value 0.24705882.
1606     * It can be represented as a packed float with the constant {@code -0x1.74627ep125F}.
1607     * <pre>
1608     * <font style='background-color: #3F313A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3F313A; color: #000000'>&nbsp;@&nbsp;</font>
1609     * <font style='background-color: #3F313A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3F313A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3F313A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3F313A'>&nbsp;@&nbsp;</font><font style='background-color: #3F313A; color: #888888'>&nbsp;@&nbsp;</font>
1610     * <font style='background-color: #3F313A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3F313A; color: #ffffff'>&nbsp;@&nbsp;</font>
1611     * </pre>
1612     */
1613    public static final SColor DISAPPEARING_PURPLE = new SColor(0x3F313A, "Disappearing Purple");
1614
1615    /**
1616     * This color constant "Distant River Brown" has RGB code {@code 0xCB6649}, red 0.79607844, green 0.4, blue 0.28627452, alpha 1, hue 0.03717959, saturation 0.64039403, and value 0.79607844.
1617     * It can be represented as a packed float with the constant {@code -0x1.92cd96p125F}.
1618     * <pre>
1619     * <font style='background-color: #CB6649;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CB6649; color: #000000'>&nbsp;@&nbsp;</font>
1620     * <font style='background-color: #CB6649;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CB6649'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CB6649'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CB6649'>&nbsp;@&nbsp;</font><font style='background-color: #CB6649; color: #888888'>&nbsp;@&nbsp;</font>
1621     * <font style='background-color: #CB6649;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CB6649; color: #ffffff'>&nbsp;@&nbsp;</font>
1622     * </pre>
1623     */
1624    public static final SColor DISTANT_RIVER_BROWN = new SColor(0xCB6649, "Distant River Brown");
1625
1626    /**
1627     * This color constant "Dodger Blue" has RGB code {@code 0x1E90FF}, red 0.11764706, green 0.5647059, blue 1.0, alpha 1, hue 0.5822222, saturation 0.88235295, and value 1.0.
1628     * It can be represented as a packed float with the constant {@code -0x1.ff203cp126F}.
1629     * <pre>
1630     * <font style='background-color: #1E90FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1E90FF; color: #000000'>&nbsp;@&nbsp;</font>
1631     * <font style='background-color: #1E90FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1E90FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1E90FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1E90FF'>&nbsp;@&nbsp;</font><font style='background-color: #1E90FF; color: #888888'>&nbsp;@&nbsp;</font>
1632     * <font style='background-color: #1E90FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1E90FF; color: #ffffff'>&nbsp;@&nbsp;</font>
1633     * </pre>
1634     */
1635    public static final SColor DODGER_BLUE = new SColor(0x1E90FF, "Dodger Blue");
1636
1637    /**
1638     * This color constant "Dove Feather Grey" has RGB code {@code 0x755D5B}, red 0.45882353, green 0.3647059, blue 0.35686275, alpha 1, hue 0.012820601, saturation 0.22222221, and value 0.45882353.
1639     * It can be represented as a packed float with the constant {@code -0x1.b6baeap125F}.
1640     * <pre>
1641     * <font style='background-color: #755D5B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #755D5B; color: #000000'>&nbsp;@&nbsp;</font>
1642     * <font style='background-color: #755D5B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #755D5B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #755D5B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #755D5B'>&nbsp;@&nbsp;</font><font style='background-color: #755D5B; color: #888888'>&nbsp;@&nbsp;</font>
1643     * <font style='background-color: #755D5B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #755D5B; color: #ffffff'>&nbsp;@&nbsp;</font>
1644     * </pre>
1645     */
1646    public static final SColor DOVE_FEATHER_GREY = new SColor(0x755D5B, "Dove Feather Grey");
1647
1648    /**
1649     * This color constant "Dried Weathered Bamboo" has RGB code {@code 0x7D4E2D}, red 0.49019608, green 0.30588236, blue 0.1764706, alpha 1, hue 0.06875014, saturation 0.64, and value 0.49019608.
1650     * It can be represented as a packed float with the constant {@code -0x1.5a9cfap125F}.
1651     * <pre>
1652     * <font style='background-color: #7D4E2D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7D4E2D; color: #000000'>&nbsp;@&nbsp;</font>
1653     * <font style='background-color: #7D4E2D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7D4E2D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7D4E2D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7D4E2D'>&nbsp;@&nbsp;</font><font style='background-color: #7D4E2D; color: #888888'>&nbsp;@&nbsp;</font>
1654     * <font style='background-color: #7D4E2D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7D4E2D; color: #ffffff'>&nbsp;@&nbsp;</font>
1655     * </pre>
1656     */
1657    public static final SColor DRIED_WEATHERED_BAMBOO = new SColor(0x7D4E2D, "Dried Weathered Bamboo");
1658
1659    /**
1660     * This color constant "Dull Blue" has RGB code {@code 0x4F4944}, red 0.30980393, green 0.28627452, blue 0.26666668, alpha 1, hue 0.07575774, saturation 0.13924049, and value 0.30980393.
1661     * It can be represented as a packed float with the constant {@code -0x1.88929ep125F}.
1662     * <pre>
1663     * <font style='background-color: #4F4944;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4F4944; color: #000000'>&nbsp;@&nbsp;</font>
1664     * <font style='background-color: #4F4944;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4F4944'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4F4944'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4F4944'>&nbsp;@&nbsp;</font><font style='background-color: #4F4944; color: #888888'>&nbsp;@&nbsp;</font>
1665     * <font style='background-color: #4F4944;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4F4944; color: #ffffff'>&nbsp;@&nbsp;</font>
1666     * </pre>
1667     */
1668    public static final SColor DULL_BLUE = new SColor(0x4F4944, "Dull Blue");
1669
1670    /**
1671     * This color constant "Earthen Yellow" has RGB code {@code 0xBE7F51}, red 0.74509805, green 0.49803922, blue 0.31764707, alpha 1, hue 0.07033646, saturation 0.5736842, and value 0.74509805.
1672     * It can be represented as a packed float with the constant {@code -0x1.a2ff7cp125F}.
1673     * <pre>
1674     * <font style='background-color: #BE7F51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BE7F51; color: #000000'>&nbsp;@&nbsp;</font>
1675     * <font style='background-color: #BE7F51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BE7F51'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BE7F51'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BE7F51'>&nbsp;@&nbsp;</font><font style='background-color: #BE7F51; color: #888888'>&nbsp;@&nbsp;</font>
1676     * <font style='background-color: #BE7F51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BE7F51; color: #ffffff'>&nbsp;@&nbsp;</font>
1677     * </pre>
1678     */
1679    public static final SColor EARTHEN_YELLOW = new SColor(0xBE7F51, "Earthen Yellow");
1680
1681    /**
1682     * This color constant "Earthen Yellow Red Brown" has RGB code {@code 0xFF4E20}, red 1.0, green 0.30588236, blue 0.1254902, alpha 1, hue 0.03437972, saturation 0.8745098, and value 1.0.
1683     * It can be represented as a packed float with the constant {@code -0x1.409dfep125F}.
1684     * <pre>
1685     * <font style='background-color: #FF4E20;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF4E20; color: #000000'>&nbsp;@&nbsp;</font>
1686     * <font style='background-color: #FF4E20;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF4E20'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF4E20'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF4E20'>&nbsp;@&nbsp;</font><font style='background-color: #FF4E20; color: #888888'>&nbsp;@&nbsp;</font>
1687     * <font style='background-color: #FF4E20;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF4E20; color: #ffffff'>&nbsp;@&nbsp;</font>
1688     * </pre>
1689     */
1690    public static final SColor EARTHEN_YELLOW_RED_BROWN = new SColor(0xFF4E20, "Earthen Yellow Red Brown");
1691
1692    /**
1693     * This color constant "Ecru" has RGB code {@code 0xC2B280}, red 0.7607843, green 0.69803923, blue 0.5019608, alpha 1, hue 0.12626266, saturation 0.34020615, and value 0.7607843.
1694     * It can be represented as a packed float with the constant {@code -0x1.016584p126F}.
1695     * <pre>
1696     * <font style='background-color: #C2B280;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C2B280; color: #000000'>&nbsp;@&nbsp;</font>
1697     * <font style='background-color: #C2B280;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C2B280'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C2B280'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C2B280'>&nbsp;@&nbsp;</font><font style='background-color: #C2B280; color: #888888'>&nbsp;@&nbsp;</font>
1698     * <font style='background-color: #C2B280;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C2B280; color: #ffffff'>&nbsp;@&nbsp;</font>
1699     * </pre>
1700     */
1701    public static final SColor ECRU = new SColor(0xC2B280, "Ecru");
1702
1703    /**
1704     * This color constant "Edo Brown" has RGB code {@code 0xA13D2D}, red 0.6313726, green 0.23921569, blue 0.1764706, alpha 1, hue 0.022988558, saturation 0.7204969, and value 0.6313726.
1705     * It can be represented as a packed float with the constant {@code -0x1.5a7b42p125F}.
1706     * <pre>
1707     * <font style='background-color: #A13D2D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A13D2D; color: #000000'>&nbsp;@&nbsp;</font>
1708     * <font style='background-color: #A13D2D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A13D2D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A13D2D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A13D2D'>&nbsp;@&nbsp;</font><font style='background-color: #A13D2D; color: #888888'>&nbsp;@&nbsp;</font>
1709     * <font style='background-color: #A13D2D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A13D2D; color: #ffffff'>&nbsp;@&nbsp;</font>
1710     * </pre>
1711     */
1712    public static final SColor EDO_BROWN = new SColor(0xA13D2D, "Edo Brown");
1713
1714    /**
1715     * This color constant "Egg Dye" has RGB code {@code 0xFFA631}, red 1.0, green 0.6509804, blue 0.19215687, alpha 1, hue 0.09466028, saturation 0.80784315, and value 1.0.
1716     * It can be represented as a packed float with the constant {@code -0x1.634dfep125F}.
1717     * <pre>
1718     * <font style='background-color: #FFA631;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA631; color: #000000'>&nbsp;@&nbsp;</font>
1719     * <font style='background-color: #FFA631;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFA631'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFA631'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFA631'>&nbsp;@&nbsp;</font><font style='background-color: #FFA631; color: #888888'>&nbsp;@&nbsp;</font>
1720     * <font style='background-color: #FFA631;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA631; color: #ffffff'>&nbsp;@&nbsp;</font>
1721     * </pre>
1722     */
1723    public static final SColor EGG_DYE = new SColor(0xFFA631, "Egg Dye");
1724
1725    /**
1726     * This color constant "Eggshell Paper" has RGB code {@code 0xECBE9F}, red 0.9254902, green 0.74509805, blue 0.62352943, alpha 1, hue 0.06709957, saturation 0.32627118, and value 0.9254902.
1727     * It can be represented as a packed float with the constant {@code -0x1.3f7dd8p126F}.
1728     * <pre>
1729     * <font style='background-color: #ECBE9F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ECBE9F; color: #000000'>&nbsp;@&nbsp;</font>
1730     * <font style='background-color: #ECBE9F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ECBE9F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ECBE9F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ECBE9F'>&nbsp;@&nbsp;</font><font style='background-color: #ECBE9F; color: #888888'>&nbsp;@&nbsp;</font>
1731     * <font style='background-color: #ECBE9F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ECBE9F; color: #ffffff'>&nbsp;@&nbsp;</font>
1732     * </pre>
1733     */
1734    public static final SColor EGGSHELL_PAPER = new SColor(0xECBE9F, "Eggshell Paper");
1735
1736    /**
1737     * This color constant "Egyptian Blue" has RGB code {@code 0x1034A6}, red 0.0627451, green 0.20392157, blue 0.6509804, alpha 1, hue 0.6266669, saturation 0.90361446, and value 0.6509804.
1738     * It can be represented as a packed float with the constant {@code -0x1.4c682p126F}.
1739     * <pre>
1740     * <font style='background-color: #1034A6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1034A6; color: #000000'>&nbsp;@&nbsp;</font>
1741     * <font style='background-color: #1034A6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1034A6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1034A6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1034A6'>&nbsp;@&nbsp;</font><font style='background-color: #1034A6; color: #888888'>&nbsp;@&nbsp;</font>
1742     * <font style='background-color: #1034A6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1034A6; color: #ffffff'>&nbsp;@&nbsp;</font>
1743     * </pre>
1744     */
1745    public static final SColor EGYPTIAN_BLUE = new SColor(0x1034A6, "Egyptian Blue");
1746
1747    /**
1748     * This color constant "Electric Blue" has RGB code {@code 0x7DF9FF}, red 0.49019608, green 0.9764706, blue 1.0, alpha 1, hue 0.50769234, saturation 0.5098039, and value 1.0.
1749     * It can be represented as a packed float with the constant {@code -0x1.fff2fap126F}.
1750     * <pre>
1751     * <font style='background-color: #7DF9FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7DF9FF; color: #000000'>&nbsp;@&nbsp;</font>
1752     * <font style='background-color: #7DF9FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7DF9FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7DF9FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7DF9FF'>&nbsp;@&nbsp;</font><font style='background-color: #7DF9FF; color: #888888'>&nbsp;@&nbsp;</font>
1753     * <font style='background-color: #7DF9FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7DF9FF; color: #ffffff'>&nbsp;@&nbsp;</font>
1754     * </pre>
1755     */
1756    public static final SColor ELECTRIC_BLUE = new SColor(0x7DF9FF, "Electric Blue");
1757
1758    /**
1759     * This color constant "Electric Green" has RGB code {@code 0x00FF00}, red 0.0, green 1.0, blue 0.0, alpha 1, hue 0.33333325, saturation 1.0, and value 1.0.
1760     * It can be represented as a packed float with the constant {@code -0x1.01fep125F}.
1761     * <pre>
1762     * <font style='background-color: #00FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FF00; color: #000000'>&nbsp;@&nbsp;</font>
1763     * <font style='background-color: #00FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00FF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00FF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00FF00'>&nbsp;@&nbsp;</font><font style='background-color: #00FF00; color: #888888'>&nbsp;@&nbsp;</font>
1764     * <font style='background-color: #00FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FF00; color: #ffffff'>&nbsp;@&nbsp;</font>
1765     * </pre>
1766     */
1767    public static final SColor ELECTRIC_GREEN = new SColor(0x00FF00, "Electric Green");
1768
1769    /**
1770     * This color constant "Electric Indigo" has RGB code {@code 0x6600FF}, red 0.4, green 0.0, blue 1.0, alpha 1, hue 0.73333347, saturation 1.0, and value 1.0.
1771     * It can be represented as a packed float with the constant {@code -0x1.fe00ccp126F}.
1772     * <pre>
1773     * <font style='background-color: #6600FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6600FF; color: #000000'>&nbsp;@&nbsp;</font>
1774     * <font style='background-color: #6600FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6600FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6600FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6600FF'>&nbsp;@&nbsp;</font><font style='background-color: #6600FF; color: #888888'>&nbsp;@&nbsp;</font>
1775     * <font style='background-color: #6600FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6600FF; color: #ffffff'>&nbsp;@&nbsp;</font>
1776     * </pre>
1777     */
1778    public static final SColor ELECTRIC_INDIGO = new SColor(0x6600FF, "Electric Indigo");
1779
1780    /**
1781     * This color constant "Electric Lime" has RGB code {@code 0xCCFF00}, red 0.8, green 1.0, blue 0.0, alpha 1, hue 0.20000005, saturation 1.0, and value 1.0.
1782     * It can be represented as a packed float with the constant {@code -0x1.01ff98p125F}.
1783     * <pre>
1784     * <font style='background-color: #CCFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CCFF00; color: #000000'>&nbsp;@&nbsp;</font>
1785     * <font style='background-color: #CCFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CCFF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CCFF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CCFF00'>&nbsp;@&nbsp;</font><font style='background-color: #CCFF00; color: #888888'>&nbsp;@&nbsp;</font>
1786     * <font style='background-color: #CCFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CCFF00; color: #ffffff'>&nbsp;@&nbsp;</font>
1787     * </pre>
1788     */
1789    public static final SColor ELECTRIC_LIME = new SColor(0xCCFF00, "Electric Lime");
1790
1791    /**
1792     * This color constant "Electric Purple" has RGB code {@code 0xBF00FF}, red 0.7490196, green 0.0, blue 1.0, alpha 1, hue 0.7915034, saturation 1.0, and value 1.0.
1793     * It can be represented as a packed float with the constant {@code -0x1.fe017ep126F}.
1794     * <pre>
1795     * <font style='background-color: #BF00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BF00FF; color: #000000'>&nbsp;@&nbsp;</font>
1796     * <font style='background-color: #BF00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BF00FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BF00FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BF00FF'>&nbsp;@&nbsp;</font><font style='background-color: #BF00FF; color: #888888'>&nbsp;@&nbsp;</font>
1797     * <font style='background-color: #BF00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BF00FF; color: #ffffff'>&nbsp;@&nbsp;</font>
1798     * </pre>
1799     */
1800    public static final SColor ELECTRIC_PURPLE = new SColor(0xBF00FF, "Electric Purple");
1801
1802    /**
1803     * This color constant "Emerald" has RGB code {@code 0x50C878}, red 0.3137255, green 0.78431374, blue 0.47058824, alpha 1, hue 0.38888884, saturation 0.59999996, and value 0.78431374.
1804     * It can be represented as a packed float with the constant {@code -0x1.f190ap125F}.
1805     * <pre>
1806     * <font style='background-color: #50C878;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #50C878; color: #000000'>&nbsp;@&nbsp;</font>
1807     * <font style='background-color: #50C878;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #50C878'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #50C878'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #50C878'>&nbsp;@&nbsp;</font><font style='background-color: #50C878; color: #888888'>&nbsp;@&nbsp;</font>
1808     * <font style='background-color: #50C878;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #50C878; color: #ffffff'>&nbsp;@&nbsp;</font>
1809     * </pre>
1810     */
1811    public static final SColor EMERALD = new SColor(0x50C878, "Emerald");
1812
1813    /**
1814     * This color constant "Eggplant" has RGB code {@code 0x614051}, red 0.38039216, green 0.2509804, blue 0.31764707, alpha 1, hue 0.9141415, saturation 0.34020615, and value 0.38039216.
1815     * It can be represented as a packed float with the constant {@code -0x1.a280c2p125F}.
1816     * <pre>
1817     * <font style='background-color: #614051;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #614051; color: #000000'>&nbsp;@&nbsp;</font>
1818     * <font style='background-color: #614051;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #614051'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #614051'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #614051'>&nbsp;@&nbsp;</font><font style='background-color: #614051; color: #888888'>&nbsp;@&nbsp;</font>
1819     * <font style='background-color: #614051;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #614051; color: #ffffff'>&nbsp;@&nbsp;</font>
1820     * </pre>
1821     */
1822    public static final SColor EGGPLANT = new SColor(0x614051, "Eggplant");
1823
1824    /**
1825     * This color constant "Faded Chinese Tea Brown" has RGB code {@code 0x60281E}, red 0.3764706, green 0.15686275, blue 0.11764706, alpha 1, hue 0.02525258, saturation 0.6875, and value 0.3764706.
1826     * It can be represented as a packed float with the constant {@code -0x1.3c50cp125F}.
1827     * <pre>
1828     * <font style='background-color: #60281E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #60281E; color: #000000'>&nbsp;@&nbsp;</font>
1829     * <font style='background-color: #60281E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #60281E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #60281E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #60281E'>&nbsp;@&nbsp;</font><font style='background-color: #60281E; color: #888888'>&nbsp;@&nbsp;</font>
1830     * <font style='background-color: #60281E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #60281E; color: #ffffff'>&nbsp;@&nbsp;</font>
1831     * </pre>
1832     */
1833    public static final SColor FADED_CHINESE_TEA_BROWN = new SColor(0x60281E, "Faded Chinese Tea Brown");
1834
1835    /**
1836     * This color constant "Faded Sen No Rikyu's Tea" has RGB code {@code 0xB0927A}, red 0.6901961, green 0.57254905, blue 0.47843137, alpha 1, hue 0.07407403, saturation 0.3068182, and value 0.6901961.
1837     * It can be represented as a packed float with the constant {@code -0x1.f5256p125F}.
1838     * <pre>
1839     * <font style='background-color: #B0927A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B0927A; color: #000000'>&nbsp;@&nbsp;</font>
1840     * <font style='background-color: #B0927A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B0927A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B0927A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B0927A'>&nbsp;@&nbsp;</font><font style='background-color: #B0927A; color: #888888'>&nbsp;@&nbsp;</font>
1841     * <font style='background-color: #B0927A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B0927A; color: #ffffff'>&nbsp;@&nbsp;</font>
1842     * </pre>
1843     */
1844    public static final SColor FADED_SEN_NO_RIKYUS_TEA = new SColor(0xB0927A, "Faded Sen No Rikyu's Tea");
1845
1846    /**
1847     * This color constant "Fake Purple" has RGB code {@code 0x43242A}, red 0.2627451, green 0.14117648, blue 0.16470589, alpha 1, hue 0.96774197, saturation 0.46268657, and value 0.2627451.
1848     * It can be represented as a packed float with the constant {@code -0x1.544886p125F}.
1849     * <pre>
1850     * <font style='background-color: #43242A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #43242A; color: #000000'>&nbsp;@&nbsp;</font>
1851     * <font style='background-color: #43242A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #43242A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #43242A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #43242A'>&nbsp;@&nbsp;</font><font style='background-color: #43242A; color: #888888'>&nbsp;@&nbsp;</font>
1852     * <font style='background-color: #43242A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #43242A; color: #ffffff'>&nbsp;@&nbsp;</font>
1853     * </pre>
1854     */
1855    public static final SColor FAKE_PURPLE = new SColor(0x43242A, "Fake Purple");
1856
1857    /**
1858     * This color constant "Falu Red" has RGB code {@code 0x801818}, red 0.5019608, green 0.09411765, blue 0.09411765, alpha 1, hue 0.0, saturation 0.8125, and value 0.5019608.
1859     * It can be represented as a packed float with the constant {@code -0x1.3031p125F}.
1860     * <pre>
1861     * <font style='background-color: #801818;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #801818; color: #000000'>&nbsp;@&nbsp;</font>
1862     * <font style='background-color: #801818;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #801818'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #801818'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #801818'>&nbsp;@&nbsp;</font><font style='background-color: #801818; color: #888888'>&nbsp;@&nbsp;</font>
1863     * <font style='background-color: #801818;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #801818; color: #ffffff'>&nbsp;@&nbsp;</font>
1864     * </pre>
1865     */
1866    public static final SColor FALU_RED = new SColor(0x801818, "Falu Red");
1867
1868    /**
1869     * This color constant "Fern Green" has RGB code {@code 0x4F7942}, red 0.30980393, green 0.4745098, blue 0.25882354, alpha 1, hue 0.29393935, saturation 0.45454544, and value 0.4745098.
1870     * It can be represented as a packed float with the constant {@code -0x1.84f29ep125F}.
1871     * <pre>
1872     * <font style='background-color: #4F7942;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4F7942; color: #000000'>&nbsp;@&nbsp;</font>
1873     * <font style='background-color: #4F7942;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4F7942'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4F7942'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4F7942'>&nbsp;@&nbsp;</font><font style='background-color: #4F7942; color: #888888'>&nbsp;@&nbsp;</font>
1874     * <font style='background-color: #4F7942;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4F7942; color: #ffffff'>&nbsp;@&nbsp;</font>
1875     * </pre>
1876     */
1877    public static final SColor FERN_GREEN = new SColor(0x4F7942, "Fern Green");
1878
1879    /**
1880     * This color constant "Finch Brown" has RGB code {@code 0x957B38}, red 0.58431375, green 0.48235294, blue 0.21960784, alpha 1, hue 0.12007177, saturation 0.6241611, and value 0.58431375.
1881     * It can be represented as a packed float with the constant {@code -0x1.70f72ap125F}.
1882     * <pre>
1883     * <font style='background-color: #957B38;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #957B38; color: #000000'>&nbsp;@&nbsp;</font>
1884     * <font style='background-color: #957B38;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #957B38'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #957B38'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #957B38'>&nbsp;@&nbsp;</font><font style='background-color: #957B38; color: #888888'>&nbsp;@&nbsp;</font>
1885     * <font style='background-color: #957B38;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #957B38; color: #ffffff'>&nbsp;@&nbsp;</font>
1886     * </pre>
1887     */
1888    public static final SColor FINCH_BROWN = new SColor(0x957B38, "Finch Brown");
1889
1890    /**
1891     * This color constant "Firebrick" has RGB code {@code 0xB22222}, red 0.69803923, green 0.13333334, blue 0.13333334, alpha 1, hue 0.0, saturation 0.8089888, and value 0.69803923.
1892     * It can be represented as a packed float with the constant {@code -0x1.444564p125F}.
1893     * <pre>
1894     * <font style='background-color: #B22222;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B22222; color: #000000'>&nbsp;@&nbsp;</font>
1895     * <font style='background-color: #B22222;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B22222'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B22222'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B22222'>&nbsp;@&nbsp;</font><font style='background-color: #B22222; color: #888888'>&nbsp;@&nbsp;</font>
1896     * <font style='background-color: #B22222;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B22222; color: #ffffff'>&nbsp;@&nbsp;</font>
1897     * </pre>
1898     */
1899    public static final SColor FIREBRICK = new SColor(0xB22222, "Firebrick");
1900
1901    /**
1902     * This color constant "Flattery Brown" has RGB code {@code 0x6B4423}, red 0.41960785, green 0.26666668, blue 0.13725491, alpha 1, hue 0.076388955, saturation 0.67289716, and value 0.41960785.
1903     * It can be represented as a packed float with the constant {@code -0x1.4688d6p125F}.
1904     * <pre>
1905     * <font style='background-color: #6B4423;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6B4423; color: #000000'>&nbsp;@&nbsp;</font>
1906     * <font style='background-color: #6B4423;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6B4423'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6B4423'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6B4423'>&nbsp;@&nbsp;</font><font style='background-color: #6B4423; color: #888888'>&nbsp;@&nbsp;</font>
1907     * <font style='background-color: #6B4423;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6B4423; color: #ffffff'>&nbsp;@&nbsp;</font>
1908     * </pre>
1909     */
1910    public static final SColor FLATTERY_BROWN = new SColor(0x6B4423, "Flattery Brown");
1911
1912    /**
1913     * This color constant "Flax" has RGB code {@code 0xEEDC82}, red 0.93333334, green 0.8627451, blue 0.50980395, alpha 1, hue 0.13888896, saturation 0.4537815, and value 0.93333334.
1914     * It can be represented as a packed float with the constant {@code -0x1.05b9dcp126F}.
1915     * <pre>
1916     * <font style='background-color: #EEDC82;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EEDC82; color: #000000'>&nbsp;@&nbsp;</font>
1917     * <font style='background-color: #EEDC82;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EEDC82'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EEDC82'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EEDC82'>&nbsp;@&nbsp;</font><font style='background-color: #EEDC82; color: #888888'>&nbsp;@&nbsp;</font>
1918     * <font style='background-color: #EEDC82;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EEDC82; color: #ffffff'>&nbsp;@&nbsp;</font>
1919     * </pre>
1920     */
1921    public static final SColor FLAX = new SColor(0xEEDC82, "Flax");
1922
1923    /**
1924     * This color constant "Flirtatious Indigo Tea" has RGB code {@code 0x473F2D}, red 0.2784314, green 0.24705882, blue 0.1764706, alpha 1, hue 0.11538458, saturation 0.3661972, and value 0.2784314.
1925     * It can be represented as a packed float with the constant {@code -0x1.5a7e8ep125F}.
1926     * <pre>
1927     * <font style='background-color: #473F2D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #473F2D; color: #000000'>&nbsp;@&nbsp;</font>
1928     * <font style='background-color: #473F2D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #473F2D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #473F2D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #473F2D'>&nbsp;@&nbsp;</font><font style='background-color: #473F2D; color: #888888'>&nbsp;@&nbsp;</font>
1929     * <font style='background-color: #473F2D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #473F2D; color: #ffffff'>&nbsp;@&nbsp;</font>
1930     * </pre>
1931     */
1932    public static final SColor FLIRTATIOUS_INDIGO_TEA = new SColor(0x473F2D, "Flirtatious Indigo Tea");
1933
1934    /**
1935     * This color constant "Floral Leaf" has RGB code {@code 0xFFB94E}, red 1.0, green 0.7254902, blue 0.30588236, alpha 1, hue 0.10075331, saturation 0.69411767, and value 1.0.
1936     * It can be represented as a packed float with the constant {@code -0x1.9d73fep125F}.
1937     * <pre>
1938     * <font style='background-color: #FFB94E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB94E; color: #000000'>&nbsp;@&nbsp;</font>
1939     * <font style='background-color: #FFB94E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFB94E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFB94E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFB94E'>&nbsp;@&nbsp;</font><font style='background-color: #FFB94E; color: #888888'>&nbsp;@&nbsp;</font>
1940     * <font style='background-color: #FFB94E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB94E; color: #ffffff'>&nbsp;@&nbsp;</font>
1941     * </pre>
1942     */
1943    public static final SColor FLORAL_LEAF = new SColor(0xFFB94E, "Floral Leaf");
1944
1945    /**
1946     * This color constant "Foreign Crimson" has RGB code {@code 0xC91F37}, red 0.7882353, green 0.12156863, blue 0.21568628, alpha 1, hue 0.9764706, saturation 0.84577113, and value 0.7882353.
1947     * It can be represented as a packed float with the constant {@code -0x1.6e3f92p125F}.
1948     * <pre>
1949     * <font style='background-color: #C91F37;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C91F37; color: #000000'>&nbsp;@&nbsp;</font>
1950     * <font style='background-color: #C91F37;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C91F37'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C91F37'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C91F37'>&nbsp;@&nbsp;</font><font style='background-color: #C91F37; color: #888888'>&nbsp;@&nbsp;</font>
1951     * <font style='background-color: #C91F37;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C91F37; color: #ffffff'>&nbsp;@&nbsp;</font>
1952     * </pre>
1953     */
1954    public static final SColor FOREIGN_CRIMSON = new SColor(0xC91F37, "Foreign Crimson");
1955
1956    /**
1957     * This color constant "Forest Green" has RGB code {@code 0x228B22}, red 0.13333334, green 0.54509807, blue 0.13333334, alpha 1, hue 0.33333337, saturation 0.7553957, and value 0.54509807.
1958     * It can be represented as a packed float with the constant {@code -0x1.451644p125F}.
1959     * <pre>
1960     * <font style='background-color: #228B22;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #228B22; color: #000000'>&nbsp;@&nbsp;</font>
1961     * <font style='background-color: #228B22;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #228B22'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #228B22'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #228B22'>&nbsp;@&nbsp;</font><font style='background-color: #228B22; color: #888888'>&nbsp;@&nbsp;</font>
1962     * <font style='background-color: #228B22;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #228B22; color: #ffffff'>&nbsp;@&nbsp;</font>
1963     * </pre>
1964     */
1965    public static final SColor FOREST_GREEN = new SColor(0x228B22, "Forest Green");
1966
1967    /**
1968     * This color constant "Fox" has RGB code {@code 0x985629}, red 0.59607846, green 0.3372549, blue 0.16078432, alpha 1, hue 0.06756759, saturation 0.7302632, and value 0.59607846.
1969     * It can be represented as a packed float with the constant {@code -0x1.52ad3p125F}.
1970     * <pre>
1971     * <font style='background-color: #985629;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #985629; color: #000000'>&nbsp;@&nbsp;</font>
1972     * <font style='background-color: #985629;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #985629'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #985629'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #985629'>&nbsp;@&nbsp;</font><font style='background-color: #985629; color: #888888'>&nbsp;@&nbsp;</font>
1973     * <font style='background-color: #985629;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #985629; color: #ffffff'>&nbsp;@&nbsp;</font>
1974     * </pre>
1975     */
1976    public static final SColor FOX = new SColor(0x985629, "Fox");
1977
1978    /**
1979     * This color constant "Fragile Seaweed Brown" has RGB code {@code 0x2E372E}, red 0.18039216, green 0.21568628, blue 0.18039216, alpha 1, hue 0.33333325, saturation 0.16363636, and value 0.21568628.
1980     * It can be represented as a packed float with the constant {@code -0x1.5c6e5cp125F}.
1981     * <pre>
1982     * <font style='background-color: #2E372E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2E372E; color: #000000'>&nbsp;@&nbsp;</font>
1983     * <font style='background-color: #2E372E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2E372E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2E372E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2E372E'>&nbsp;@&nbsp;</font><font style='background-color: #2E372E; color: #888888'>&nbsp;@&nbsp;</font>
1984     * <font style='background-color: #2E372E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2E372E; color: #ffffff'>&nbsp;@&nbsp;</font>
1985     * </pre>
1986     */
1987    public static final SColor FRAGILE_SEAWEED_BROWN = new SColor(0x2E372E, "Fragile Seaweed Brown");
1988
1989    /**
1990     * This color constant "French Rose" has RGB code {@code 0xF64A8A}, red 0.9647059, green 0.2901961, blue 0.5411765, alpha 1, hue 0.9379845, saturation 0.6991869, and value 0.9647059.
1991     * It can be represented as a packed float with the constant {@code -0x1.1495ecp126F}.
1992     * <pre>
1993     * <font style='background-color: #F64A8A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F64A8A; color: #000000'>&nbsp;@&nbsp;</font>
1994     * <font style='background-color: #F64A8A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F64A8A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F64A8A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F64A8A'>&nbsp;@&nbsp;</font><font style='background-color: #F64A8A; color: #888888'>&nbsp;@&nbsp;</font>
1995     * <font style='background-color: #F64A8A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F64A8A; color: #ffffff'>&nbsp;@&nbsp;</font>
1996     * </pre>
1997     */
1998    public static final SColor FRENCH_ROSE = new SColor(0xF64A8A, "French Rose");
1999
2000    /**
2001     * This color constant "Fresh Onion" has RGB code {@code 0x5B8930}, red 0.35686275, green 0.5372549, blue 0.1882353, alpha 1, hue 0.25280905, saturation 0.6496351, and value 0.5372549.
2002     * It can be represented as a packed float with the constant {@code -0x1.6112b6p125F}.
2003     * <pre>
2004     * <font style='background-color: #5B8930;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5B8930; color: #000000'>&nbsp;@&nbsp;</font>
2005     * <font style='background-color: #5B8930;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5B8930'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5B8930'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5B8930'>&nbsp;@&nbsp;</font><font style='background-color: #5B8930; color: #888888'>&nbsp;@&nbsp;</font>
2006     * <font style='background-color: #5B8930;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5B8930; color: #ffffff'>&nbsp;@&nbsp;</font>
2007     * </pre>
2008     */
2009    public static final SColor FRESH_ONION = new SColor(0x5B8930, "Fresh Onion");
2010
2011    /**
2012     * This color constant "Fuchsia Pink" has RGB code {@code 0xFF77FF}, red 1.0, green 0.46666667, blue 1.0, alpha 1, hue 0.8333333, saturation 0.5333333, and value 1.0.
2013     * It can be represented as a packed float with the constant {@code -0x1.feeffep126F}.
2014     * <pre>
2015     * <font style='background-color: #FF77FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF77FF; color: #000000'>&nbsp;@&nbsp;</font>
2016     * <font style='background-color: #FF77FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF77FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF77FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF77FF'>&nbsp;@&nbsp;</font><font style='background-color: #FF77FF; color: #888888'>&nbsp;@&nbsp;</font>
2017     * <font style='background-color: #FF77FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF77FF; color: #ffffff'>&nbsp;@&nbsp;</font>
2018     * </pre>
2019     */
2020    public static final SColor FUCHSIA_PINK = new SColor(0xFF77FF, "Fuchsia Pink");
2021
2022    /**
2023     * This color constant "Gamboge" has RGB code {@code 0xE49B0F}, red 0.89411765, green 0.60784316, blue 0.05882353, alpha 1, hue 0.109546185, saturation 0.93421054, and value 0.89411765.
2024     * It can be represented as a packed float with the constant {@code -0x1.1f37c8p125F}.
2025     * <pre>
2026     * <font style='background-color: #E49B0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E49B0F; color: #000000'>&nbsp;@&nbsp;</font>
2027     * <font style='background-color: #E49B0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E49B0F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E49B0F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E49B0F'>&nbsp;@&nbsp;</font><font style='background-color: #E49B0F; color: #888888'>&nbsp;@&nbsp;</font>
2028     * <font style='background-color: #E49B0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E49B0F; color: #ffffff'>&nbsp;@&nbsp;</font>
2029     * </pre>
2030     */
2031    public static final SColor GAMBOGE = new SColor(0xE49B0F, "Gamboge");
2032
2033    /**
2034     * This color constant "Gamboge Dye" has RGB code {@code 0xFFB61E}, red 1.0, green 0.7137255, blue 0.11764706, alpha 1, hue 0.1125927, saturation 0.88235295, and value 1.0.
2035     * It can be represented as a packed float with the constant {@code -0x1.3d6dfep125F}.
2036     * <pre>
2037     * <font style='background-color: #FFB61E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB61E; color: #000000'>&nbsp;@&nbsp;</font>
2038     * <font style='background-color: #FFB61E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFB61E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFB61E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFB61E'>&nbsp;@&nbsp;</font><font style='background-color: #FFB61E; color: #888888'>&nbsp;@&nbsp;</font>
2039     * <font style='background-color: #FFB61E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB61E; color: #ffffff'>&nbsp;@&nbsp;</font>
2040     * </pre>
2041     */
2042    public static final SColor GAMBOGE_DYE = new SColor(0xFFB61E, "Gamboge Dye");
2043
2044    /**
2045     * This color constant "Glazed Persimmon" has RGB code {@code 0xD34E36}, red 0.827451, green 0.30588236, blue 0.21176471, alpha 1, hue 0.025477648, saturation 0.74407583, and value 0.827451.
2046     * It can be represented as a packed float with the constant {@code -0x1.6c9da6p125F}.
2047     * <pre>
2048     * <font style='background-color: #D34E36;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D34E36; color: #000000'>&nbsp;@&nbsp;</font>
2049     * <font style='background-color: #D34E36;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D34E36'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D34E36'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D34E36'>&nbsp;@&nbsp;</font><font style='background-color: #D34E36; color: #888888'>&nbsp;@&nbsp;</font>
2050     * <font style='background-color: #D34E36;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D34E36; color: #ffffff'>&nbsp;@&nbsp;</font>
2051     * </pre>
2052     */
2053    public static final SColor GLAZED_PERSIMMON = new SColor(0xD34E36, "Glazed Persimmon");
2054
2055    /**
2056     * This color constant "Gold" has RGB code {@code 0xD4AF37}, red 0.83137256, green 0.6862745, blue 0.21568628, alpha 1, hue 0.12738848, saturation 0.7405661, and value 0.83137256.
2057     * It can be represented as a packed float with the constant {@code -0x1.6f5fa8p125F}.
2058     * <pre>
2059     * <font style='background-color: #D4AF37;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D4AF37; color: #000000'>&nbsp;@&nbsp;</font>
2060     * <font style='background-color: #D4AF37;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D4AF37'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D4AF37'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D4AF37'>&nbsp;@&nbsp;</font><font style='background-color: #D4AF37; color: #888888'>&nbsp;@&nbsp;</font>
2061     * <font style='background-color: #D4AF37;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D4AF37; color: #ffffff'>&nbsp;@&nbsp;</font>
2062     * </pre>
2063     */
2064    public static final SColor GOLD = new SColor(0xD4AF37, "Gold");
2065
2066    /**
2067     * This color constant "Golden" has RGB code {@code 0xFFD700}, red 1.0, green 0.84313726, blue 0.0, alpha 1, hue 0.14052296, saturation 1.0, and value 1.0.
2068     * It can be represented as a packed float with the constant {@code -0x1.01affep125F}.
2069     * <pre>
2070     * <font style='background-color: #FFD700;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFD700; color: #000000'>&nbsp;@&nbsp;</font>
2071     * <font style='background-color: #FFD700;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFD700'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFD700'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFD700'>&nbsp;@&nbsp;</font><font style='background-color: #FFD700; color: #888888'>&nbsp;@&nbsp;</font>
2072     * <font style='background-color: #FFD700;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFD700; color: #ffffff'>&nbsp;@&nbsp;</font>
2073     * </pre>
2074     */
2075    public static final SColor GOLDEN = new SColor(0xFFD700, "Golden");
2076
2077    /**
2078     * This color constant "Golden Brown" has RGB code {@code 0x996515}, red 0.6, green 0.39607844, blue 0.08235294, alpha 1, hue 0.101010084, saturation 0.8627451, and value 0.6.
2079     * It can be represented as a packed float with the constant {@code -0x1.2acb32p125F}.
2080     * <pre>
2081     * <font style='background-color: #996515;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #996515; color: #000000'>&nbsp;@&nbsp;</font>
2082     * <font style='background-color: #996515;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #996515'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #996515'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #996515'>&nbsp;@&nbsp;</font><font style='background-color: #996515; color: #888888'>&nbsp;@&nbsp;</font>
2083     * <font style='background-color: #996515;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #996515; color: #ffffff'>&nbsp;@&nbsp;</font>
2084     * </pre>
2085     */
2086    public static final SColor GOLDEN_BROWN = new SColor(0x996515, "Golden Brown");
2087
2088    /**
2089     * This color constant "Golden Brown Dye" has RGB code {@code 0xC66B27}, red 0.7764706, green 0.41960785, blue 0.15294118, alpha 1, hue 0.07127881, saturation 0.8030303, and value 0.7764706.
2090     * It can be represented as a packed float with the constant {@code -0x1.4ed78cp125F}.
2091     * <pre>
2092     * <font style='background-color: #C66B27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C66B27; color: #000000'>&nbsp;@&nbsp;</font>
2093     * <font style='background-color: #C66B27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C66B27'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C66B27'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C66B27'>&nbsp;@&nbsp;</font><font style='background-color: #C66B27; color: #888888'>&nbsp;@&nbsp;</font>
2094     * <font style='background-color: #C66B27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C66B27; color: #ffffff'>&nbsp;@&nbsp;</font>
2095     * </pre>
2096     */
2097    public static final SColor GOLDEN_BROWN_DYE = new SColor(0xC66B27, "Golden Brown Dye");
2098
2099    /**
2100     * This color constant "Golden Fallen Leaves" has RGB code {@code 0xE29C45}, red 0.8862745, green 0.6117647, blue 0.27058825, alpha 1, hue 0.09235668, saturation 0.6946903, and value 0.8862745.
2101     * It can be represented as a packed float with the constant {@code -0x1.8b39c4p125F}.
2102     * <pre>
2103     * <font style='background-color: #E29C45;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E29C45; color: #000000'>&nbsp;@&nbsp;</font>
2104     * <font style='background-color: #E29C45;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E29C45'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E29C45'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E29C45'>&nbsp;@&nbsp;</font><font style='background-color: #E29C45; color: #888888'>&nbsp;@&nbsp;</font>
2105     * <font style='background-color: #E29C45;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E29C45; color: #ffffff'>&nbsp;@&nbsp;</font>
2106     * </pre>
2107     */
2108    public static final SColor GOLDEN_FALLEN_LEAVES = new SColor(0xE29C45, "Golden Fallen Leaves");
2109
2110    /**
2111     * This color constant "Golden Oak" has RGB code {@code 0xBB8141}, red 0.73333335, green 0.5058824, blue 0.25490198, alpha 1, hue 0.08743179, saturation 0.6524064, and value 0.73333335.
2112     * It can be represented as a packed float with the constant {@code -0x1.830376p125F}.
2113     * <pre>
2114     * <font style='background-color: #BB8141;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BB8141; color: #000000'>&nbsp;@&nbsp;</font>
2115     * <font style='background-color: #BB8141;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BB8141'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BB8141'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BB8141'>&nbsp;@&nbsp;</font><font style='background-color: #BB8141; color: #888888'>&nbsp;@&nbsp;</font>
2116     * <font style='background-color: #BB8141;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BB8141; color: #ffffff'>&nbsp;@&nbsp;</font>
2117     * </pre>
2118     */
2119    public static final SColor GOLDEN_OAK = new SColor(0xBB8141, "Golden Oak");
2120
2121    /**
2122     * This color constant "Golden Yellow" has RGB code {@code 0xFFDF00}, red 1.0, green 0.8745098, blue 0.0, alpha 1, hue 0.14575171, saturation 1.0, and value 1.0.
2123     * It can be represented as a packed float with the constant {@code -0x1.01bffep125F}.
2124     * <pre>
2125     * <font style='background-color: #FFDF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFDF00; color: #000000'>&nbsp;@&nbsp;</font>
2126     * <font style='background-color: #FFDF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFDF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFDF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFDF00'>&nbsp;@&nbsp;</font><font style='background-color: #FFDF00; color: #888888'>&nbsp;@&nbsp;</font>
2127     * <font style='background-color: #FFDF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFDF00; color: #ffffff'>&nbsp;@&nbsp;</font>
2128     * </pre>
2129     */
2130    public static final SColor GOLDEN_YELLOW = new SColor(0xFFDF00, "Golden Yellow");
2131
2132    /**
2133     * This color constant "Goldenrod" has RGB code {@code 0xDAA520}, red 0.85490197, green 0.64705884, blue 0.1254902, alpha 1, hue 0.11917567, saturation 0.85321105, and value 0.85490197.
2134     * It can be represented as a packed float with the constant {@code -0x1.414bb4p125F}.
2135     * <pre>
2136     * <font style='background-color: #DAA520;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DAA520; color: #000000'>&nbsp;@&nbsp;</font>
2137     * <font style='background-color: #DAA520;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DAA520'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DAA520'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DAA520'>&nbsp;@&nbsp;</font><font style='background-color: #DAA520; color: #888888'>&nbsp;@&nbsp;</font>
2138     * <font style='background-color: #DAA520;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DAA520; color: #ffffff'>&nbsp;@&nbsp;</font>
2139     * </pre>
2140     */
2141    public static final SColor GOLDENROD = new SColor(0xDAA520, "Goldenrod");
2142
2143    /**
2144     * This color constant "Goryeo Storeroom" has RGB code {@code 0x203838}, red 0.1254902, green 0.21960784, blue 0.21960784, alpha 1, hue 0.5, saturation 0.4285714, and value 0.21960784.
2145     * It can be represented as a packed float with the constant {@code -0x1.70704p125F}.
2146     * <pre>
2147     * <font style='background-color: #203838;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #203838; color: #000000'>&nbsp;@&nbsp;</font>
2148     * <font style='background-color: #203838;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #203838'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #203838'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #203838'>&nbsp;@&nbsp;</font><font style='background-color: #203838; color: #888888'>&nbsp;@&nbsp;</font>
2149     * <font style='background-color: #203838;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #203838; color: #ffffff'>&nbsp;@&nbsp;</font>
2150     * </pre>
2151     */
2152    public static final SColor GORYEO_STOREROOM = new SColor(0x203838, "Goryeo Storeroom");
2153
2154    /**
2155     * This color constant "Grape Mouse" has RGB code {@code 0x63424B}, red 0.3882353, green 0.25882354, blue 0.29411766, alpha 1, hue 0.95454544, saturation 0.3333333, and value 0.3882353.
2156     * It can be represented as a packed float with the constant {@code -0x1.9684c6p125F}.
2157     * <pre>
2158     * <font style='background-color: #63424B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #63424B; color: #000000'>&nbsp;@&nbsp;</font>
2159     * <font style='background-color: #63424B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #63424B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #63424B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #63424B'>&nbsp;@&nbsp;</font><font style='background-color: #63424B; color: #888888'>&nbsp;@&nbsp;</font>
2160     * <font style='background-color: #63424B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #63424B; color: #ffffff'>&nbsp;@&nbsp;</font>
2161     * </pre>
2162     */
2163    public static final SColor GRAPE_MOUSE = new SColor(0x63424B, "Grape Mouse");
2164
2165    /**
2166     * This color constant "Gray" has RGB code {@code 0x808080}, red 0.5019608, green 0.5019608, blue 0.5019608, alpha 1, hue 0.0, saturation 0.0, and value 0.5019608.
2167     * It can be represented as a packed float with the constant {@code -0x1.0101p126F}.
2168     * <pre>
2169     * <font style='background-color: #808080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #808080; color: #000000'>&nbsp;@&nbsp;</font>
2170     * <font style='background-color: #808080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #808080'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #808080'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #808080'>&nbsp;@&nbsp;</font><font style='background-color: #808080; color: #888888'>&nbsp;@&nbsp;</font>
2171     * <font style='background-color: #808080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #808080; color: #ffffff'>&nbsp;@&nbsp;</font>
2172     * </pre>
2173     */
2174    public static final SColor GRAY = new SColor(0x808080, "Gray");
2175
2176    /**
2177     * This color constant "Gray Asparagus" has RGB code {@code 0x465945}, red 0.27450982, green 0.34901962, blue 0.27058825, alpha 1, hue 0.32500005, saturation 0.22471908, and value 0.34901962.
2178     * It can be represented as a packed float with the constant {@code -0x1.8ab28cp125F}.
2179     * <pre>
2180     * <font style='background-color: #465945;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #465945; color: #000000'>&nbsp;@&nbsp;</font>
2181     * <font style='background-color: #465945;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #465945'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #465945'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #465945'>&nbsp;@&nbsp;</font><font style='background-color: #465945; color: #888888'>&nbsp;@&nbsp;</font>
2182     * <font style='background-color: #465945;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #465945; color: #ffffff'>&nbsp;@&nbsp;</font>
2183     * </pre>
2184     */
2185    public static final SColor GRAY_ASPARAGUS = new SColor(0x465945, "Gray Asparagus");
2186
2187    /**
2188     * This color constant "Green" has RGB code {@code 0x008000}, red 0.0, green 0.5019608, blue 0.0, alpha 1, hue 0.33333337, saturation 1.0, and value 0.5019608.
2189     * It can be represented as a packed float with the constant {@code -0x1.01p125F}.
2190     * <pre>
2191     * <font style='background-color: #008000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #008000; color: #000000'>&nbsp;@&nbsp;</font>
2192     * <font style='background-color: #008000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #008000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #008000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #008000'>&nbsp;@&nbsp;</font><font style='background-color: #008000; color: #888888'>&nbsp;@&nbsp;</font>
2193     * <font style='background-color: #008000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #008000; color: #ffffff'>&nbsp;@&nbsp;</font>
2194     * </pre>
2195     */
2196    public static final SColor GREEN = new SColor(0x008000, "Green");
2197
2198    /**
2199     * This color constant "Greenfinch" has RGB code {@code 0xBDA928}, red 0.7411765, green 0.6627451, blue 0.15686275, alpha 1, hue 0.14429522, saturation 0.7883598, and value 0.7411765.
2200     * It can be represented as a packed float with the constant {@code -0x1.51537ap125F}.
2201     * <pre>
2202     * <font style='background-color: #BDA928;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BDA928; color: #000000'>&nbsp;@&nbsp;</font>
2203     * <font style='background-color: #BDA928;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BDA928'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BDA928'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BDA928'>&nbsp;@&nbsp;</font><font style='background-color: #BDA928; color: #888888'>&nbsp;@&nbsp;</font>
2204     * <font style='background-color: #BDA928;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BDA928; color: #ffffff'>&nbsp;@&nbsp;</font>
2205     * </pre>
2206     */
2207    public static final SColor GREENFINCH = new SColor(0xBDA928, "Greenfinch");
2208
2209    /**
2210     * This color constant "Green Bamboo" has RGB code {@code 0x006442}, red 0.0, green 0.39215687, blue 0.25882354, alpha 1, hue 0.4433334, saturation 1.0, and value 0.39215687.
2211     * It can be represented as a packed float with the constant {@code -0x1.84c8p125F}.
2212     * <pre>
2213     * <font style='background-color: #006442;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #006442; color: #000000'>&nbsp;@&nbsp;</font>
2214     * <font style='background-color: #006442;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #006442'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #006442'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #006442'>&nbsp;@&nbsp;</font><font style='background-color: #006442; color: #888888'>&nbsp;@&nbsp;</font>
2215     * <font style='background-color: #006442;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #006442; color: #ffffff'>&nbsp;@&nbsp;</font>
2216     * </pre>
2217     */
2218    public static final SColor GREEN_BAMBOO = new SColor(0x006442, "Green Bamboo");
2219
2220    /**
2221     * This color constant "Green Tea Dye" has RGB code {@code 0x824B35}, red 0.50980395, green 0.29411766, blue 0.20784314, alpha 1, hue 0.047619104, saturation 0.59230775, and value 0.50980395.
2222     * It can be represented as a packed float with the constant {@code -0x1.6a9704p125F}.
2223     * <pre>
2224     * <font style='background-color: #824B35;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #824B35; color: #000000'>&nbsp;@&nbsp;</font>
2225     * <font style='background-color: #824B35;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #824B35'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #824B35'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #824B35'>&nbsp;@&nbsp;</font><font style='background-color: #824B35; color: #888888'>&nbsp;@&nbsp;</font>
2226     * <font style='background-color: #824B35;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #824B35; color: #ffffff'>&nbsp;@&nbsp;</font>
2227     * </pre>
2228     */
2229    public static final SColor GREEN_TEA_DYE = new SColor(0x824B35, "Green Tea Dye");
2230
2231    /**
2232     * This color constant "Green Yellow" has RGB code {@code 0xADFF2F}, red 0.6784314, green 1.0, blue 0.18431373, alpha 1, hue 0.2323718, saturation 0.8156863, and value 1.0.
2233     * It can be represented as a packed float with the constant {@code -0x1.5fff5ap125F}.
2234     * <pre>
2235     * <font style='background-color: #ADFF2F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ADFF2F; color: #000000'>&nbsp;@&nbsp;</font>
2236     * <font style='background-color: #ADFF2F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ADFF2F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ADFF2F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ADFF2F'>&nbsp;@&nbsp;</font><font style='background-color: #ADFF2F; color: #888888'>&nbsp;@&nbsp;</font>
2237     * <font style='background-color: #ADFF2F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ADFF2F; color: #ffffff'>&nbsp;@&nbsp;</font>
2238     * </pre>
2239     */
2240    public static final SColor GREEN_YELLOW = new SColor(0xADFF2F, "Green Yellow");
2241
2242    /**
2243     * This color constant "Greyish Dark Green" has RGB code {@code 0x656255}, red 0.39607844, green 0.38431373, blue 0.33333334, alpha 1, hue 0.13541675, saturation 0.15841582, and value 0.39607844.
2244     * It can be represented as a packed float with the constant {@code -0x1.aac4cap125F}.
2245     * <pre>
2246     * <font style='background-color: #656255;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #656255; color: #000000'>&nbsp;@&nbsp;</font>
2247     * <font style='background-color: #656255;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #656255'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #656255'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #656255'>&nbsp;@&nbsp;</font><font style='background-color: #656255; color: #888888'>&nbsp;@&nbsp;</font>
2248     * <font style='background-color: #656255;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #656255; color: #ffffff'>&nbsp;@&nbsp;</font>
2249     * </pre>
2250     */
2251    public static final SColor GREYISH_DARK_GREEN = new SColor(0x656255, "Greyish Dark Green");
2252
2253    /**
2254     * This color constant "Half Purple" has RGB code {@code 0x8D608C}, red 0.5529412, green 0.3764706, blue 0.54901963, alpha 1, hue 0.837037, saturation 0.31914896, and value 0.5529412.
2255     * It can be represented as a packed float with the constant {@code -0x1.18c11ap126F}.
2256     * <pre>
2257     * <font style='background-color: #8D608C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8D608C; color: #000000'>&nbsp;@&nbsp;</font>
2258     * <font style='background-color: #8D608C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8D608C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8D608C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8D608C'>&nbsp;@&nbsp;</font><font style='background-color: #8D608C; color: #888888'>&nbsp;@&nbsp;</font>
2259     * <font style='background-color: #8D608C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8D608C; color: #ffffff'>&nbsp;@&nbsp;</font>
2260     * </pre>
2261     */
2262    public static final SColor HALF_PURPLE = new SColor(0x8D608C, "Half Purple");
2263
2264    /**
2265     * This color constant "Han Purple" has RGB code {@code 0x5218FA}, red 0.32156864, green 0.09411765, blue 0.98039216, alpha 1, hue 0.70943964, saturation 0.904, and value 0.98039216.
2266     * It can be represented as a packed float with the constant {@code -0x1.f430a4p126F}.
2267     * <pre>
2268     * <font style='background-color: #5218FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5218FA; color: #000000'>&nbsp;@&nbsp;</font>
2269     * <font style='background-color: #5218FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5218FA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5218FA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5218FA'>&nbsp;@&nbsp;</font><font style='background-color: #5218FA; color: #888888'>&nbsp;@&nbsp;</font>
2270     * <font style='background-color: #5218FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5218FA; color: #ffffff'>&nbsp;@&nbsp;</font>
2271     * </pre>
2272     */
2273    public static final SColor HAN_PURPLE = new SColor(0x5218FA, "Han Purple");
2274
2275    /**
2276     * This color constant "Harbor Rat" has RGB code {@code 0x757D75}, red 0.45882353, green 0.49019608, blue 0.45882353, alpha 1, hue 0.33333325, saturation 0.063999996, and value 0.49019608.
2277     * It can be represented as a packed float with the constant {@code -0x1.eafaeap125F}.
2278     * <pre>
2279     * <font style='background-color: #757D75;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #757D75; color: #000000'>&nbsp;@&nbsp;</font>
2280     * <font style='background-color: #757D75;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #757D75'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #757D75'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #757D75'>&nbsp;@&nbsp;</font><font style='background-color: #757D75; color: #888888'>&nbsp;@&nbsp;</font>
2281     * <font style='background-color: #757D75;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #757D75; color: #ffffff'>&nbsp;@&nbsp;</font>
2282     * </pre>
2283     */
2284    public static final SColor HARBOR_RAT = new SColor(0x757D75, "Harbor Rat");
2285
2286    /**
2287     * This color constant "Heliotrope" has RGB code {@code 0xDF73FF}, red 0.8745098, green 0.4509804, blue 1.0, alpha 1, hue 0.79523826, saturation 0.5490196, and value 1.0.
2288     * It can be represented as a packed float with the constant {@code -0x1.fee7bep126F}.
2289     * <pre>
2290     * <font style='background-color: #DF73FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DF73FF; color: #000000'>&nbsp;@&nbsp;</font>
2291     * <font style='background-color: #DF73FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DF73FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DF73FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DF73FF'>&nbsp;@&nbsp;</font><font style='background-color: #DF73FF; color: #888888'>&nbsp;@&nbsp;</font>
2292     * <font style='background-color: #DF73FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DF73FF; color: #ffffff'>&nbsp;@&nbsp;</font>
2293     * </pre>
2294     */
2295    public static final SColor HELIOTROPE = new SColor(0xDF73FF, "Heliotrope");
2296
2297    /**
2298     * This color constant "Hollywood Cerise" has RGB code {@code 0xF400A1}, red 0.95686275, green 0.0, blue 0.6313726, alpha 1, hue 0.89002734, saturation 1.0, and value 0.95686275.
2299     * It can be represented as a packed float with the constant {@code -0x1.4201e8p126F}.
2300     * <pre>
2301     * <font style='background-color: #F400A1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F400A1; color: #000000'>&nbsp;@&nbsp;</font>
2302     * <font style='background-color: #F400A1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F400A1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F400A1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F400A1'>&nbsp;@&nbsp;</font><font style='background-color: #F400A1; color: #888888'>&nbsp;@&nbsp;</font>
2303     * <font style='background-color: #F400A1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F400A1; color: #ffffff'>&nbsp;@&nbsp;</font>
2304     * </pre>
2305     */
2306    public static final SColor HOLLYWOOD_CERISE = new SColor(0xF400A1, "Hollywood Cerise");
2307
2308    /**
2309     * This color constant "Horsetail" has RGB code {@code 0x3D5D42}, red 0.23921569, green 0.3647059, blue 0.25882354, alpha 1, hue 0.359375, saturation 0.34408602, and value 0.3647059.
2310     * It can be represented as a packed float with the constant {@code -0x1.84ba7ap125F}.
2311     * <pre>
2312     * <font style='background-color: #3D5D42;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D5D42; color: #000000'>&nbsp;@&nbsp;</font>
2313     * <font style='background-color: #3D5D42;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3D5D42'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3D5D42'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3D5D42'>&nbsp;@&nbsp;</font><font style='background-color: #3D5D42; color: #888888'>&nbsp;@&nbsp;</font>
2314     * <font style='background-color: #3D5D42;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D5D42; color: #ffffff'>&nbsp;@&nbsp;</font>
2315     * </pre>
2316     */
2317    public static final SColor HORSETAIL = new SColor(0x3D5D42, "Horsetail");
2318
2319    /**
2320     * This color constant "Hot Magenta" has RGB code {@code 0xFF00CC}, red 1.0, green 0.0, blue 0.8, alpha 1, hue 0.8666666, saturation 1.0, and value 1.0.
2321     * It can be represented as a packed float with the constant {@code -0x1.9801fep126F}.
2322     * <pre>
2323     * <font style='background-color: #FF00CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF00CC; color: #000000'>&nbsp;@&nbsp;</font>
2324     * <font style='background-color: #FF00CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF00CC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF00CC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF00CC'>&nbsp;@&nbsp;</font><font style='background-color: #FF00CC; color: #888888'>&nbsp;@&nbsp;</font>
2325     * <font style='background-color: #FF00CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF00CC; color: #ffffff'>&nbsp;@&nbsp;</font>
2326     * </pre>
2327     */
2328    public static final SColor HOT_MAGENTA = new SColor(0xFF00CC, "Hot Magenta");
2329
2330    /**
2331     * This color constant "Hot Pink" has RGB code {@code 0xFF69B4}, red 1.0, green 0.4117647, blue 0.7058824, alpha 1, hue 0.91666657, saturation 0.58823526, and value 1.0.
2332     * It can be represented as a packed float with the constant {@code -0x1.68d3fep126F}.
2333     * <pre>
2334     * <font style='background-color: #FF69B4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF69B4; color: #000000'>&nbsp;@&nbsp;</font>
2335     * <font style='background-color: #FF69B4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF69B4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF69B4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF69B4'>&nbsp;@&nbsp;</font><font style='background-color: #FF69B4; color: #888888'>&nbsp;@&nbsp;</font>
2336     * <font style='background-color: #FF69B4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF69B4; color: #ffffff'>&nbsp;@&nbsp;</font>
2337     * </pre>
2338     */
2339    public static final SColor HOT_PINK = new SColor(0xFF69B4, "Hot Pink");
2340
2341    /**
2342     * This color constant "Ibis" has RGB code {@code 0x4C221B}, red 0.29803923, green 0.13333334, blue 0.105882354, alpha 1, hue 0.023809433, saturation 0.6447369, and value 0.29803923.
2343     * It can be represented as a packed float with the constant {@code -0x1.364498p125F}.
2344     * <pre>
2345     * <font style='background-color: #4C221B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4C221B; color: #000000'>&nbsp;@&nbsp;</font>
2346     * <font style='background-color: #4C221B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4C221B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4C221B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4C221B'>&nbsp;@&nbsp;</font><font style='background-color: #4C221B; color: #888888'>&nbsp;@&nbsp;</font>
2347     * <font style='background-color: #4C221B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4C221B; color: #ffffff'>&nbsp;@&nbsp;</font>
2348     * </pre>
2349     */
2350    public static final SColor IBIS = new SColor(0x4C221B, "Ibis");
2351
2352    /**
2353     * This color constant "Ibis Wing" has RGB code {@code 0xF58F84}, red 0.9607843, green 0.56078434, blue 0.5176471, alpha 1, hue 0.016224265, saturation 0.46122447, and value 0.9607843.
2354     * It can be represented as a packed float with the constant {@code -0x1.091feap126F}.
2355     * <pre>
2356     * <font style='background-color: #F58F84;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F58F84; color: #000000'>&nbsp;@&nbsp;</font>
2357     * <font style='background-color: #F58F84;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F58F84'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F58F84'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F58F84'>&nbsp;@&nbsp;</font><font style='background-color: #F58F84; color: #888888'>&nbsp;@&nbsp;</font>
2358     * <font style='background-color: #F58F84;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F58F84; color: #ffffff'>&nbsp;@&nbsp;</font>
2359     * </pre>
2360     */
2361    public static final SColor IBIS_WING = new SColor(0xF58F84, "Ibis Wing");
2362
2363    /**
2364     * This color constant "Indigo" has RGB code {@code 0x4B0082}, red 0.29411766, green 0.0, blue 0.50980395, alpha 1, hue 0.7628207, saturation 1.0, and value 0.50980395.
2365     * It can be represented as a packed float with the constant {@code -0x1.040096p126F}.
2366     * <pre>
2367     * <font style='background-color: #4B0082;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B0082; color: #000000'>&nbsp;@&nbsp;</font>
2368     * <font style='background-color: #4B0082;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4B0082'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4B0082'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4B0082'>&nbsp;@&nbsp;</font><font style='background-color: #4B0082; color: #888888'>&nbsp;@&nbsp;</font>
2369     * <font style='background-color: #4B0082;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B0082; color: #ffffff'>&nbsp;@&nbsp;</font>
2370     * </pre>
2371     */
2372    public static final SColor INDIGO = new SColor(0x4B0082, "Indigo");
2373
2374    /**
2375     * This color constant "Indigo Dye" has RGB code {@code 0x00416A}, red 0.0, green 0.25490198, blue 0.41568628, alpha 1, hue 0.5644653, saturation 1.0, and value 0.41568628.
2376     * It can be represented as a packed float with the constant {@code -0x1.d482p125F}.
2377     * <pre>
2378     * <font style='background-color: #00416A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00416A; color: #000000'>&nbsp;@&nbsp;</font>
2379     * <font style='background-color: #00416A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00416A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00416A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00416A'>&nbsp;@&nbsp;</font><font style='background-color: #00416A; color: #888888'>&nbsp;@&nbsp;</font>
2380     * <font style='background-color: #00416A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00416A; color: #ffffff'>&nbsp;@&nbsp;</font>
2381     * </pre>
2382     */
2383    public static final SColor INDIGO_DYE = new SColor(0x00416A, "Indigo Dye");
2384
2385    /**
2386     * This color constant "Indigo Ink Brown" has RGB code {@code 0x393432}, red 0.22352941, green 0.20392157, blue 0.19607843, alpha 1, hue 0.047619104, saturation 0.12280701, and value 0.22352941.
2387     * It can be represented as a packed float with the constant {@code -0x1.646872p125F}.
2388     * <pre>
2389     * <font style='background-color: #393432;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #393432; color: #000000'>&nbsp;@&nbsp;</font>
2390     * <font style='background-color: #393432;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #393432'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #393432'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #393432'>&nbsp;@&nbsp;</font><font style='background-color: #393432; color: #888888'>&nbsp;@&nbsp;</font>
2391     * <font style='background-color: #393432;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #393432; color: #ffffff'>&nbsp;@&nbsp;</font>
2392     * </pre>
2393     */
2394    public static final SColor INDIGO_INK_BROWN = new SColor(0x393432, "Indigo Ink Brown");
2395
2396    /**
2397     * This color constant "Indigo White" has RGB code {@code 0xEBF6F7}, red 0.92156863, green 0.9647059, blue 0.96862745, alpha 1, hue 0.51388884, saturation 0.048582993, and value 0.96862745.
2398     * It can be represented as a packed float with the constant {@code -0x1.efedd6p126F}.
2399     * <pre>
2400     * <font style='background-color: #EBF6F7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EBF6F7; color: #000000'>&nbsp;@&nbsp;</font>
2401     * <font style='background-color: #EBF6F7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EBF6F7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EBF6F7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EBF6F7'>&nbsp;@&nbsp;</font><font style='background-color: #EBF6F7; color: #888888'>&nbsp;@&nbsp;</font>
2402     * <font style='background-color: #EBF6F7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EBF6F7; color: #ffffff'>&nbsp;@&nbsp;</font>
2403     * </pre>
2404     */
2405    public static final SColor INDIGO_WHITE = new SColor(0xEBF6F7, "Indigo White");
2406
2407    /**
2408     * This color constant "Ink" has RGB code {@code 0x27221F}, red 0.15294118, green 0.13333334, blue 0.12156863, alpha 1, hue 0.06250012, saturation 0.20512824, and value 0.15294118.
2409     * It can be represented as a packed float with the constant {@code -0x1.3e444ep125F}.
2410     * <pre>
2411     * <font style='background-color: #27221F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #27221F; color: #000000'>&nbsp;@&nbsp;</font>
2412     * <font style='background-color: #27221F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #27221F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #27221F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #27221F'>&nbsp;@&nbsp;</font><font style='background-color: #27221F; color: #888888'>&nbsp;@&nbsp;</font>
2413     * <font style='background-color: #27221F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #27221F; color: #ffffff'>&nbsp;@&nbsp;</font>
2414     * </pre>
2415     */
2416    public static final SColor INK = new SColor(0x27221F, "Ink");
2417
2418    /**
2419     * This color constant "Insect Screen" has RGB code {@code 0x2D4436}, red 0.1764706, green 0.26666668, blue 0.21176471, alpha 1, hue 0.39855075, saturation 0.33823532, and value 0.26666668.
2420     * It can be represented as a packed float with the constant {@code -0x1.6c885ap125F}.
2421     * <pre>
2422     * <font style='background-color: #2D4436;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2D4436; color: #000000'>&nbsp;@&nbsp;</font>
2423     * <font style='background-color: #2D4436;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2D4436'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2D4436'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2D4436'>&nbsp;@&nbsp;</font><font style='background-color: #2D4436; color: #888888'>&nbsp;@&nbsp;</font>
2424     * <font style='background-color: #2D4436;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2D4436; color: #ffffff'>&nbsp;@&nbsp;</font>
2425     * </pre>
2426     */
2427    public static final SColor INSECT_SCREEN = new SColor(0x2D4436, "Insect Screen");
2428
2429    /**
2430     * This color constant "Inside Of A Bottle" has RGB code {@code 0xC6C2B6}, red 0.7764706, green 0.7607843, blue 0.7137255, alpha 1, hue 0.125, saturation 0.08080807, and value 0.7764706.
2431     * It can be represented as a packed float with the constant {@code -0x1.6d858cp126F}.
2432     * <pre>
2433     * <font style='background-color: #C6C2B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C6C2B6; color: #000000'>&nbsp;@&nbsp;</font>
2434     * <font style='background-color: #C6C2B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C6C2B6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C6C2B6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C6C2B6'>&nbsp;@&nbsp;</font><font style='background-color: #C6C2B6; color: #888888'>&nbsp;@&nbsp;</font>
2435     * <font style='background-color: #C6C2B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C6C2B6; color: #ffffff'>&nbsp;@&nbsp;</font>
2436     * </pre>
2437     */
2438    public static final SColor INSIDE_OF_A_BOTTLE = new SColor(0xC6C2B6, "Inside Of A Bottle");
2439
2440    /**
2441     * This color constant "International Klein Blue" has RGB code {@code 0x002FA7}, red 0.0, green 0.18431373, blue 0.654902, alpha 1, hue 0.61976063, saturation 1.0, and value 0.654902.
2442     * It can be represented as a packed float with the constant {@code -0x1.4e5ep126F}.
2443     * <pre>
2444     * <font style='background-color: #002FA7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #002FA7; color: #000000'>&nbsp;@&nbsp;</font>
2445     * <font style='background-color: #002FA7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #002FA7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #002FA7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #002FA7'>&nbsp;@&nbsp;</font><font style='background-color: #002FA7; color: #888888'>&nbsp;@&nbsp;</font>
2446     * <font style='background-color: #002FA7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #002FA7; color: #ffffff'>&nbsp;@&nbsp;</font>
2447     * </pre>
2448     */
2449    public static final SColor INTERNATIONAL_KLEIN_BLUE = new SColor(0x002FA7, "International Klein Blue");
2450
2451    /**
2452     * This color constant "International Orange" has RGB code {@code 0xFF4F00}, red 1.0, green 0.30980393, blue 0.0, alpha 1, hue 0.051634073, saturation 1.0, and value 1.0.
2453     * It can be represented as a packed float with the constant {@code -0x1.009ffep125F}.
2454     * <pre>
2455     * <font style='background-color: #FF4F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF4F00; color: #000000'>&nbsp;@&nbsp;</font>
2456     * <font style='background-color: #FF4F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF4F00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF4F00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF4F00'>&nbsp;@&nbsp;</font><font style='background-color: #FF4F00; color: #888888'>&nbsp;@&nbsp;</font>
2457     * <font style='background-color: #FF4F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF4F00; color: #ffffff'>&nbsp;@&nbsp;</font>
2458     * </pre>
2459     */
2460    public static final SColor INTERNATIONAL_ORANGE = new SColor(0xFF4F00, "International Orange");
2461
2462    /**
2463     * This color constant "Iris" has RGB code {@code 0x763568}, red 0.4627451, green 0.20784314, blue 0.40784314, alpha 1, hue 0.8692308, saturation 0.5508474, and value 0.4627451.
2464     * It can be represented as a packed float with the constant {@code -0x1.d06aecp125F}.
2465     * <pre>
2466     * <font style='background-color: #763568;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #763568; color: #000000'>&nbsp;@&nbsp;</font>
2467     * <font style='background-color: #763568;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #763568'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #763568'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #763568'>&nbsp;@&nbsp;</font><font style='background-color: #763568; color: #888888'>&nbsp;@&nbsp;</font>
2468     * <font style='background-color: #763568;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #763568; color: #ffffff'>&nbsp;@&nbsp;</font>
2469     * </pre>
2470     */
2471    public static final SColor IRIS = new SColor(0x763568, "Iris");
2472
2473    /**
2474     * This color constant "Iron" has RGB code {@code 0x2B3733}, red 0.16862746, green 0.21568628, blue 0.2, alpha 1, hue 0.44444442, saturation 0.2181818, and value 0.21568628.
2475     * It can be represented as a packed float with the constant {@code -0x1.666e56p125F}.
2476     * <pre>
2477     * <font style='background-color: #2B3733;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2B3733; color: #000000'>&nbsp;@&nbsp;</font>
2478     * <font style='background-color: #2B3733;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2B3733'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2B3733'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2B3733'>&nbsp;@&nbsp;</font><font style='background-color: #2B3733; color: #888888'>&nbsp;@&nbsp;</font>
2479     * <font style='background-color: #2B3733;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2B3733; color: #ffffff'>&nbsp;@&nbsp;</font>
2480     * </pre>
2481     */
2482    public static final SColor IRON = new SColor(0x2B3733, "Iron");
2483
2484    /**
2485     * This color constant "Ironhead Flower" has RGB code {@code 0x344D56}, red 0.20392157, green 0.3019608, blue 0.3372549, alpha 1, hue 0.5441178, saturation 0.39534885, and value 0.3372549.
2486     * It can be represented as a packed float with the constant {@code -0x1.ac9a68p125F}.
2487     * <pre>
2488     * <font style='background-color: #344D56;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #344D56; color: #000000'>&nbsp;@&nbsp;</font>
2489     * <font style='background-color: #344D56;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #344D56'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #344D56'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #344D56'>&nbsp;@&nbsp;</font><font style='background-color: #344D56; color: #888888'>&nbsp;@&nbsp;</font>
2490     * <font style='background-color: #344D56;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #344D56; color: #ffffff'>&nbsp;@&nbsp;</font>
2491     * </pre>
2492     */
2493    public static final SColor IRONHEAD_FLOWER = new SColor(0x344D56, "Ironhead Flower");
2494
2495    /**
2496     * This color constant "Iron Storage" has RGB code {@code 0x2B3736}, red 0.16862746, green 0.21568628, blue 0.21176471, alpha 1, hue 0.48611116, saturation 0.2181818, and value 0.21568628.
2497     * It can be represented as a packed float with the constant {@code -0x1.6c6e56p125F}.
2498     * <pre>
2499     * <font style='background-color: #2B3736;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2B3736; color: #000000'>&nbsp;@&nbsp;</font>
2500     * <font style='background-color: #2B3736;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2B3736'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2B3736'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2B3736'>&nbsp;@&nbsp;</font><font style='background-color: #2B3736; color: #888888'>&nbsp;@&nbsp;</font>
2501     * <font style='background-color: #2B3736;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2B3736; color: #ffffff'>&nbsp;@&nbsp;</font>
2502     * </pre>
2503     */
2504    public static final SColor IRON_STORAGE = new SColor(0x2B3736, "Iron Storage");
2505
2506    /**
2507     * This color constant "Islamic Green" has RGB code {@code 0x009000}, red 0.0, green 0.5647059, blue 0.0, alpha 1, hue 0.33333337, saturation 1.0, and value 0.5647059.
2508     * It can be represented as a packed float with the constant {@code -0x1.012p125F}.
2509     * <pre>
2510     * <font style='background-color: #009000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #009000; color: #000000'>&nbsp;@&nbsp;</font>
2511     * <font style='background-color: #009000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #009000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #009000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #009000'>&nbsp;@&nbsp;</font><font style='background-color: #009000; color: #888888'>&nbsp;@&nbsp;</font>
2512     * <font style='background-color: #009000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #009000; color: #ffffff'>&nbsp;@&nbsp;</font>
2513     * </pre>
2514     */
2515    public static final SColor ISLAMIC_GREEN = new SColor(0x009000, "Islamic Green");
2516
2517    /**
2518     * This color constant "Ivory" has RGB code {@code 0xFFFFF0}, red 1.0, green 1.0, blue 0.9411765, alpha 1, hue 0.16666675, saturation 0.058823526, and value 1.0.
2519     * It can be represented as a packed float with the constant {@code -0x1.e1fffep126F}.
2520     * <pre>
2521     * <font style='background-color: #FFFFF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFF0; color: #000000'>&nbsp;@&nbsp;</font>
2522     * <font style='background-color: #FFFFF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFFFF0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFFFF0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFFFF0'>&nbsp;@&nbsp;</font><font style='background-color: #FFFFF0; color: #888888'>&nbsp;@&nbsp;</font>
2523     * <font style='background-color: #FFFFF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFF0; color: #ffffff'>&nbsp;@&nbsp;</font>
2524     * </pre>
2525     */
2526    public static final SColor IVORY = new SColor(0xFFFFF0, "Ivory");
2527
2528    /**
2529     * This color constant "Iwai Brown" has RGB code {@code 0x5E5545}, red 0.36862746, green 0.33333334, blue 0.27058825, alpha 1, hue 0.1066668, saturation 0.26595742, and value 0.36862746.
2530     * It can be represented as a packed float with the constant {@code -0x1.8aaabcp125F}.
2531     * <pre>
2532     * <font style='background-color: #5E5545;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5E5545; color: #000000'>&nbsp;@&nbsp;</font>
2533     * <font style='background-color: #5E5545;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5E5545'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5E5545'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5E5545'>&nbsp;@&nbsp;</font><font style='background-color: #5E5545; color: #888888'>&nbsp;@&nbsp;</font>
2534     * <font style='background-color: #5E5545;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5E5545; color: #ffffff'>&nbsp;@&nbsp;</font>
2535     * </pre>
2536     */
2537    public static final SColor IWAI_BROWN = new SColor(0x5E5545, "Iwai Brown");
2538
2539    /**
2540     * This color constant "Jade" has RGB code {@code 0x00A86B}, red 0.0, green 0.65882355, blue 0.41960785, alpha 1, hue 0.43948412, saturation 1.0, and value 0.65882355.
2541     * It can be represented as a packed float with the constant {@code -0x1.d75p125F}.
2542     * <pre>
2543     * <font style='background-color: #00A86B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00A86B; color: #000000'>&nbsp;@&nbsp;</font>
2544     * <font style='background-color: #00A86B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00A86B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00A86B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00A86B'>&nbsp;@&nbsp;</font><font style='background-color: #00A86B; color: #888888'>&nbsp;@&nbsp;</font>
2545     * <font style='background-color: #00A86B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00A86B; color: #ffffff'>&nbsp;@&nbsp;</font>
2546     * </pre>
2547     */
2548    public static final SColor JADE = new SColor(0x00A86B, "Jade");
2549
2550    /**
2551     * This color constant "Japanese Indigo" has RGB code {@code 0x264348}, red 0.14901961, green 0.2627451, blue 0.28235295, alpha 1, hue 0.5245098, saturation 0.47222224, and value 0.28235295.
2552     * It can be represented as a packed float with the constant {@code -0x1.90864cp125F}.
2553     * <pre>
2554     * <font style='background-color: #264348;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #264348; color: #000000'>&nbsp;@&nbsp;</font>
2555     * <font style='background-color: #264348;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #264348'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #264348'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #264348'>&nbsp;@&nbsp;</font><font style='background-color: #264348; color: #888888'>&nbsp;@&nbsp;</font>
2556     * <font style='background-color: #264348;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #264348; color: #ffffff'>&nbsp;@&nbsp;</font>
2557     * </pre>
2558     */
2559    public static final SColor JAPANESE_INDIGO = new SColor(0x264348, "Japanese Indigo");
2560
2561    /**
2562     * This color constant "Japanese Iris" has RGB code {@code 0x7F5D3B}, red 0.49803922, green 0.3647059, blue 0.23137255, alpha 1, hue 0.08333349, saturation 0.53543305, and value 0.49803922.
2563     * It can be represented as a packed float with the constant {@code -0x1.76bafep125F}.
2564     * <pre>
2565     * <font style='background-color: #7F5D3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F5D3B; color: #000000'>&nbsp;@&nbsp;</font>
2566     * <font style='background-color: #7F5D3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7F5D3B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7F5D3B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7F5D3B'>&nbsp;@&nbsp;</font><font style='background-color: #7F5D3B; color: #888888'>&nbsp;@&nbsp;</font>
2567     * <font style='background-color: #7F5D3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F5D3B; color: #ffffff'>&nbsp;@&nbsp;</font>
2568     * </pre>
2569     */
2570    public static final SColor JAPANESE_IRIS = new SColor(0x7F5D3B, "Japanese Iris");
2571
2572    /**
2573     * This color constant "Japanese Pale Blue" has RGB code {@code 0x8C9C76}, red 0.54901963, green 0.6117647, blue 0.4627451, alpha 1, hue 0.23684216, saturation 0.24358977, and value 0.6117647.
2574     * It can be represented as a packed float with the constant {@code -0x1.ed3918p125F}.
2575     * <pre>
2576     * <font style='background-color: #8C9C76;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C9C76; color: #000000'>&nbsp;@&nbsp;</font>
2577     * <font style='background-color: #8C9C76;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8C9C76'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8C9C76'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8C9C76'>&nbsp;@&nbsp;</font><font style='background-color: #8C9C76; color: #888888'>&nbsp;@&nbsp;</font>
2578     * <font style='background-color: #8C9C76;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C9C76; color: #ffffff'>&nbsp;@&nbsp;</font>
2579     * </pre>
2580     */
2581    public static final SColor JAPANESE_PALE_BLUE = new SColor(0x8C9C76, "Japanese Pale Blue");
2582
2583    /**
2584     * This color constant "Japanese Triandra Grass" has RGB code {@code 0xE2B13C}, red 0.8862745, green 0.69411767, blue 0.23529412, alpha 1, hue 0.11746979, saturation 0.7345133, and value 0.8862745.
2585     * It can be represented as a packed float with the constant {@code -0x1.7963c4p125F}.
2586     * <pre>
2587     * <font style='background-color: #E2B13C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E2B13C; color: #000000'>&nbsp;@&nbsp;</font>
2588     * <font style='background-color: #E2B13C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E2B13C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E2B13C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E2B13C'>&nbsp;@&nbsp;</font><font style='background-color: #E2B13C; color: #888888'>&nbsp;@&nbsp;</font>
2589     * <font style='background-color: #E2B13C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E2B13C; color: #ffffff'>&nbsp;@&nbsp;</font>
2590     * </pre>
2591     */
2592    public static final SColor JAPANESE_TRIANDRA_GRASS = new SColor(0xE2B13C, "Japanese Triandra Grass");
2593
2594    /**
2595     * This color constant "Kelly Green" has RGB code {@code 0x4CBB17}, red 0.29803923, green 0.73333335, blue 0.09019608, alpha 1, hue 0.27947164, saturation 0.87700534, and value 0.73333335.
2596     * It can be represented as a packed float with the constant {@code -0x1.2f7698p125F}.
2597     * <pre>
2598     * <font style='background-color: #4CBB17;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4CBB17; color: #000000'>&nbsp;@&nbsp;</font>
2599     * <font style='background-color: #4CBB17;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4CBB17'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4CBB17'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4CBB17'>&nbsp;@&nbsp;</font><font style='background-color: #4CBB17; color: #888888'>&nbsp;@&nbsp;</font>
2600     * <font style='background-color: #4CBB17;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4CBB17; color: #ffffff'>&nbsp;@&nbsp;</font>
2601     * </pre>
2602     */
2603    public static final SColor KELLY_GREEN = new SColor(0x4CBB17, "Kelly Green");
2604
2605    /**
2606     * This color constant "Khaki" has RGB code {@code 0xC3B091}, red 0.7647059, green 0.6901961, blue 0.5686275, alpha 1, hue 0.10333347, saturation 0.25641024, and value 0.7647059.
2607     * It can be represented as a packed float with the constant {@code -0x1.236186p126F}.
2608     * <pre>
2609     * <font style='background-color: #C3B091;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C3B091; color: #000000'>&nbsp;@&nbsp;</font>
2610     * <font style='background-color: #C3B091;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C3B091'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C3B091'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C3B091'>&nbsp;@&nbsp;</font><font style='background-color: #C3B091; color: #888888'>&nbsp;@&nbsp;</font>
2611     * <font style='background-color: #C3B091;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C3B091; color: #ffffff'>&nbsp;@&nbsp;</font>
2612     * </pre>
2613     */
2614    public static final SColor KHAKI = new SColor(0xC3B091, "Khaki");
2615
2616    /**
2617     * This color constant "Kimono Storage" has RGB code {@code 0x3D4C51}, red 0.23921569, green 0.29803923, blue 0.31764707, alpha 1, hue 0.54166675, saturation 0.2469136, and value 0.31764707.
2618     * It can be represented as a packed float with the constant {@code -0x1.a2987ap125F}.
2619     * <pre>
2620     * <font style='background-color: #3D4C51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D4C51; color: #000000'>&nbsp;@&nbsp;</font>
2621     * <font style='background-color: #3D4C51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3D4C51'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3D4C51'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3D4C51'>&nbsp;@&nbsp;</font><font style='background-color: #3D4C51; color: #888888'>&nbsp;@&nbsp;</font>
2622     * <font style='background-color: #3D4C51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D4C51; color: #ffffff'>&nbsp;@&nbsp;</font>
2623     * </pre>
2624     */
2625    public static final SColor KIMONO_STORAGE = new SColor(0x3D4C51, "Kimono Storage");
2626
2627    /**
2628     * This color constant "Lapis Lazuli" has RGB code {@code 0x1F4788}, red 0.12156863, green 0.2784314, blue 0.53333336, alpha 1, hue 0.60317457, saturation 0.77205884, and value 0.53333336.
2629     * It can be represented as a packed float with the constant {@code -0x1.108e3ep126F}.
2630     * <pre>
2631     * <font style='background-color: #1F4788;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1F4788; color: #000000'>&nbsp;@&nbsp;</font>
2632     * <font style='background-color: #1F4788;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1F4788'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1F4788'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1F4788'>&nbsp;@&nbsp;</font><font style='background-color: #1F4788; color: #888888'>&nbsp;@&nbsp;</font>
2633     * <font style='background-color: #1F4788;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1F4788; color: #ffffff'>&nbsp;@&nbsp;</font>
2634     * </pre>
2635     */
2636    public static final SColor LAPIS_LAZULI = new SColor(0x1F4788, "Lapis Lazuli");
2637
2638    /**
2639     * This color constant "Lavender Floral" has RGB code {@code 0xB57EDC}, red 0.70980394, green 0.49411765, blue 0.8627451, alpha 1, hue 0.7641845, saturation 0.42727274, and value 0.8627451.
2640     * It can be represented as a packed float with the constant {@code -0x1.b8fd6ap126F}.
2641     * <pre>
2642     * <font style='background-color: #B57EDC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B57EDC; color: #000000'>&nbsp;@&nbsp;</font>
2643     * <font style='background-color: #B57EDC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B57EDC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B57EDC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B57EDC'>&nbsp;@&nbsp;</font><font style='background-color: #B57EDC; color: #888888'>&nbsp;@&nbsp;</font>
2644     * <font style='background-color: #B57EDC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B57EDC; color: #ffffff'>&nbsp;@&nbsp;</font>
2645     * </pre>
2646     */
2647    public static final SColor LAVENDER_FLORAL = new SColor(0xB57EDC, "Lavender Floral");
2648
2649    /**
2650     * This color constant "Lavender" has RGB code {@code 0xE6E6FA}, red 0.9019608, green 0.9019608, blue 0.98039216, alpha 1, hue 0.66666675, saturation 0.08, and value 0.98039216.
2651     * It can be represented as a packed float with the constant {@code -0x1.f5cdccp126F}.
2652     * <pre>
2653     * <font style='background-color: #E6E6FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E6E6FA; color: #000000'>&nbsp;@&nbsp;</font>
2654     * <font style='background-color: #E6E6FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E6E6FA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E6E6FA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E6E6FA'>&nbsp;@&nbsp;</font><font style='background-color: #E6E6FA; color: #888888'>&nbsp;@&nbsp;</font>
2655     * <font style='background-color: #E6E6FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E6E6FA; color: #ffffff'>&nbsp;@&nbsp;</font>
2656     * </pre>
2657     */
2658    public static final SColor LAVENDER = new SColor(0xE6E6FA, "Lavender");
2659
2660    /**
2661     * This color constant "Lavender Blue" has RGB code {@code 0xCCCCFF}, red 0.8, green 0.8, blue 1.0, alpha 1, hue 0.66666675, saturation 0.19999999, and value 1.0.
2662     * It can be represented as a packed float with the constant {@code -0x1.ff9998p126F}.
2663     * <pre>
2664     * <font style='background-color: #CCCCFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CCCCFF; color: #000000'>&nbsp;@&nbsp;</font>
2665     * <font style='background-color: #CCCCFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CCCCFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CCCCFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CCCCFF'>&nbsp;@&nbsp;</font><font style='background-color: #CCCCFF; color: #888888'>&nbsp;@&nbsp;</font>
2666     * <font style='background-color: #CCCCFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CCCCFF; color: #ffffff'>&nbsp;@&nbsp;</font>
2667     * </pre>
2668     */
2669    public static final SColor LAVENDER_BLUE = new SColor(0xCCCCFF, "Lavender Blue");
2670
2671    /**
2672     * This color constant "Lavender Blush" has RGB code {@code 0xFFF0F5}, red 1.0, green 0.9411765, blue 0.9607843, alpha 1, hue 0.9444445, saturation 0.058823526, and value 1.0.
2673     * It can be represented as a packed float with the constant {@code -0x1.ebe1fep126F}.
2674     * <pre>
2675     * <font style='background-color: #FFF0F5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFF0F5; color: #000000'>&nbsp;@&nbsp;</font>
2676     * <font style='background-color: #FFF0F5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFF0F5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFF0F5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFF0F5'>&nbsp;@&nbsp;</font><font style='background-color: #FFF0F5; color: #888888'>&nbsp;@&nbsp;</font>
2677     * <font style='background-color: #FFF0F5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFF0F5; color: #ffffff'>&nbsp;@&nbsp;</font>
2678     * </pre>
2679     */
2680    public static final SColor LAVENDER_BLUSH = new SColor(0xFFF0F5, "Lavender Blush");
2681
2682    /**
2683     * This color constant "Lavender Gray" has RGB code {@code 0xC4C3D0}, red 0.76862746, green 0.7647059, blue 0.8156863, alpha 1, hue 0.67948735, saturation 0.062499996, and value 0.8156863.
2684     * It can be represented as a packed float with the constant {@code -0x1.a18788p126F}.
2685     * <pre>
2686     * <font style='background-color: #C4C3D0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C4C3D0; color: #000000'>&nbsp;@&nbsp;</font>
2687     * <font style='background-color: #C4C3D0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C4C3D0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C4C3D0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C4C3D0'>&nbsp;@&nbsp;</font><font style='background-color: #C4C3D0; color: #888888'>&nbsp;@&nbsp;</font>
2688     * <font style='background-color: #C4C3D0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C4C3D0; color: #ffffff'>&nbsp;@&nbsp;</font>
2689     * </pre>
2690     */
2691    public static final SColor LAVENDER_GRAY = new SColor(0xC4C3D0, "Lavender Gray");
2692
2693    /**
2694     * This color constant "Lavender Magenta" has RGB code {@code 0xEE82EE}, red 0.93333334, green 0.50980395, blue 0.93333334, alpha 1, hue 0.8333333, saturation 0.4537815, and value 0.93333334.
2695     * It can be represented as a packed float with the constant {@code -0x1.dd05dcp126F}.
2696     * <pre>
2697     * <font style='background-color: #EE82EE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EE82EE; color: #000000'>&nbsp;@&nbsp;</font>
2698     * <font style='background-color: #EE82EE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EE82EE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EE82EE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EE82EE'>&nbsp;@&nbsp;</font><font style='background-color: #EE82EE; color: #888888'>&nbsp;@&nbsp;</font>
2699     * <font style='background-color: #EE82EE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EE82EE; color: #ffffff'>&nbsp;@&nbsp;</font>
2700     * </pre>
2701     */
2702    public static final SColor LAVENDER_MAGENTA = new SColor(0xEE82EE, "Lavender Magenta");
2703
2704    /**
2705     * This color constant "Lavender Pink" has RGB code {@code 0xFBAED2}, red 0.9843137, green 0.68235296, blue 0.8235294, alpha 1, hue 0.92207795, saturation 0.3067729, and value 0.9843137.
2706     * It can be represented as a packed float with the constant {@code -0x1.a55df6p126F}.
2707     * <pre>
2708     * <font style='background-color: #FBAED2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBAED2; color: #000000'>&nbsp;@&nbsp;</font>
2709     * <font style='background-color: #FBAED2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FBAED2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FBAED2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FBAED2'>&nbsp;@&nbsp;</font><font style='background-color: #FBAED2; color: #888888'>&nbsp;@&nbsp;</font>
2710     * <font style='background-color: #FBAED2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBAED2; color: #ffffff'>&nbsp;@&nbsp;</font>
2711     * </pre>
2712     */
2713    public static final SColor LAVENDER_PINK = new SColor(0xFBAED2, "Lavender Pink");
2714
2715    /**
2716     * This color constant "Lavender Purple" has RGB code {@code 0x967BB6}, red 0.5882353, green 0.48235294, blue 0.7137255, alpha 1, hue 0.74293804, saturation 0.32417583, and value 0.7137255.
2717     * It can be represented as a packed float with the constant {@code -0x1.6cf72cp126F}.
2718     * <pre>
2719     * <font style='background-color: #967BB6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #967BB6; color: #000000'>&nbsp;@&nbsp;</font>
2720     * <font style='background-color: #967BB6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #967BB6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #967BB6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #967BB6'>&nbsp;@&nbsp;</font><font style='background-color: #967BB6; color: #888888'>&nbsp;@&nbsp;</font>
2721     * <font style='background-color: #967BB6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #967BB6; color: #ffffff'>&nbsp;@&nbsp;</font>
2722     * </pre>
2723     */
2724    public static final SColor LAVENDER_PURPLE = new SColor(0x967BB6, "Lavender Purple");
2725
2726    /**
2727     * This color constant "Lavender Rose" has RGB code {@code 0xFBA0E3}, red 0.9843137, green 0.627451, blue 0.8901961, alpha 1, hue 0.87728935, saturation 0.36254978, and value 0.9843137.
2728     * It can be represented as a packed float with the constant {@code -0x1.c741f6p126F}.
2729     * <pre>
2730     * <font style='background-color: #FBA0E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBA0E3; color: #000000'>&nbsp;@&nbsp;</font>
2731     * <font style='background-color: #FBA0E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FBA0E3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FBA0E3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FBA0E3'>&nbsp;@&nbsp;</font><font style='background-color: #FBA0E3; color: #888888'>&nbsp;@&nbsp;</font>
2732     * <font style='background-color: #FBA0E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBA0E3; color: #ffffff'>&nbsp;@&nbsp;</font>
2733     * </pre>
2734     */
2735    public static final SColor LAVENDER_ROSE = new SColor(0xFBA0E3, "Lavender Rose");
2736
2737    /**
2738     * This color constant "Lawn Green" has RGB code {@code 0x7CFC00}, red 0.4862745, green 0.9882353, blue 0.0, alpha 1, hue 0.25132275, saturation 1.0, and value 0.9882353.
2739     * It can be represented as a packed float with the constant {@code -0x1.01f8f8p125F}.
2740     * <pre>
2741     * <font style='background-color: #7CFC00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7CFC00; color: #000000'>&nbsp;@&nbsp;</font>
2742     * <font style='background-color: #7CFC00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7CFC00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7CFC00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7CFC00'>&nbsp;@&nbsp;</font><font style='background-color: #7CFC00; color: #888888'>&nbsp;@&nbsp;</font>
2743     * <font style='background-color: #7CFC00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7CFC00; color: #ffffff'>&nbsp;@&nbsp;</font>
2744     * </pre>
2745     */
2746    public static final SColor LAWN_GREEN = new SColor(0x7CFC00, "Lawn Green");
2747
2748    /**
2749     * This color constant "Legal Dye" has RGB code {@code 0x2E211B}, red 0.18039216, green 0.12941177, blue 0.105882354, alpha 1, hue 0.052631617, saturation 0.4130435, and value 0.18039216.
2750     * It can be represented as a packed float with the constant {@code -0x1.36425cp125F}.
2751     * <pre>
2752     * <font style='background-color: #2E211B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2E211B; color: #000000'>&nbsp;@&nbsp;</font>
2753     * <font style='background-color: #2E211B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2E211B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2E211B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2E211B'>&nbsp;@&nbsp;</font><font style='background-color: #2E211B; color: #888888'>&nbsp;@&nbsp;</font>
2754     * <font style='background-color: #2E211B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2E211B; color: #ffffff'>&nbsp;@&nbsp;</font>
2755     * </pre>
2756     */
2757    public static final SColor LEGAL_DYE = new SColor(0x2E211B, "Legal Dye");
2758
2759    /**
2760     * This color constant "Lemon" has RGB code {@code 0xFDE910}, red 0.99215686, green 0.9137255, blue 0.0627451, alpha 1, hue 0.15260208, saturation 0.9367589, and value 0.99215686.
2761     * It can be represented as a packed float with the constant {@code -0x1.21d3fap125F}.
2762     * <pre>
2763     * <font style='background-color: #FDE910;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FDE910; color: #000000'>&nbsp;@&nbsp;</font>
2764     * <font style='background-color: #FDE910;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FDE910'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FDE910'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FDE910'>&nbsp;@&nbsp;</font><font style='background-color: #FDE910; color: #888888'>&nbsp;@&nbsp;</font>
2765     * <font style='background-color: #FDE910;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FDE910; color: #ffffff'>&nbsp;@&nbsp;</font>
2766     * </pre>
2767     */
2768    public static final SColor LEMON = new SColor(0xFDE910, "Lemon");
2769
2770    /**
2771     * This color constant "Lemon Chiffon" has RGB code {@code 0xFFFACD}, red 1.0, green 0.98039216, blue 0.8039216, alpha 1, hue 0.1500001, saturation 0.19607842, and value 1.0.
2772     * It can be represented as a packed float with the constant {@code -0x1.9bf5fep126F}.
2773     * <pre>
2774     * <font style='background-color: #FFFACD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFACD; color: #000000'>&nbsp;@&nbsp;</font>
2775     * <font style='background-color: #FFFACD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFFACD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFFACD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFFACD'>&nbsp;@&nbsp;</font><font style='background-color: #FFFACD; color: #888888'>&nbsp;@&nbsp;</font>
2776     * <font style='background-color: #FFFACD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFACD; color: #ffffff'>&nbsp;@&nbsp;</font>
2777     * </pre>
2778     */
2779    public static final SColor LEMON_CHIFFON = new SColor(0xFFFACD, "Lemon Chiffon");
2780
2781    /**
2782     * This color constant "Light Blue" has RGB code {@code 0xADD8E6}, red 0.6784314, green 0.84705883, blue 0.9019608, alpha 1, hue 0.54093575, saturation 0.24782607, and value 0.9019608.
2783     * It can be represented as a packed float with the constant {@code -0x1.cdb15ap126F}.
2784     * <pre>
2785     * <font style='background-color: #ADD8E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ADD8E6; color: #000000'>&nbsp;@&nbsp;</font>
2786     * <font style='background-color: #ADD8E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ADD8E6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ADD8E6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ADD8E6'>&nbsp;@&nbsp;</font><font style='background-color: #ADD8E6; color: #888888'>&nbsp;@&nbsp;</font>
2787     * <font style='background-color: #ADD8E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ADD8E6; color: #ffffff'>&nbsp;@&nbsp;</font>
2788     * </pre>
2789     */
2790    public static final SColor LIGHT_BLUE = new SColor(0xADD8E6, "Light Blue");
2791
2792    /**
2793     * This color constant "Light Blue Dye" has RGB code {@code 0x48929B}, red 0.28235295, green 0.57254905, blue 0.60784316, alpha 1, hue 0.5180725, saturation 0.5354839, and value 0.60784316.
2794     * It can be represented as a packed float with the constant {@code -0x1.37249p126F}.
2795     * <pre>
2796     * <font style='background-color: #48929B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #48929B; color: #000000'>&nbsp;@&nbsp;</font>
2797     * <font style='background-color: #48929B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #48929B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #48929B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #48929B'>&nbsp;@&nbsp;</font><font style='background-color: #48929B; color: #888888'>&nbsp;@&nbsp;</font>
2798     * <font style='background-color: #48929B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #48929B; color: #ffffff'>&nbsp;@&nbsp;</font>
2799     * </pre>
2800     */
2801    public static final SColor LIGHT_BLUE_DYE = new SColor(0x48929B, "Light Blue Dye");
2802
2803    /**
2804     * This color constant "Light Blue Flower" has RGB code {@code 0x1D697C}, red 0.11372549, green 0.4117647, blue 0.4862745, alpha 1, hue 0.5333334, saturation 0.766129, and value 0.4862745.
2805     * It can be represented as a packed float with the constant {@code -0x1.f8d23ap125F}.
2806     * <pre>
2807     * <font style='background-color: #1D697C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1D697C; color: #000000'>&nbsp;@&nbsp;</font>
2808     * <font style='background-color: #1D697C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1D697C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1D697C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1D697C'>&nbsp;@&nbsp;</font><font style='background-color: #1D697C; color: #888888'>&nbsp;@&nbsp;</font>
2809     * <font style='background-color: #1D697C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1D697C; color: #ffffff'>&nbsp;@&nbsp;</font>
2810     * </pre>
2811     */
2812    public static final SColor LIGHT_BLUE_FLOWER = new SColor(0x1D697C, "Light Blue Flower");
2813
2814    /**
2815     * This color constant "Light Blue Silk" has RGB code {@code 0x044F67}, red 0.015686275, green 0.30980393, blue 0.40392157, alpha 1, hue 0.5404041, saturation 0.9611651, and value 0.40392157.
2816     * It can be represented as a packed float with the constant {@code -0x1.ce9e08p125F}.
2817     * <pre>
2818     * <font style='background-color: #044F67;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #044F67; color: #000000'>&nbsp;@&nbsp;</font>
2819     * <font style='background-color: #044F67;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #044F67'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #044F67'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #044F67'>&nbsp;@&nbsp;</font><font style='background-color: #044F67; color: #888888'>&nbsp;@&nbsp;</font>
2820     * <font style='background-color: #044F67;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #044F67; color: #ffffff'>&nbsp;@&nbsp;</font>
2821     * </pre>
2822     */
2823    public static final SColor LIGHT_BLUE_SILK = new SColor(0x044F67, "Light Blue Silk");
2824
2825    /**
2826     * This color constant "Light Gray" has RGB code {@code 0xC0C0C0}, red 0.7529412, green 0.7529412, blue 0.7529412, alpha 1, hue 0.0, saturation 0.0, and value 0.7529412.
2827     * It can be represented as a packed float with the constant {@code -0x1.81818p126F}.
2828     * <pre>
2829     * <font style='background-color: #C0C0C0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C0C0C0; color: #000000'>&nbsp;@&nbsp;</font>
2830     * <font style='background-color: #C0C0C0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C0C0C0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C0C0C0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C0C0C0'>&nbsp;@&nbsp;</font><font style='background-color: #C0C0C0; color: #888888'>&nbsp;@&nbsp;</font>
2831     * <font style='background-color: #C0C0C0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C0C0C0; color: #ffffff'>&nbsp;@&nbsp;</font>
2832     * </pre>
2833     */
2834    public static final SColor LIGHT_GRAY = new SColor(0xC0C0C0, "Light Gray");
2835
2836    /**
2837     * This color constant "Light Khaki" has RGB code {@code 0xF0E68C}, red 0.9411765, green 0.9019608, blue 0.54901963, alpha 1, hue 0.1500001, saturation 0.41666663, and value 0.9411765.
2838     * It can be represented as a packed float with the constant {@code -0x1.19cdep126F}.
2839     * <pre>
2840     * <font style='background-color: #F0E68C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F0E68C; color: #000000'>&nbsp;@&nbsp;</font>
2841     * <font style='background-color: #F0E68C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F0E68C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F0E68C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F0E68C'>&nbsp;@&nbsp;</font><font style='background-color: #F0E68C; color: #888888'>&nbsp;@&nbsp;</font>
2842     * <font style='background-color: #F0E68C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F0E68C; color: #ffffff'>&nbsp;@&nbsp;</font>
2843     * </pre>
2844     */
2845    public static final SColor LIGHT_KHAKI = new SColor(0xF0E68C, "Light Khaki");
2846
2847    /**
2848     * This color constant "Light Lime" has RGB code {@code 0xBFFF00}, red 0.7490196, green 1.0, blue 0.0, alpha 1, hue 0.20849681, saturation 1.0, and value 1.0.
2849     * It can be represented as a packed float with the constant {@code -0x1.01ff7ep125F}.
2850     * <pre>
2851     * <font style='background-color: #BFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BFFF00; color: #000000'>&nbsp;@&nbsp;</font>
2852     * <font style='background-color: #BFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #BFFF00; color: #888888'>&nbsp;@&nbsp;</font>
2853     * <font style='background-color: #BFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BFFF00; color: #ffffff'>&nbsp;@&nbsp;</font>
2854     * </pre>
2855     */
2856    public static final SColor LIGHT_LIME = new SColor(0xBFFF00, "Light Lime");
2857
2858    /**
2859     * This color constant "Light Maroon" has RGB code {@code 0xB03060}, red 0.6901961, green 0.1882353, blue 0.3764706, alpha 1, hue 0.9375, saturation 0.72727275, and value 0.6901961.
2860     * It can be represented as a packed float with the constant {@code -0x1.c0616p125F}.
2861     * <pre>
2862     * <font style='background-color: #B03060;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B03060; color: #000000'>&nbsp;@&nbsp;</font>
2863     * <font style='background-color: #B03060;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B03060'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B03060'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B03060'>&nbsp;@&nbsp;</font><font style='background-color: #B03060; color: #888888'>&nbsp;@&nbsp;</font>
2864     * <font style='background-color: #B03060;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B03060; color: #ffffff'>&nbsp;@&nbsp;</font>
2865     * </pre>
2866     */
2867    public static final SColor LIGHT_MAROON = new SColor(0xB03060, "Light Maroon");
2868
2869    /**
2870     * This color constant "Light Pink" has RGB code {@code 0xFFB6C1}, red 1.0, green 0.7137255, blue 0.75686276, alpha 1, hue 0.97488576, saturation 0.2862745, and value 1.0.
2871     * It can be represented as a packed float with the constant {@code -0x1.836dfep126F}.
2872     * <pre>
2873     * <font style='background-color: #FFB6C1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB6C1; color: #000000'>&nbsp;@&nbsp;</font>
2874     * <font style='background-color: #FFB6C1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFB6C1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFB6C1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFB6C1'>&nbsp;@&nbsp;</font><font style='background-color: #FFB6C1; color: #888888'>&nbsp;@&nbsp;</font>
2875     * <font style='background-color: #FFB6C1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB6C1; color: #ffffff'>&nbsp;@&nbsp;</font>
2876     * </pre>
2877     */
2878    public static final SColor LIGHT_PINK = new SColor(0xFFB6C1, "Light Pink");
2879
2880    /**
2881     * This color constant "Light Violet" has RGB code {@code 0xEE82EE}, red 0.93333334, green 0.50980395, blue 0.93333334, alpha 1, hue 0.8333333, saturation 0.4537815, and value 0.93333334.
2882     * It can be represented as a packed float with the constant {@code -0x1.dd05dcp126F}.
2883     * <pre>
2884     * <font style='background-color: #EE82EE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EE82EE; color: #000000'>&nbsp;@&nbsp;</font>
2885     * <font style='background-color: #EE82EE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EE82EE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EE82EE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EE82EE'>&nbsp;@&nbsp;</font><font style='background-color: #EE82EE; color: #888888'>&nbsp;@&nbsp;</font>
2886     * <font style='background-color: #EE82EE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EE82EE; color: #ffffff'>&nbsp;@&nbsp;</font>
2887     * </pre>
2888     */
2889    public static final SColor LIGHT_VIOLET = new SColor(0xEE82EE, "Light Violet");
2890
2891    /**
2892     * This color constant "Light Yellow Dye" has RGB code {@code 0xF7BB7D}, red 0.96862745, green 0.73333335, blue 0.49019608, alpha 1, hue 0.08469963, saturation 0.49392712, and value 0.96862745.
2893     * It can be represented as a packed float with the constant {@code -0x1.fb77eep125F}.
2894     * <pre>
2895     * <font style='background-color: #F7BB7D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F7BB7D; color: #000000'>&nbsp;@&nbsp;</font>
2896     * <font style='background-color: #F7BB7D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F7BB7D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F7BB7D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F7BB7D'>&nbsp;@&nbsp;</font><font style='background-color: #F7BB7D; color: #888888'>&nbsp;@&nbsp;</font>
2897     * <font style='background-color: #F7BB7D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F7BB7D; color: #ffffff'>&nbsp;@&nbsp;</font>
2898     * </pre>
2899     */
2900    public static final SColor LIGHT_YELLOW_DYE = new SColor(0xF7BB7D, "Light Yellow Dye");
2901
2902    /**
2903     * This color constant "Lilac" has RGB code {@code 0xC8A2C8}, red 0.78431374, green 0.63529414, blue 0.78431374, alpha 1, hue 0.8333333, saturation 0.18999998, and value 0.78431374.
2904     * It can be represented as a packed float with the constant {@code -0x1.91459p126F}.
2905     * <pre>
2906     * <font style='background-color: #C8A2C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C8A2C8; color: #000000'>&nbsp;@&nbsp;</font>
2907     * <font style='background-color: #C8A2C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C8A2C8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C8A2C8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C8A2C8'>&nbsp;@&nbsp;</font><font style='background-color: #C8A2C8; color: #888888'>&nbsp;@&nbsp;</font>
2908     * <font style='background-color: #C8A2C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C8A2C8; color: #ffffff'>&nbsp;@&nbsp;</font>
2909     * </pre>
2910     */
2911    public static final SColor LILAC = new SColor(0xC8A2C8, "Lilac");
2912
2913    /**
2914     * This color constant "Lime" has RGB code {@code 0x00FF00}, red 0.0, green 1.0, blue 0.0, alpha 1, hue 0.33333325, saturation 1.0, and value 1.0.
2915     * It can be represented as a packed float with the constant {@code -0x1.01fep125F}.
2916     * <pre>
2917     * <font style='background-color: #00FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FF00; color: #000000'>&nbsp;@&nbsp;</font>
2918     * <font style='background-color: #00FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00FF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00FF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00FF00'>&nbsp;@&nbsp;</font><font style='background-color: #00FF00; color: #888888'>&nbsp;@&nbsp;</font>
2919     * <font style='background-color: #00FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FF00; color: #ffffff'>&nbsp;@&nbsp;</font>
2920     * </pre>
2921     */
2922    public static final SColor LIME = new SColor(0x00FF00, "Lime");
2923
2924    /**
2925     * This color constant "Lime Green" has RGB code {@code 0x32CD32}, red 0.19607843, green 0.8039216, blue 0.19607843, alpha 1, hue 0.33333337, saturation 0.75609756, and value 0.8039216.
2926     * It can be represented as a packed float with the constant {@code -0x1.659a64p125F}.
2927     * <pre>
2928     * <font style='background-color: #32CD32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #32CD32; color: #000000'>&nbsp;@&nbsp;</font>
2929     * <font style='background-color: #32CD32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #32CD32'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #32CD32'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #32CD32'>&nbsp;@&nbsp;</font><font style='background-color: #32CD32; color: #888888'>&nbsp;@&nbsp;</font>
2930     * <font style='background-color: #32CD32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #32CD32; color: #ffffff'>&nbsp;@&nbsp;</font>
2931     * </pre>
2932     */
2933    public static final SColor LIME_GREEN = new SColor(0x32CD32, "Lime Green");
2934
2935    /**
2936     * This color constant "Linen" has RGB code {@code 0xFAF0E6}, red 0.98039216, green 0.9411765, blue 0.9019608, alpha 1, hue 0.08333349, saturation 0.08, and value 0.98039216.
2937     * It can be represented as a packed float with the constant {@code -0x1.cde1f4p126F}.
2938     * <pre>
2939     * <font style='background-color: #FAF0E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FAF0E6; color: #000000'>&nbsp;@&nbsp;</font>
2940     * <font style='background-color: #FAF0E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FAF0E6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FAF0E6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FAF0E6'>&nbsp;@&nbsp;</font><font style='background-color: #FAF0E6; color: #888888'>&nbsp;@&nbsp;</font>
2941     * <font style='background-color: #FAF0E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FAF0E6; color: #ffffff'>&nbsp;@&nbsp;</font>
2942     * </pre>
2943     */
2944    public static final SColor LINEN = new SColor(0xFAF0E6, "Linen");
2945
2946    /**
2947     * This color constant "Long Spring" has RGB code {@code 0xB95754}, red 0.7254902, green 0.34117648, blue 0.32941177, alpha 1, hue 0.0049505234, saturation 0.54594594, and value 0.7254902.
2948     * It can be represented as a packed float with the constant {@code -0x1.a8af72p125F}.
2949     * <pre>
2950     * <font style='background-color: #B95754;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B95754; color: #000000'>&nbsp;@&nbsp;</font>
2951     * <font style='background-color: #B95754;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B95754'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B95754'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B95754'>&nbsp;@&nbsp;</font><font style='background-color: #B95754; color: #888888'>&nbsp;@&nbsp;</font>
2952     * <font style='background-color: #B95754;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B95754; color: #ffffff'>&nbsp;@&nbsp;</font>
2953     * </pre>
2954     */
2955    public static final SColor LONG_SPRING = new SColor(0xB95754, "Long Spring");
2956
2957    /**
2958     * This color constant "Loquat Brown" has RGB code {@code 0xAB6134}, red 0.67058825, green 0.38039216, blue 0.20392157, alpha 1, hue 0.063025236, saturation 0.69590646, and value 0.67058825.
2959     * It can be represented as a packed float with the constant {@code -0x1.68c356p125F}.
2960     * <pre>
2961     * <font style='background-color: #AB6134;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB6134; color: #000000'>&nbsp;@&nbsp;</font>
2962     * <font style='background-color: #AB6134;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AB6134'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AB6134'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AB6134'>&nbsp;@&nbsp;</font><font style='background-color: #AB6134; color: #888888'>&nbsp;@&nbsp;</font>
2963     * <font style='background-color: #AB6134;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB6134; color: #ffffff'>&nbsp;@&nbsp;</font>
2964     * </pre>
2965     */
2966    public static final SColor LOQUAT_BROWN = new SColor(0xAB6134, "Loquat Brown");
2967
2968    /**
2969     * This color constant "Lye" has RGB code {@code 0x7F6B5D}, red 0.49803922, green 0.41960785, blue 0.3647059, alpha 1, hue 0.068627596, saturation 0.26771653, and value 0.49803922.
2970     * It can be represented as a packed float with the constant {@code -0x1.bad6fep125F}.
2971     * <pre>
2972     * <font style='background-color: #7F6B5D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F6B5D; color: #000000'>&nbsp;@&nbsp;</font>
2973     * <font style='background-color: #7F6B5D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7F6B5D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7F6B5D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7F6B5D'>&nbsp;@&nbsp;</font><font style='background-color: #7F6B5D; color: #888888'>&nbsp;@&nbsp;</font>
2974     * <font style='background-color: #7F6B5D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F6B5D; color: #ffffff'>&nbsp;@&nbsp;</font>
2975     * </pre>
2976     */
2977    public static final SColor LYE = new SColor(0x7F6B5D, "Lye");
2978
2979    /**
2980     * This color constant "Magenta Dye" has RGB code {@code 0xCA1F7B}, red 0.7921569, green 0.12156863, blue 0.48235294, alpha 1, hue 0.91033137, saturation 0.84653467, and value 0.7921569.
2981     * It can be represented as a packed float with the constant {@code -0x1.f63f94p125F}.
2982     * <pre>
2983     * <font style='background-color: #CA1F7B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CA1F7B; color: #000000'>&nbsp;@&nbsp;</font>
2984     * <font style='background-color: #CA1F7B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CA1F7B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CA1F7B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CA1F7B'>&nbsp;@&nbsp;</font><font style='background-color: #CA1F7B; color: #888888'>&nbsp;@&nbsp;</font>
2985     * <font style='background-color: #CA1F7B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CA1F7B; color: #ffffff'>&nbsp;@&nbsp;</font>
2986     * </pre>
2987     */
2988    public static final SColor MAGENTA_DYE = new SColor(0xCA1F7B, "Magenta Dye");
2989
2990    /**
2991     * This color constant "Magic Mint" has RGB code {@code 0xAAF0D1}, red 0.6666667, green 0.9411765, blue 0.81960785, alpha 1, hue 0.4261905, saturation 0.29166666, and value 0.9411765.
2992     * It can be represented as a packed float with the constant {@code -0x1.a3e154p126F}.
2993     * <pre>
2994     * <font style='background-color: #AAF0D1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AAF0D1; color: #000000'>&nbsp;@&nbsp;</font>
2995     * <font style='background-color: #AAF0D1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AAF0D1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AAF0D1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AAF0D1'>&nbsp;@&nbsp;</font><font style='background-color: #AAF0D1; color: #888888'>&nbsp;@&nbsp;</font>
2996     * <font style='background-color: #AAF0D1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AAF0D1; color: #ffffff'>&nbsp;@&nbsp;</font>
2997     * </pre>
2998     */
2999    public static final SColor MAGIC_MINT = new SColor(0xAAF0D1, "Magic Mint");
3000
3001    /**
3002     * This color constant "Magnolia" has RGB code {@code 0xF8F4FF}, red 0.972549, green 0.95686275, blue 1.0, alpha 1, hue 0.72727287, saturation 0.043137252, and value 1.0.
3003     * It can be represented as a packed float with the constant {@code -0x1.ffe9fp126F}.
3004     * <pre>
3005     * <font style='background-color: #F8F4FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F8F4FF; color: #000000'>&nbsp;@&nbsp;</font>
3006     * <font style='background-color: #F8F4FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F8F4FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F8F4FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F8F4FF'>&nbsp;@&nbsp;</font><font style='background-color: #F8F4FF; color: #888888'>&nbsp;@&nbsp;</font>
3007     * <font style='background-color: #F8F4FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F8F4FF; color: #ffffff'>&nbsp;@&nbsp;</font>
3008     * </pre>
3009     */
3010    public static final SColor MAGNOLIA = new SColor(0xF8F4FF, "Magnolia");
3011
3012    /**
3013     * This color constant "Malachite" has RGB code {@code 0x0BDA51}, red 0.043137256, green 0.85490197, blue 0.31764707, alpha 1, hue 0.38969398, saturation 0.9495413, and value 0.85490197.
3014     * It can be represented as a packed float with the constant {@code -0x1.a3b416p125F}.
3015     * <pre>
3016     * <font style='background-color: #0BDA51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0BDA51; color: #000000'>&nbsp;@&nbsp;</font>
3017     * <font style='background-color: #0BDA51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0BDA51'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0BDA51'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0BDA51'>&nbsp;@&nbsp;</font><font style='background-color: #0BDA51; color: #888888'>&nbsp;@&nbsp;</font>
3018     * <font style='background-color: #0BDA51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0BDA51; color: #ffffff'>&nbsp;@&nbsp;</font>
3019     * </pre>
3020     */
3021    public static final SColor MALACHITE = new SColor(0x0BDA51, "Malachite");
3022
3023    /**
3024     * This color constant "Maroon" has RGB code {@code 0x800000}, red 0.5019608, green 0.0, blue 0.0, alpha 1, hue 0.0, saturation 1.0, and value 0.5019608.
3025     * It can be represented as a packed float with the constant {@code -0x1.0001p125F}.
3026     * <pre>
3027     * <font style='background-color: #800000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #800000; color: #000000'>&nbsp;@&nbsp;</font>
3028     * <font style='background-color: #800000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #800000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #800000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #800000'>&nbsp;@&nbsp;</font><font style='background-color: #800000; color: #888888'>&nbsp;@&nbsp;</font>
3029     * <font style='background-color: #800000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #800000; color: #ffffff'>&nbsp;@&nbsp;</font>
3030     * </pre>
3031     */
3032    public static final SColor MAROON = new SColor(0x800000, "Maroon");
3033
3034    /**
3035     * This color constant "Magenta" has RGB code {@code 0xFF00FF}, red 1.0, green 0.0, blue 1.0, alpha 1, hue 0.8333333, saturation 1.0, and value 1.0.
3036     * It can be represented as a packed float with the constant {@code -0x1.fe01fep126F}.
3037     * <pre>
3038     * <font style='background-color: #FF00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF00FF; color: #000000'>&nbsp;@&nbsp;</font>
3039     * <font style='background-color: #FF00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF00FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF00FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF00FF'>&nbsp;@&nbsp;</font><font style='background-color: #FF00FF; color: #888888'>&nbsp;@&nbsp;</font>
3040     * <font style='background-color: #FF00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF00FF; color: #ffffff'>&nbsp;@&nbsp;</font>
3041     * </pre>
3042     */
3043    public static final SColor MAGENTA = new SColor(0xFF00FF, "Magenta");
3044
3045    /**
3046     * This color constant "Maya Blue" has RGB code {@code 0x73C2FB}, red 0.4509804, green 0.7607843, blue 0.9843137, alpha 1, hue 0.56985307, saturation 0.5418326, and value 0.9843137.
3047     * It can be represented as a packed float with the constant {@code -0x1.f784e6p126F}.
3048     * <pre>
3049     * <font style='background-color: #73C2FB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73C2FB; color: #000000'>&nbsp;@&nbsp;</font>
3050     * <font style='background-color: #73C2FB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #73C2FB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #73C2FB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #73C2FB'>&nbsp;@&nbsp;</font><font style='background-color: #73C2FB; color: #888888'>&nbsp;@&nbsp;</font>
3051     * <font style='background-color: #73C2FB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73C2FB; color: #ffffff'>&nbsp;@&nbsp;</font>
3052     * </pre>
3053     */
3054    public static final SColor MAYA_BLUE = new SColor(0x73C2FB, "Maya Blue");
3055
3056    /**
3057     * This color constant "Mauve" has RGB code {@code 0xE0B0FF}, red 0.8784314, green 0.6901961, blue 1.0, alpha 1, hue 0.76793265, saturation 0.3098039, and value 1.0.
3058     * It can be represented as a packed float with the constant {@code -0x1.ff61cp126F}.
3059     * <pre>
3060     * <font style='background-color: #E0B0FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E0B0FF; color: #000000'>&nbsp;@&nbsp;</font>
3061     * <font style='background-color: #E0B0FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E0B0FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E0B0FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E0B0FF'>&nbsp;@&nbsp;</font><font style='background-color: #E0B0FF; color: #888888'>&nbsp;@&nbsp;</font>
3062     * <font style='background-color: #E0B0FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E0B0FF; color: #ffffff'>&nbsp;@&nbsp;</font>
3063     * </pre>
3064     */
3065    public static final SColor MAUVE = new SColor(0xE0B0FF, "Mauve");
3066
3067    /**
3068     * This color constant "Mauve Taupe" has RGB code {@code 0x915F6D}, red 0.5686275, green 0.37254903, blue 0.42745098, alpha 1, hue 0.9533334, saturation 0.3448276, and value 0.5686275.
3069     * It can be represented as a packed float with the constant {@code -0x1.dabf22p125F}.
3070     * <pre>
3071     * <font style='background-color: #915F6D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #915F6D; color: #000000'>&nbsp;@&nbsp;</font>
3072     * <font style='background-color: #915F6D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #915F6D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #915F6D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #915F6D'>&nbsp;@&nbsp;</font><font style='background-color: #915F6D; color: #888888'>&nbsp;@&nbsp;</font>
3073     * <font style='background-color: #915F6D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #915F6D; color: #ffffff'>&nbsp;@&nbsp;</font>
3074     * </pre>
3075     */
3076    public static final SColor MAUVE_TAUPE = new SColor(0x915F6D, "Mauve Taupe");
3077
3078    /**
3079     * This color constant "Meat" has RGB code {@code 0xF9906F}, red 0.9764706, green 0.5647059, blue 0.43529412, alpha 1, hue 0.039855123, saturation 0.55421686, and value 0.9764706.
3080     * It can be represented as a packed float with the constant {@code -0x1.df21f2p125F}.
3081     * <pre>
3082     * <font style='background-color: #F9906F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F9906F; color: #000000'>&nbsp;@&nbsp;</font>
3083     * <font style='background-color: #F9906F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F9906F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F9906F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F9906F'>&nbsp;@&nbsp;</font><font style='background-color: #F9906F; color: #888888'>&nbsp;@&nbsp;</font>
3084     * <font style='background-color: #F9906F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F9906F; color: #ffffff'>&nbsp;@&nbsp;</font>
3085     * </pre>
3086     */
3087    public static final SColor MEAT = new SColor(0xF9906F, "Meat");
3088
3089    /**
3090     * This color constant "Medium Blue" has RGB code {@code 0x0000CD}, red 0.0, green 0.0, blue 0.8039216, alpha 1, hue 0.66666675, saturation 1.0, and value 0.8039216.
3091     * It can be represented as a packed float with the constant {@code -0x1.9ap126F}.
3092     * <pre>
3093     * <font style='background-color: #0000CD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000CD; color: #000000'>&nbsp;@&nbsp;</font>
3094     * <font style='background-color: #0000CD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0000CD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0000CD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0000CD'>&nbsp;@&nbsp;</font><font style='background-color: #0000CD; color: #888888'>&nbsp;@&nbsp;</font>
3095     * <font style='background-color: #0000CD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000CD; color: #ffffff'>&nbsp;@&nbsp;</font>
3096     * </pre>
3097     */
3098    public static final SColor MEDIUM_BLUE = new SColor(0x0000CD, "Medium Blue");
3099
3100    /**
3101     * This color constant "Medium Carmine" has RGB code {@code 0xAF4035}, red 0.6862745, green 0.2509804, blue 0.20784314, alpha 1, hue 0.015027285, saturation 0.6971429, and value 0.6862745.
3102     * It can be represented as a packed float with the constant {@code -0x1.6a815ep125F}.
3103     * <pre>
3104     * <font style='background-color: #AF4035;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AF4035; color: #000000'>&nbsp;@&nbsp;</font>
3105     * <font style='background-color: #AF4035;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AF4035'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AF4035'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AF4035'>&nbsp;@&nbsp;</font><font style='background-color: #AF4035; color: #888888'>&nbsp;@&nbsp;</font>
3106     * <font style='background-color: #AF4035;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AF4035; color: #ffffff'>&nbsp;@&nbsp;</font>
3107     * </pre>
3108     */
3109    public static final SColor MEDIUM_CARMINE = new SColor(0xAF4035, "Medium Carmine");
3110
3111    /**
3112     * This color constant "Medium Crimson" has RGB code {@code 0xC93756}, red 0.7882353, green 0.21568628, blue 0.3372549, alpha 1, hue 0.9646119, saturation 0.7263682, and value 0.7882353.
3113     * It can be represented as a packed float with the constant {@code -0x1.ac6f92p125F}.
3114     * <pre>
3115     * <font style='background-color: #C93756;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C93756; color: #000000'>&nbsp;@&nbsp;</font>
3116     * <font style='background-color: #C93756;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C93756'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C93756'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C93756'>&nbsp;@&nbsp;</font><font style='background-color: #C93756; color: #888888'>&nbsp;@&nbsp;</font>
3117     * <font style='background-color: #C93756;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C93756; color: #ffffff'>&nbsp;@&nbsp;</font>
3118     * </pre>
3119     */
3120    public static final SColor MEDIUM_CRIMSON = new SColor(0xC93756, "Medium Crimson");
3121
3122    /**
3123     * This color constant "Medium Lavender Magenta" has RGB code {@code 0xCC99CC}, red 0.8, green 0.6, blue 0.8, alpha 1, hue 0.8333333, saturation 0.24999999, and value 0.8.
3124     * It can be represented as a packed float with the constant {@code -0x1.993398p126F}.
3125     * <pre>
3126     * <font style='background-color: #CC99CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC99CC; color: #000000'>&nbsp;@&nbsp;</font>
3127     * <font style='background-color: #CC99CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CC99CC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CC99CC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CC99CC'>&nbsp;@&nbsp;</font><font style='background-color: #CC99CC; color: #888888'>&nbsp;@&nbsp;</font>
3128     * <font style='background-color: #CC99CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC99CC; color: #ffffff'>&nbsp;@&nbsp;</font>
3129     * </pre>
3130     */
3131    public static final SColor MEDIUM_LAVENDER_MAGENTA = new SColor(0xCC99CC, "Medium Lavender Magenta");
3132
3133    /**
3134     * This color constant "Medium Purple" has RGB code {@code 0x9370DB}, red 0.5764706, green 0.4392157, blue 0.85882354, alpha 1, hue 0.721184, saturation 0.4885845, and value 0.85882354.
3135     * It can be represented as a packed float with the constant {@code -0x1.b6e126p126F}.
3136     * <pre>
3137     * <font style='background-color: #9370DB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9370DB; color: #000000'>&nbsp;@&nbsp;</font>
3138     * <font style='background-color: #9370DB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9370DB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9370DB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9370DB'>&nbsp;@&nbsp;</font><font style='background-color: #9370DB; color: #888888'>&nbsp;@&nbsp;</font>
3139     * <font style='background-color: #9370DB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9370DB; color: #ffffff'>&nbsp;@&nbsp;</font>
3140     * </pre>
3141     */
3142    public static final SColor MEDIUM_PURPLE = new SColor(0x9370DB, "Medium Purple");
3143
3144    /**
3145     * This color constant "Medium Spring Green" has RGB code {@code 0x00FA9A}, red 0.0, green 0.98039216, blue 0.6039216, alpha 1, hue 0.436, saturation 1.0, and value 0.98039216.
3146     * It can be represented as a packed float with the constant {@code -0x1.35f4p126F}.
3147     * <pre>
3148     * <font style='background-color: #00FA9A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FA9A; color: #000000'>&nbsp;@&nbsp;</font>
3149     * <font style='background-color: #00FA9A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00FA9A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00FA9A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00FA9A'>&nbsp;@&nbsp;</font><font style='background-color: #00FA9A; color: #888888'>&nbsp;@&nbsp;</font>
3150     * <font style='background-color: #00FA9A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FA9A; color: #ffffff'>&nbsp;@&nbsp;</font>
3151     * </pre>
3152     */
3153    public static final SColor MEDIUM_SPRING_GREEN = new SColor(0x00FA9A, "Medium Spring Green");
3154
3155    /**
3156     * This color constant "Midori" has RGB code {@code 0x2A606B}, red 0.16470589, green 0.3764706, blue 0.41960785, alpha 1, hue 0.52820516, saturation 0.6074766, and value 0.41960785.
3157     * It can be represented as a packed float with the constant {@code -0x1.d6c054p125F}.
3158     * <pre>
3159     * <font style='background-color: #2A606B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2A606B; color: #000000'>&nbsp;@&nbsp;</font>
3160     * <font style='background-color: #2A606B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2A606B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2A606B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2A606B'>&nbsp;@&nbsp;</font><font style='background-color: #2A606B; color: #888888'>&nbsp;@&nbsp;</font>
3161     * <font style='background-color: #2A606B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2A606B; color: #ffffff'>&nbsp;@&nbsp;</font>
3162     * </pre>
3163     */
3164    public static final SColor MIDORI = new SColor(0x2A606B, "Midori");
3165
3166    /**
3167     * This color constant "Midnight Blue" has RGB code {@code 0x003366}, red 0.0, green 0.2, blue 0.4, alpha 1, hue 0.58333325, saturation 1.0, and value 0.4.
3168     * It can be represented as a packed float with the constant {@code -0x1.cc66p125F}.
3169     * <pre>
3170     * <font style='background-color: #003366;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #003366; color: #000000'>&nbsp;@&nbsp;</font>
3171     * <font style='background-color: #003366;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #003366'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #003366'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #003366'>&nbsp;@&nbsp;</font><font style='background-color: #003366; color: #888888'>&nbsp;@&nbsp;</font>
3172     * <font style='background-color: #003366;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #003366; color: #ffffff'>&nbsp;@&nbsp;</font>
3173     * </pre>
3174     */
3175    public static final SColor MIDNIGHT_BLUE = new SColor(0x003366, "Midnight Blue");
3176
3177    /**
3178     * This color constant "Mint Green" has RGB code {@code 0x98FF98}, red 0.59607846, green 1.0, blue 0.59607846, alpha 1, hue 0.33333325, saturation 0.40392154, and value 1.0.
3179     * It can be represented as a packed float with the constant {@code -0x1.31ff3p126F}.
3180     * <pre>
3181     * <font style='background-color: #98FF98;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #98FF98; color: #000000'>&nbsp;@&nbsp;</font>
3182     * <font style='background-color: #98FF98;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #98FF98'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #98FF98'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #98FF98'>&nbsp;@&nbsp;</font><font style='background-color: #98FF98; color: #888888'>&nbsp;@&nbsp;</font>
3183     * <font style='background-color: #98FF98;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #98FF98; color: #ffffff'>&nbsp;@&nbsp;</font>
3184     * </pre>
3185     */
3186    public static final SColor MINT_GREEN = new SColor(0x98FF98, "Mint Green");
3187
3188    /**
3189     * This color constant "Misty Rose" has RGB code {@code 0xFFE4E1}, red 1.0, green 0.89411765, blue 0.88235295, alpha 1, hue 0.01666677, saturation 0.11764705, and value 1.0.
3190     * It can be represented as a packed float with the constant {@code -0x1.c3c9fep126F}.
3191     * <pre>
3192     * <font style='background-color: #FFE4E1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFE4E1; color: #000000'>&nbsp;@&nbsp;</font>
3193     * <font style='background-color: #FFE4E1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFE4E1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFE4E1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFE4E1'>&nbsp;@&nbsp;</font><font style='background-color: #FFE4E1; color: #888888'>&nbsp;@&nbsp;</font>
3194     * <font style='background-color: #FFE4E1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFE4E1; color: #ffffff'>&nbsp;@&nbsp;</font>
3195     * </pre>
3196     */
3197    public static final SColor MISTY_ROSE = new SColor(0xFFE4E1, "Misty Rose");
3198
3199    /**
3200     * This color constant "Moss" has RGB code {@code 0x8B7D3A}, red 0.54509807, green 0.49019608, blue 0.22745098, alpha 1, hue 0.13786018, saturation 0.58273387, and value 0.54509807.
3201     * It can be represented as a packed float with the constant {@code -0x1.74fb16p125F}.
3202     * <pre>
3203     * <font style='background-color: #8B7D3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8B7D3A; color: #000000'>&nbsp;@&nbsp;</font>
3204     * <font style='background-color: #8B7D3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8B7D3A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8B7D3A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8B7D3A'>&nbsp;@&nbsp;</font><font style='background-color: #8B7D3A; color: #888888'>&nbsp;@&nbsp;</font>
3205     * <font style='background-color: #8B7D3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8B7D3A; color: #ffffff'>&nbsp;@&nbsp;</font>
3206     * </pre>
3207     */
3208    public static final SColor MOSS = new SColor(0x8B7D3A, "Moss");
3209
3210    /**
3211     * This color constant "Moss Green" has RGB code {@code 0xADDFAD}, red 0.6784314, green 0.8745098, blue 0.6784314, alpha 1, hue 0.33333325, saturation 0.22421522, and value 0.8745098.
3212     * It can be represented as a packed float with the constant {@code -0x1.5bbf5ap126F}.
3213     * <pre>
3214     * <font style='background-color: #ADDFAD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ADDFAD; color: #000000'>&nbsp;@&nbsp;</font>
3215     * <font style='background-color: #ADDFAD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ADDFAD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ADDFAD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ADDFAD'>&nbsp;@&nbsp;</font><font style='background-color: #ADDFAD; color: #888888'>&nbsp;@&nbsp;</font>
3216     * <font style='background-color: #ADDFAD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ADDFAD; color: #ffffff'>&nbsp;@&nbsp;</font>
3217     * </pre>
3218     */
3219    public static final SColor MOSS_GREEN = new SColor(0xADDFAD, "Moss Green");
3220
3221    /**
3222     * This color constant "Mountbatten Pink" has RGB code {@code 0x997A8D}, red 0.6, green 0.47843137, blue 0.5529412, alpha 1, hue 0.8978494, saturation 0.20261441, and value 0.6.
3223     * It can be represented as a packed float with the constant {@code -0x1.1af532p126F}.
3224     * <pre>
3225     * <font style='background-color: #997A8D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #997A8D; color: #000000'>&nbsp;@&nbsp;</font>
3226     * <font style='background-color: #997A8D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #997A8D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #997A8D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #997A8D'>&nbsp;@&nbsp;</font><font style='background-color: #997A8D; color: #888888'>&nbsp;@&nbsp;</font>
3227     * <font style='background-color: #997A8D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #997A8D; color: #ffffff'>&nbsp;@&nbsp;</font>
3228     * </pre>
3229     */
3230    public static final SColor MOUNTBATTEN_PINK = new SColor(0x997A8D, "Mountbatten Pink");
3231
3232    /**
3233     * This color constant "Mousy Indigo" has RGB code {@code 0x5C544E}, red 0.36078432, green 0.32941177, blue 0.30588236, alpha 1, hue 0.07142866, saturation 0.1521739, and value 0.36078432.
3234     * It can be represented as a packed float with the constant {@code -0x1.9ca8b8p125F}.
3235     * <pre>
3236     * <font style='background-color: #5C544E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5C544E; color: #000000'>&nbsp;@&nbsp;</font>
3237     * <font style='background-color: #5C544E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5C544E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5C544E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5C544E'>&nbsp;@&nbsp;</font><font style='background-color: #5C544E; color: #888888'>&nbsp;@&nbsp;</font>
3238     * <font style='background-color: #5C544E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5C544E; color: #ffffff'>&nbsp;@&nbsp;</font>
3239     * </pre>
3240     */
3241    public static final SColor MOUSY_INDIGO = new SColor(0x5C544E, "Mousy Indigo");
3242
3243    /**
3244     * This color constant "Mousy Wisteria" has RGB code {@code 0x766980}, red 0.4627451, green 0.4117647, blue 0.5019608, alpha 1, hue 0.76086974, saturation 0.17968754, and value 0.5019608.
3245     * It can be represented as a packed float with the constant {@code -0x1.00d2ecp126F}.
3246     * <pre>
3247     * <font style='background-color: #766980;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #766980; color: #000000'>&nbsp;@&nbsp;</font>
3248     * <font style='background-color: #766980;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #766980'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #766980'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #766980'>&nbsp;@&nbsp;</font><font style='background-color: #766980; color: #888888'>&nbsp;@&nbsp;</font>
3249     * <font style='background-color: #766980;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #766980; color: #ffffff'>&nbsp;@&nbsp;</font>
3250     * </pre>
3251     */
3252    public static final SColor MOUSY_WISTERIA = new SColor(0x766980, "Mousy Wisteria");
3253
3254    /**
3255     * This color constant "Mulberry" has RGB code {@code 0x59292C}, red 0.34901962, green 0.16078432, blue 0.17254902, alpha 1, hue 0.9895833, saturation 0.53932583, and value 0.34901962.
3256     * It can be represented as a packed float with the constant {@code -0x1.5852b2p125F}.
3257     * <pre>
3258     * <font style='background-color: #59292C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #59292C; color: #000000'>&nbsp;@&nbsp;</font>
3259     * <font style='background-color: #59292C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #59292C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #59292C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #59292C'>&nbsp;@&nbsp;</font><font style='background-color: #59292C; color: #888888'>&nbsp;@&nbsp;</font>
3260     * <font style='background-color: #59292C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #59292C; color: #ffffff'>&nbsp;@&nbsp;</font>
3261     * </pre>
3262     */
3263    public static final SColor MULBERRY = new SColor(0x59292C, "Mulberry");
3264
3265    /**
3266     * This color constant "Mulberry Dyed" has RGB code {@code 0xC57F2E}, red 0.77254903, green 0.49803922, blue 0.18039216, alpha 1, hue 0.08940387, saturation 0.7664975, and value 0.77254903.
3267     * It can be represented as a packed float with the constant {@code -0x1.5cff8ap125F}.
3268     * <pre>
3269     * <font style='background-color: #C57F2E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C57F2E; color: #000000'>&nbsp;@&nbsp;</font>
3270     * <font style='background-color: #C57F2E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C57F2E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C57F2E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C57F2E'>&nbsp;@&nbsp;</font><font style='background-color: #C57F2E; color: #888888'>&nbsp;@&nbsp;</font>
3271     * <font style='background-color: #C57F2E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C57F2E; color: #ffffff'>&nbsp;@&nbsp;</font>
3272     * </pre>
3273     */
3274    public static final SColor MULBERRY_DYED = new SColor(0xC57F2E, "Mulberry Dyed");
3275
3276    /**
3277     * This color constant "Mustard" has RGB code {@code 0xFFDB58}, red 1.0, green 0.85882354, blue 0.34509805, alpha 1, hue 0.1307385, saturation 0.654902, and value 1.0.
3278     * It can be represented as a packed float with the constant {@code -0x1.b1b7fep125F}.
3279     * <pre>
3280     * <font style='background-color: #FFDB58;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFDB58; color: #000000'>&nbsp;@&nbsp;</font>
3281     * <font style='background-color: #FFDB58;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFDB58'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFDB58'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFDB58'>&nbsp;@&nbsp;</font><font style='background-color: #FFDB58; color: #888888'>&nbsp;@&nbsp;</font>
3282     * <font style='background-color: #FFDB58;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFDB58; color: #ffffff'>&nbsp;@&nbsp;</font>
3283     * </pre>
3284     */
3285    public static final SColor MUSTARD = new SColor(0xFFDB58, "Mustard");
3286
3287    /**
3288     * This color constant "Myrtle" has RGB code {@code 0x21421E}, red 0.12941177, green 0.25882354, blue 0.11764706, alpha 1, hue 0.31944442, saturation 0.5454546, and value 0.25882354.
3289     * It can be represented as a packed float with the constant {@code -0x1.3c8442p125F}.
3290     * <pre>
3291     * <font style='background-color: #21421E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #21421E; color: #000000'>&nbsp;@&nbsp;</font>
3292     * <font style='background-color: #21421E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #21421E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #21421E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #21421E'>&nbsp;@&nbsp;</font><font style='background-color: #21421E; color: #888888'>&nbsp;@&nbsp;</font>
3293     * <font style='background-color: #21421E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #21421E; color: #ffffff'>&nbsp;@&nbsp;</font>
3294     * </pre>
3295     */
3296    public static final SColor MYRTLE = new SColor(0x21421E, "Myrtle");
3297
3298    /**
3299     * This color constant "Navajo White" has RGB code {@code 0xFFDEAD}, red 1.0, green 0.87058824, blue 0.6784314, alpha 1, hue 0.09959364, saturation 0.3215686, and value 1.0.
3300     * It can be represented as a packed float with the constant {@code -0x1.5bbdfep126F}.
3301     * <pre>
3302     * <font style='background-color: #FFDEAD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFDEAD; color: #000000'>&nbsp;@&nbsp;</font>
3303     * <font style='background-color: #FFDEAD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFDEAD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFDEAD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFDEAD'>&nbsp;@&nbsp;</font><font style='background-color: #FFDEAD; color: #888888'>&nbsp;@&nbsp;</font>
3304     * <font style='background-color: #FFDEAD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFDEAD; color: #ffffff'>&nbsp;@&nbsp;</font>
3305     * </pre>
3306     */
3307    public static final SColor NAVAJO_WHITE = new SColor(0xFFDEAD, "Navajo White");
3308
3309    /**
3310     * This color constant "Navy Blue" has RGB code {@code 0x000080}, red 0.0, green 0.0, blue 0.5019608, alpha 1, hue 0.66666687, saturation 1.0, and value 0.5019608.
3311     * It can be represented as a packed float with the constant {@code -0x1.0p126F}.
3312     * <pre>
3313     * <font style='background-color: #000080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000080; color: #000000'>&nbsp;@&nbsp;</font>
3314     * <font style='background-color: #000080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000080'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #000080'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #000080'>&nbsp;@&nbsp;</font><font style='background-color: #000080; color: #888888'>&nbsp;@&nbsp;</font>
3315     * <font style='background-color: #000080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000080; color: #ffffff'>&nbsp;@&nbsp;</font>
3316     * </pre>
3317     */
3318    public static final SColor NAVY_BLUE = new SColor(0x000080, "Navy Blue");
3319
3320    /**
3321     * This color constant "Navy Blue Bellflower" has RGB code {@code 0x191F45}, red 0.09803922, green 0.12156863, blue 0.27058825, alpha 1, hue 0.6439395, saturation 0.6376812, and value 0.27058825.
3322     * It can be represented as a packed float with the constant {@code -0x1.8a3e32p125F}.
3323     * <pre>
3324     * <font style='background-color: #191F45;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #191F45; color: #000000'>&nbsp;@&nbsp;</font>
3325     * <font style='background-color: #191F45;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #191F45'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #191F45'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #191F45'>&nbsp;@&nbsp;</font><font style='background-color: #191F45; color: #888888'>&nbsp;@&nbsp;</font>
3326     * <font style='background-color: #191F45;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #191F45; color: #ffffff'>&nbsp;@&nbsp;</font>
3327     * </pre>
3328     */
3329    public static final SColor NAVY_BLUE_BELLFLOWER = new SColor(0x191F45, "Navy Blue Bellflower");
3330
3331    /**
3332     * This color constant "Navy Blue Dye" has RGB code {@code 0x003171}, red 0.0, green 0.19215687, blue 0.44313726, alpha 1, hue 0.5943954, saturation 1.0, and value 0.44313726.
3333     * It can be represented as a packed float with the constant {@code -0x1.e262p125F}.
3334     * <pre>
3335     * <font style='background-color: #003171;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #003171; color: #000000'>&nbsp;@&nbsp;</font>
3336     * <font style='background-color: #003171;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #003171'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #003171'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #003171'>&nbsp;@&nbsp;</font><font style='background-color: #003171; color: #888888'>&nbsp;@&nbsp;</font>
3337     * <font style='background-color: #003171;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #003171; color: #ffffff'>&nbsp;@&nbsp;</font>
3338     * </pre>
3339     */
3340    public static final SColor NAVY_BLUE_DYE = new SColor(0x003171, "Navy Blue Dye");
3341
3342    /**
3343     * This color constant "New Bridge" has RGB code {@code 0x006C7F}, red 0.0, green 0.42352942, blue 0.49803922, alpha 1, hue 0.5249343, saturation 1.0, and value 0.49803922.
3344     * It can be represented as a packed float with the constant {@code -0x1.fed8p125F}.
3345     * <pre>
3346     * <font style='background-color: #006C7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #006C7F; color: #000000'>&nbsp;@&nbsp;</font>
3347     * <font style='background-color: #006C7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #006C7F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #006C7F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #006C7F'>&nbsp;@&nbsp;</font><font style='background-color: #006C7F; color: #888888'>&nbsp;@&nbsp;</font>
3348     * <font style='background-color: #006C7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #006C7F; color: #ffffff'>&nbsp;@&nbsp;</font>
3349     * </pre>
3350     */
3351    public static final SColor NEW_BRIDGE = new SColor(0x006C7F, "New Bridge");
3352
3353    /**
3354     * This color constant "Nightingale" has RGB code {@code 0x645530}, red 0.39215687, green 0.33333334, blue 0.1882353, alpha 1, hue 0.11858988, saturation 0.52, and value 0.39215687.
3355     * It can be represented as a packed float with the constant {@code -0x1.60aac8p125F}.
3356     * <pre>
3357     * <font style='background-color: #645530;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #645530; color: #000000'>&nbsp;@&nbsp;</font>
3358     * <font style='background-color: #645530;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #645530'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #645530'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #645530'>&nbsp;@&nbsp;</font><font style='background-color: #645530; color: #888888'>&nbsp;@&nbsp;</font>
3359     * <font style='background-color: #645530;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #645530; color: #ffffff'>&nbsp;@&nbsp;</font>
3360     * </pre>
3361     */
3362    public static final SColor NIGHTINGALE = new SColor(0x645530, "Nightingale");
3363
3364    /**
3365     * This color constant "Nightingale Brown" has RGB code {@code 0x5C4827}, red 0.36078432, green 0.28235295, blue 0.15294118, alpha 1, hue 0.103773594, saturation 0.57608694, and value 0.36078432.
3366     * It can be represented as a packed float with the constant {@code -0x1.4e90b8p125F}.
3367     * <pre>
3368     * <font style='background-color: #5C4827;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5C4827; color: #000000'>&nbsp;@&nbsp;</font>
3369     * <font style='background-color: #5C4827;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5C4827'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5C4827'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5C4827'>&nbsp;@&nbsp;</font><font style='background-color: #5C4827; color: #888888'>&nbsp;@&nbsp;</font>
3370     * <font style='background-color: #5C4827;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5C4827; color: #ffffff'>&nbsp;@&nbsp;</font>
3371     * </pre>
3372     */
3373    public static final SColor NIGHTINGALE_BROWN = new SColor(0x5C4827, "Nightingale Brown");
3374
3375    /**
3376     * This color constant "Ocean Blue" has RGB code {@code 0x50B0B8}, red 0.3137255, green 0.6901961, blue 0.72156864, alpha 1, hue 0.5128205, saturation 0.5652174, and value 0.72156864.
3377     * It can be represented as a packed float with the constant {@code -0x1.7160ap126F}.
3378     * <pre>
3379     * <font style='background-color: #50B0B8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #50B0B8; color: #000000'>&nbsp;@&nbsp;</font>
3380     * <font style='background-color: #50B0B8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #50B0B8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #50B0B8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #50B0B8'>&nbsp;@&nbsp;</font><font style='background-color: #50B0B8; color: #888888'>&nbsp;@&nbsp;</font>
3381     * <font style='background-color: #50B0B8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #50B0B8; color: #ffffff'>&nbsp;@&nbsp;</font>
3382     * </pre>
3383     */
3384    public static final SColor OCEAN_BLUE = new SColor(0x50B0B8, "Ocean Blue");
3385
3386    /**
3387     * This color constant "Ochre" has RGB code {@code 0xCC7722}, red 0.8, green 0.46666667, blue 0.13333334, alpha 1, hue 0.083333254, saturation 0.8333334, and value 0.8.
3388     * It can be represented as a packed float with the constant {@code -0x1.44ef98p125F}.
3389     * <pre>
3390     * <font style='background-color: #CC7722;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC7722; color: #000000'>&nbsp;@&nbsp;</font>
3391     * <font style='background-color: #CC7722;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CC7722'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CC7722'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CC7722'>&nbsp;@&nbsp;</font><font style='background-color: #CC7722; color: #888888'>&nbsp;@&nbsp;</font>
3392     * <font style='background-color: #CC7722;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC7722; color: #ffffff'>&nbsp;@&nbsp;</font>
3393     * </pre>
3394     */
3395    public static final SColor OCHRE = new SColor(0xCC7722, "Ochre");
3396
3397    /**
3398     * This color constant "Old Bamboo" has RGB code {@code 0x5E644F}, red 0.36862746, green 0.39215687, blue 0.30980393, alpha 1, hue 0.21428561, saturation 0.20999998, and value 0.39215687.
3399     * It can be represented as a packed float with the constant {@code -0x1.9ec8bcp125F}.
3400     * <pre>
3401     * <font style='background-color: #5E644F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5E644F; color: #000000'>&nbsp;@&nbsp;</font>
3402     * <font style='background-color: #5E644F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5E644F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5E644F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5E644F'>&nbsp;@&nbsp;</font><font style='background-color: #5E644F; color: #888888'>&nbsp;@&nbsp;</font>
3403     * <font style='background-color: #5E644F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5E644F; color: #ffffff'>&nbsp;@&nbsp;</font>
3404     * </pre>
3405     */
3406    public static final SColor OLD_BAMBOO = new SColor(0x5E644F, "Old Bamboo");
3407
3408    /**
3409     * This color constant "Old Gold" has RGB code {@code 0xCFB53B}, red 0.8117647, green 0.70980394, blue 0.23137255, alpha 1, hue 0.13738728, saturation 0.7149759, and value 0.8117647.
3410     * It can be represented as a packed float with the constant {@code -0x1.776b9ep125F}.
3411     * <pre>
3412     * <font style='background-color: #CFB53B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CFB53B; color: #000000'>&nbsp;@&nbsp;</font>
3413     * <font style='background-color: #CFB53B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CFB53B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CFB53B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CFB53B'>&nbsp;@&nbsp;</font><font style='background-color: #CFB53B; color: #888888'>&nbsp;@&nbsp;</font>
3414     * <font style='background-color: #CFB53B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CFB53B; color: #ffffff'>&nbsp;@&nbsp;</font>
3415     * </pre>
3416     */
3417    public static final SColor OLD_GOLD = new SColor(0xCFB53B, "Old Gold");
3418
3419    /**
3420     * This color constant "Old Lace" has RGB code {@code 0xFDF5E6}, red 0.99215686, green 0.9607843, blue 0.9019608, alpha 1, hue 0.108695745, saturation 0.090909086, and value 0.99215686.
3421     * It can be represented as a packed float with the constant {@code -0x1.cdebfap126F}.
3422     * <pre>
3423     * <font style='background-color: #FDF5E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FDF5E6; color: #000000'>&nbsp;@&nbsp;</font>
3424     * <font style='background-color: #FDF5E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FDF5E6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FDF5E6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FDF5E6'>&nbsp;@&nbsp;</font><font style='background-color: #FDF5E6; color: #888888'>&nbsp;@&nbsp;</font>
3425     * <font style='background-color: #FDF5E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FDF5E6; color: #ffffff'>&nbsp;@&nbsp;</font>
3426     * </pre>
3427     */
3428    public static final SColor OLD_LACE = new SColor(0xFDF5E6, "Old Lace");
3429
3430    /**
3431     * This color constant "Old Lavender" has RGB code {@code 0x796878}, red 0.4745098, green 0.40784314, blue 0.47058824, alpha 1, hue 0.8431373, saturation 0.14049585, and value 0.4745098.
3432     * It can be represented as a packed float with the constant {@code -0x1.f0d0f2p125F}.
3433     * <pre>
3434     * <font style='background-color: #796878;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #796878; color: #000000'>&nbsp;@&nbsp;</font>
3435     * <font style='background-color: #796878;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #796878'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #796878'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #796878'>&nbsp;@&nbsp;</font><font style='background-color: #796878; color: #888888'>&nbsp;@&nbsp;</font>
3436     * <font style='background-color: #796878;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #796878; color: #ffffff'>&nbsp;@&nbsp;</font>
3437     * </pre>
3438     */
3439    public static final SColor OLD_LAVENDER = new SColor(0x796878, "Old Lavender");
3440
3441    /**
3442     * This color constant "Old Rose" has RGB code {@code 0xC08081}, red 0.7529412, green 0.5019608, blue 0.5058824, alpha 1, hue 0.9973958, saturation 0.3333333, and value 0.7529412.
3443     * It can be represented as a packed float with the constant {@code -0x1.03018p126F}.
3444     * <pre>
3445     * <font style='background-color: #C08081;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C08081; color: #000000'>&nbsp;@&nbsp;</font>
3446     * <font style='background-color: #C08081;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C08081'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C08081'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C08081'>&nbsp;@&nbsp;</font><font style='background-color: #C08081; color: #888888'>&nbsp;@&nbsp;</font>
3447     * <font style='background-color: #C08081;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C08081; color: #ffffff'>&nbsp;@&nbsp;</font>
3448     * </pre>
3449     */
3450    public static final SColor OLD_ROSE = new SColor(0xC08081, "Old Rose");
3451
3452    /**
3453     * This color constant "Olive" has RGB code {@code 0x808000}, red 0.5019608, green 0.5019608, blue 0.0, alpha 1, hue 0.16666663, saturation 1.0, and value 0.5019608.
3454     * It can be represented as a packed float with the constant {@code -0x1.0101p125F}.
3455     * <pre>
3456     * <font style='background-color: #808000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #808000; color: #000000'>&nbsp;@&nbsp;</font>
3457     * <font style='background-color: #808000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #808000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #808000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #808000'>&nbsp;@&nbsp;</font><font style='background-color: #808000; color: #888888'>&nbsp;@&nbsp;</font>
3458     * <font style='background-color: #808000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #808000; color: #ffffff'>&nbsp;@&nbsp;</font>
3459     * </pre>
3460     */
3461    public static final SColor OLIVE = new SColor(0x808000, "Olive");
3462
3463    /**
3464     * This color constant "Olive Drab" has RGB code {@code 0x6B8E23}, red 0.41960785, green 0.5568628, blue 0.13725491, alpha 1, hue 0.2211839, saturation 0.75352114, and value 0.5568628.
3465     * It can be represented as a packed float with the constant {@code -0x1.471cd6p125F}.
3466     * <pre>
3467     * <font style='background-color: #6B8E23;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6B8E23; color: #000000'>&nbsp;@&nbsp;</font>
3468     * <font style='background-color: #6B8E23;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6B8E23'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6B8E23'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6B8E23'>&nbsp;@&nbsp;</font><font style='background-color: #6B8E23; color: #888888'>&nbsp;@&nbsp;</font>
3469     * <font style='background-color: #6B8E23;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6B8E23; color: #ffffff'>&nbsp;@&nbsp;</font>
3470     * </pre>
3471     */
3472    public static final SColor OLIVE_DRAB = new SColor(0x6B8E23, "Olive Drab");
3473
3474    /**
3475     * This color constant "Olivine" has RGB code {@code 0x9AB973}, red 0.6039216, green 0.7254902, blue 0.4509804, alpha 1, hue 0.24047625, saturation 0.3783784, and value 0.7254902.
3476     * It can be represented as a packed float with the constant {@code -0x1.e77334p125F}.
3477     * <pre>
3478     * <font style='background-color: #9AB973;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9AB973; color: #000000'>&nbsp;@&nbsp;</font>
3479     * <font style='background-color: #9AB973;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9AB973'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9AB973'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9AB973'>&nbsp;@&nbsp;</font><font style='background-color: #9AB973; color: #888888'>&nbsp;@&nbsp;</font>
3480     * <font style='background-color: #9AB973;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9AB973; color: #ffffff'>&nbsp;@&nbsp;</font>
3481     * </pre>
3482     */
3483    public static final SColor OLIVINE = new SColor(0x9AB973, "Olivine");
3484
3485    /**
3486     * This color constant "Onando" has RGB code {@code 0x364141}, red 0.21176471, green 0.25490198, blue 0.25490198, alpha 1, hue 0.5, saturation 0.1692308, and value 0.25490198.
3487     * It can be represented as a packed float with the constant {@code -0x1.82826cp125F}.
3488     * <pre>
3489     * <font style='background-color: #364141;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #364141; color: #000000'>&nbsp;@&nbsp;</font>
3490     * <font style='background-color: #364141;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #364141'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #364141'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #364141'>&nbsp;@&nbsp;</font><font style='background-color: #364141; color: #888888'>&nbsp;@&nbsp;</font>
3491     * <font style='background-color: #364141;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #364141; color: #ffffff'>&nbsp;@&nbsp;</font>
3492     * </pre>
3493     */
3494    public static final SColor ONANDO = new SColor(0x364141, "Onando");
3495
3496    /**
3497     * This color constant "One Kin Dye" has RGB code {@code 0xF08F90}, red 0.9411765, green 0.56078434, blue 0.5647059, alpha 1, hue 0.9982818, saturation 0.40416664, and value 0.9411765.
3498     * It can be represented as a packed float with the constant {@code -0x1.211fep126F}.
3499     * <pre>
3500     * <font style='background-color: #F08F90;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F08F90; color: #000000'>&nbsp;@&nbsp;</font>
3501     * <font style='background-color: #F08F90;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F08F90'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F08F90'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F08F90'>&nbsp;@&nbsp;</font><font style='background-color: #F08F90; color: #888888'>&nbsp;@&nbsp;</font>
3502     * <font style='background-color: #F08F90;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F08F90; color: #ffffff'>&nbsp;@&nbsp;</font>
3503     * </pre>
3504     */
3505    public static final SColor ONE_KIN_DYE = new SColor(0xF08F90, "One Kin Dye");
3506
3507    /**
3508     * This color constant "Opposite Flower" has RGB code {@code 0x4D646C}, red 0.3019608, green 0.39215687, blue 0.42352942, alpha 1, hue 0.5430107, saturation 0.28703701, and value 0.42352942.
3509     * It can be represented as a packed float with the constant {@code -0x1.d8c89ap125F}.
3510     * <pre>
3511     * <font style='background-color: #4D646C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4D646C; color: #000000'>&nbsp;@&nbsp;</font>
3512     * <font style='background-color: #4D646C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4D646C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4D646C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4D646C'>&nbsp;@&nbsp;</font><font style='background-color: #4D646C; color: #888888'>&nbsp;@&nbsp;</font>
3513     * <font style='background-color: #4D646C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4D646C; color: #ffffff'>&nbsp;@&nbsp;</font>
3514     * </pre>
3515     */
3516    public static final SColor OPPOSITE_FLOWER = new SColor(0x4D646C, "Opposite Flower");
3517
3518    /**
3519     * This color constant "Orange" has RGB code {@code 0xFFC800}, red 1.0, green 0.78431374, blue 0.0, alpha 1, hue 0.13071907, saturation 1.0, and value 1.0.
3520     * It can be represented as a packed float with the constant {@code -0x1.0191fep125F}.
3521     * <pre>
3522     * <font style='background-color: #FFC800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFC800; color: #000000'>&nbsp;@&nbsp;</font>
3523     * <font style='background-color: #FFC800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFC800'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFC800'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFC800'>&nbsp;@&nbsp;</font><font style='background-color: #FFC800; color: #888888'>&nbsp;@&nbsp;</font>
3524     * <font style='background-color: #FFC800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFC800; color: #ffffff'>&nbsp;@&nbsp;</font>
3525     * </pre>
3526     */
3527    public static final SColor ORANGE = new SColor(0xFFC800, "Orange");
3528
3529    /**
3530     * This color constant "Orange Peel" has RGB code {@code 0xFFA000}, red 1.0, green 0.627451, blue 0.0, alpha 1, hue 0.10457528, saturation 1.0, and value 1.0.
3531     * It can be represented as a packed float with the constant {@code -0x1.0141fep125F}.
3532     * <pre>
3533     * <font style='background-color: #FFA000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA000; color: #000000'>&nbsp;@&nbsp;</font>
3534     * <font style='background-color: #FFA000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFA000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFA000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFA000'>&nbsp;@&nbsp;</font><font style='background-color: #FFA000; color: #888888'>&nbsp;@&nbsp;</font>
3535     * <font style='background-color: #FFA000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA000; color: #ffffff'>&nbsp;@&nbsp;</font>
3536     * </pre>
3537     */
3538    public static final SColor ORANGE_PEEL = new SColor(0xFFA000, "Orange Peel");
3539
3540    /**
3541     * This color constant "Orange Red" has RGB code {@code 0xFF4500}, red 1.0, green 0.27058825, blue 0.0, alpha 1, hue 0.045098066, saturation 1.0, and value 1.0.
3542     * It can be represented as a packed float with the constant {@code -0x1.008bfep125F}.
3543     * <pre>
3544     * <font style='background-color: #FF4500;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF4500; color: #000000'>&nbsp;@&nbsp;</font>
3545     * <font style='background-color: #FF4500;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF4500'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF4500'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF4500'>&nbsp;@&nbsp;</font><font style='background-color: #FF4500; color: #888888'>&nbsp;@&nbsp;</font>
3546     * <font style='background-color: #FF4500;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF4500; color: #ffffff'>&nbsp;@&nbsp;</font>
3547     * </pre>
3548     */
3549    public static final SColor ORANGE_RED = new SColor(0xFF4500, "Orange Red");
3550
3551    /**
3552     * This color constant "Orangutan" has RGB code {@code 0xDC3023}, red 0.8627451, green 0.1882353, blue 0.13725491, alpha 1, hue 0.011711597, saturation 0.8409091, and value 0.8627451.
3553     * It can be represented as a packed float with the constant {@code -0x1.4661b8p125F}.
3554     * <pre>
3555     * <font style='background-color: #DC3023;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DC3023; color: #000000'>&nbsp;@&nbsp;</font>
3556     * <font style='background-color: #DC3023;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DC3023'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DC3023'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DC3023'>&nbsp;@&nbsp;</font><font style='background-color: #DC3023; color: #888888'>&nbsp;@&nbsp;</font>
3557     * <font style='background-color: #DC3023;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DC3023; color: #ffffff'>&nbsp;@&nbsp;</font>
3558     * </pre>
3559     */
3560    public static final SColor ORANGUTAN = new SColor(0xDC3023, "Orangutan");
3561
3562    /**
3563     * This color constant "Orchid" has RGB code {@code 0xDA70D6}, red 0.85490197, green 0.4392157, blue 0.8392157, alpha 1, hue 0.83962256, saturation 0.48623854, and value 0.85490197.
3564     * It can be represented as a packed float with the constant {@code -0x1.ace1b4p126F}.
3565     * <pre>
3566     * <font style='background-color: #DA70D6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA70D6; color: #000000'>&nbsp;@&nbsp;</font>
3567     * <font style='background-color: #DA70D6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DA70D6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DA70D6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DA70D6'>&nbsp;@&nbsp;</font><font style='background-color: #DA70D6; color: #888888'>&nbsp;@&nbsp;</font>
3568     * <font style='background-color: #DA70D6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA70D6; color: #ffffff'>&nbsp;@&nbsp;</font>
3569     * </pre>
3570     */
3571    public static final SColor ORCHID = new SColor(0xDA70D6, "Orchid");
3572
3573    /**
3574     * This color constant "Overdyed Red Brown" has RGB code {@code 0xE35C38}, red 0.8901961, green 0.36078432, blue 0.21960784, alpha 1, hue 0.035087705, saturation 0.753304, and value 0.8901961.
3575     * It can be represented as a packed float with the constant {@code -0x1.70b9c6p125F}.
3576     * <pre>
3577     * <font style='background-color: #E35C38;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E35C38; color: #000000'>&nbsp;@&nbsp;</font>
3578     * <font style='background-color: #E35C38;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E35C38'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E35C38'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E35C38'>&nbsp;@&nbsp;</font><font style='background-color: #E35C38; color: #888888'>&nbsp;@&nbsp;</font>
3579     * <font style='background-color: #E35C38;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E35C38; color: #ffffff'>&nbsp;@&nbsp;</font>
3580     * </pre>
3581     */
3582    public static final SColor OVERDYED_RED_BROWN = new SColor(0xE35C38, "Overdyed Red Brown");
3583
3584    /**
3585     * This color constant "Pale Blue" has RGB code {@code 0xAFEEEE}, red 0.6862745, green 0.93333334, blue 0.93333334, alpha 1, hue 0.5, saturation 0.26470587, and value 0.93333334.
3586     * It can be represented as a packed float with the constant {@code -0x1.dddd5ep126F}.
3587     * <pre>
3588     * <font style='background-color: #AFEEEE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AFEEEE; color: #000000'>&nbsp;@&nbsp;</font>
3589     * <font style='background-color: #AFEEEE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AFEEEE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AFEEEE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AFEEEE'>&nbsp;@&nbsp;</font><font style='background-color: #AFEEEE; color: #888888'>&nbsp;@&nbsp;</font>
3590     * <font style='background-color: #AFEEEE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AFEEEE; color: #ffffff'>&nbsp;@&nbsp;</font>
3591     * </pre>
3592     */
3593    public static final SColor PALE_BLUE = new SColor(0xAFEEEE, "Pale Blue");
3594
3595    /**
3596     * This color constant "Pale Brown" has RGB code {@code 0x987654}, red 0.59607846, green 0.4627451, blue 0.32941177, alpha 1, hue 0.083333254, saturation 0.4473684, and value 0.59607846.
3597     * It can be represented as a packed float with the constant {@code -0x1.a8ed3p125F}.
3598     * <pre>
3599     * <font style='background-color: #987654;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #987654; color: #000000'>&nbsp;@&nbsp;</font>
3600     * <font style='background-color: #987654;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #987654'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #987654'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #987654'>&nbsp;@&nbsp;</font><font style='background-color: #987654; color: #888888'>&nbsp;@&nbsp;</font>
3601     * <font style='background-color: #987654;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #987654; color: #ffffff'>&nbsp;@&nbsp;</font>
3602     * </pre>
3603     */
3604    public static final SColor PALE_BROWN = new SColor(0x987654, "Pale Brown");
3605
3606    /**
3607     * This color constant "Pale Carmine" has RGB code {@code 0xAF4035}, red 0.6862745, green 0.2509804, blue 0.20784314, alpha 1, hue 0.015027285, saturation 0.6971429, and value 0.6862745.
3608     * It can be represented as a packed float with the constant {@code -0x1.6a815ep125F}.
3609     * <pre>
3610     * <font style='background-color: #AF4035;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AF4035; color: #000000'>&nbsp;@&nbsp;</font>
3611     * <font style='background-color: #AF4035;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AF4035'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AF4035'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AF4035'>&nbsp;@&nbsp;</font><font style='background-color: #AF4035; color: #888888'>&nbsp;@&nbsp;</font>
3612     * <font style='background-color: #AF4035;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AF4035; color: #ffffff'>&nbsp;@&nbsp;</font>
3613     * </pre>
3614     */
3615    public static final SColor PALE_CARMINE = new SColor(0xAF4035, "Pale Carmine");
3616
3617    /**
3618     * This color constant "Pale Chestnut" has RGB code {@code 0xDDADAF}, red 0.8666667, green 0.6784314, blue 0.6862745, alpha 1, hue 0.9930555, saturation 0.21719456, and value 0.8666667.
3619     * It can be represented as a packed float with the constant {@code -0x1.5f5bbap126F}.
3620     * <pre>
3621     * <font style='background-color: #DDADAF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DDADAF; color: #000000'>&nbsp;@&nbsp;</font>
3622     * <font style='background-color: #DDADAF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DDADAF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DDADAF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DDADAF'>&nbsp;@&nbsp;</font><font style='background-color: #DDADAF; color: #888888'>&nbsp;@&nbsp;</font>
3623     * <font style='background-color: #DDADAF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DDADAF; color: #ffffff'>&nbsp;@&nbsp;</font>
3624     * </pre>
3625     */
3626    public static final SColor PALE_CHESTNUT = new SColor(0xDDADAF, "Pale Chestnut");
3627
3628    /**
3629     * This color constant "Pale Cornflower Blue" has RGB code {@code 0xABCDEF}, red 0.67058825, green 0.8039216, blue 0.9372549, alpha 1, hue 0.58333325, saturation 0.2845188, and value 0.9372549.
3630     * It can be represented as a packed float with the constant {@code -0x1.df9b56p126F}.
3631     * <pre>
3632     * <font style='background-color: #ABCDEF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABCDEF; color: #000000'>&nbsp;@&nbsp;</font>
3633     * <font style='background-color: #ABCDEF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ABCDEF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ABCDEF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ABCDEF'>&nbsp;@&nbsp;</font><font style='background-color: #ABCDEF; color: #888888'>&nbsp;@&nbsp;</font>
3634     * <font style='background-color: #ABCDEF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABCDEF; color: #ffffff'>&nbsp;@&nbsp;</font>
3635     * </pre>
3636     */
3637    public static final SColor PALE_CORNFLOWER_BLUE = new SColor(0xABCDEF, "Pale Cornflower Blue");
3638
3639    /**
3640     * This color constant "Pale Crimson" has RGB code {@code 0xF2666C}, red 0.9490196, green 0.4, blue 0.42352942, alpha 1, hue 0.99285704, saturation 0.5785124, and value 0.9490196.
3641     * It can be represented as a packed float with the constant {@code -0x1.d8cde4p125F}.
3642     * <pre>
3643     * <font style='background-color: #F2666C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F2666C; color: #000000'>&nbsp;@&nbsp;</font>
3644     * <font style='background-color: #F2666C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F2666C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F2666C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F2666C'>&nbsp;@&nbsp;</font><font style='background-color: #F2666C; color: #888888'>&nbsp;@&nbsp;</font>
3645     * <font style='background-color: #F2666C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F2666C; color: #ffffff'>&nbsp;@&nbsp;</font>
3646     * </pre>
3647     */
3648    public static final SColor PALE_CRIMSON = new SColor(0xF2666C, "Pale Crimson");
3649
3650    /**
3651     * This color constant "Pale Fallen Leaves" has RGB code {@code 0xAA8736}, red 0.6666667, green 0.5294118, blue 0.21176471, alpha 1, hue 0.11637926, saturation 0.68235296, and value 0.6666667.
3652     * It can be represented as a packed float with the constant {@code -0x1.6d0f54p125F}.
3653     * <pre>
3654     * <font style='background-color: #AA8736;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AA8736; color: #000000'>&nbsp;@&nbsp;</font>
3655     * <font style='background-color: #AA8736;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AA8736'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AA8736'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AA8736'>&nbsp;@&nbsp;</font><font style='background-color: #AA8736; color: #888888'>&nbsp;@&nbsp;</font>
3656     * <font style='background-color: #AA8736;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AA8736; color: #ffffff'>&nbsp;@&nbsp;</font>
3657     * </pre>
3658     */
3659    public static final SColor PALE_FALLEN_LEAVES = new SColor(0xAA8736, "Pale Fallen Leaves");
3660
3661    /**
3662     * This color constant "Pale Green Onion" has RGB code {@code 0x749F8D}, red 0.45490196, green 0.62352943, blue 0.5529412, alpha 1, hue 0.43023252, saturation 0.27044028, and value 0.62352943.
3663     * It can be represented as a packed float with the constant {@code -0x1.1b3ee8p126F}.
3664     * <pre>
3665     * <font style='background-color: #749F8D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #749F8D; color: #000000'>&nbsp;@&nbsp;</font>
3666     * <font style='background-color: #749F8D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #749F8D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #749F8D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #749F8D'>&nbsp;@&nbsp;</font><font style='background-color: #749F8D; color: #888888'>&nbsp;@&nbsp;</font>
3667     * <font style='background-color: #749F8D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #749F8D; color: #ffffff'>&nbsp;@&nbsp;</font>
3668     * </pre>
3669     */
3670    public static final SColor PALE_GREEN_ONION = new SColor(0x749F8D, "Pale Green Onion");
3671
3672    /**
3673     * This color constant "Pale Incense" has RGB code {@code 0xFFA565}, red 1.0, green 0.64705884, blue 0.39607844, alpha 1, hue 0.06926417, saturation 0.60392153, and value 1.0.
3674     * It can be represented as a packed float with the constant {@code -0x1.cb4bfep125F}.
3675     * <pre>
3676     * <font style='background-color: #FFA565;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA565; color: #000000'>&nbsp;@&nbsp;</font>
3677     * <font style='background-color: #FFA565;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFA565'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFA565'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFA565'>&nbsp;@&nbsp;</font><font style='background-color: #FFA565; color: #888888'>&nbsp;@&nbsp;</font>
3678     * <font style='background-color: #FFA565;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA565; color: #ffffff'>&nbsp;@&nbsp;</font>
3679     * </pre>
3680     */
3681    public static final SColor PALE_INCENSE = new SColor(0xFFA565, "Pale Incense");
3682
3683    /**
3684     * This color constant "Pale Magenta" has RGB code {@code 0xF984E5}, red 0.9764706, green 0.5176471, blue 0.8980392, alpha 1, hue 0.8618234, saturation 0.46987948, and value 0.9764706.
3685     * It can be represented as a packed float with the constant {@code -0x1.cb09f2p126F}.
3686     * <pre>
3687     * <font style='background-color: #F984E5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F984E5; color: #000000'>&nbsp;@&nbsp;</font>
3688     * <font style='background-color: #F984E5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F984E5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F984E5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F984E5'>&nbsp;@&nbsp;</font><font style='background-color: #F984E5; color: #888888'>&nbsp;@&nbsp;</font>
3689     * <font style='background-color: #F984E5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F984E5; color: #ffffff'>&nbsp;@&nbsp;</font>
3690     * </pre>
3691     */
3692    public static final SColor PALE_MAGENTA = new SColor(0xF984E5, "Pale Magenta");
3693
3694    /**
3695     * This color constant "Pale Oak" has RGB code {@code 0xBBA46D}, red 0.73333335, green 0.6431373, blue 0.42745098, alpha 1, hue 0.117521286, saturation 0.41711232, and value 0.73333335.
3696     * It can be represented as a packed float with the constant {@code -0x1.db4976p125F}.
3697     * <pre>
3698     * <font style='background-color: #BBA46D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BBA46D; color: #000000'>&nbsp;@&nbsp;</font>
3699     * <font style='background-color: #BBA46D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BBA46D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BBA46D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BBA46D'>&nbsp;@&nbsp;</font><font style='background-color: #BBA46D; color: #888888'>&nbsp;@&nbsp;</font>
3700     * <font style='background-color: #BBA46D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BBA46D; color: #ffffff'>&nbsp;@&nbsp;</font>
3701     * </pre>
3702     */
3703    public static final SColor PALE_OAK = new SColor(0xBBA46D, "Pale Oak");
3704
3705    /**
3706     * This color constant "Pale Persimmon" has RGB code {@code 0xFCA474}, red 0.9882353, green 0.6431373, blue 0.45490196, alpha 1, hue 0.058823586, saturation 0.5396825, and value 0.9882353.
3707     * It can be represented as a packed float with the constant {@code -0x1.e949f8p125F}.
3708     * <pre>
3709     * <font style='background-color: #FCA474;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FCA474; color: #000000'>&nbsp;@&nbsp;</font>
3710     * <font style='background-color: #FCA474;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FCA474'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FCA474'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FCA474'>&nbsp;@&nbsp;</font><font style='background-color: #FCA474; color: #888888'>&nbsp;@&nbsp;</font>
3711     * <font style='background-color: #FCA474;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FCA474; color: #ffffff'>&nbsp;@&nbsp;</font>
3712     * </pre>
3713     */
3714    public static final SColor PALE_PERSIMMON = new SColor(0xFCA474, "Pale Persimmon");
3715
3716    /**
3717     * This color constant "Pale Pink" has RGB code {@code 0xFADADD}, red 0.98039216, green 0.85490197, blue 0.8666667, alpha 1, hue 0.98437506, saturation 0.12799999, and value 0.98039216.
3718     * It can be represented as a packed float with the constant {@code -0x1.bbb5f4p126F}.
3719     * <pre>
3720     * <font style='background-color: #FADADD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FADADD; color: #000000'>&nbsp;@&nbsp;</font>
3721     * <font style='background-color: #FADADD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FADADD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FADADD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FADADD'>&nbsp;@&nbsp;</font><font style='background-color: #FADADD; color: #888888'>&nbsp;@&nbsp;</font>
3722     * <font style='background-color: #FADADD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FADADD; color: #ffffff'>&nbsp;@&nbsp;</font>
3723     * </pre>
3724     */
3725    public static final SColor PALE_PINK = new SColor(0xFADADD, "Pale Pink");
3726
3727    /**
3728     * This color constant "Pale Red Violet" has RGB code {@code 0xDB7093}, red 0.85882354, green 0.4392157, blue 0.5764706, alpha 1, hue 0.9454828, saturation 0.4885845, and value 0.85882354.
3729     * It can be represented as a packed float with the constant {@code -0x1.26e1b6p126F}.
3730     * <pre>
3731     * <font style='background-color: #DB7093;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DB7093; color: #000000'>&nbsp;@&nbsp;</font>
3732     * <font style='background-color: #DB7093;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DB7093'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DB7093'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DB7093'>&nbsp;@&nbsp;</font><font style='background-color: #DB7093; color: #888888'>&nbsp;@&nbsp;</font>
3733     * <font style='background-color: #DB7093;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DB7093; color: #ffffff'>&nbsp;@&nbsp;</font>
3734     * </pre>
3735     */
3736    public static final SColor PALE_RED_VIOLET = new SColor(0xDB7093, "Pale Red Violet");
3737
3738    /**
3739     * This color constant "Pale Young Green Onion" has RGB code {@code 0x8DB255}, red 0.5529412, green 0.69803923, blue 0.33333334, alpha 1, hue 0.232975, saturation 0.5224719, and value 0.69803923.
3740     * It can be represented as a packed float with the constant {@code -0x1.ab651ap125F}.
3741     * <pre>
3742     * <font style='background-color: #8DB255;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8DB255; color: #000000'>&nbsp;@&nbsp;</font>
3743     * <font style='background-color: #8DB255;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8DB255'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8DB255'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8DB255'>&nbsp;@&nbsp;</font><font style='background-color: #8DB255; color: #888888'>&nbsp;@&nbsp;</font>
3744     * <font style='background-color: #8DB255;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8DB255; color: #ffffff'>&nbsp;@&nbsp;</font>
3745     * </pre>
3746     */
3747    public static final SColor PALE_YOUNG_GREEN_ONION = new SColor(0x8DB255, "Pale Young Green Onion");
3748
3749    /**
3750     * This color constant "Papaya Whip" has RGB code {@code 0xFFEFD5}, red 1.0, green 0.9372549, blue 0.8352941, alpha 1, hue 0.10317469, saturation 0.16470587, and value 1.0.
3751     * It can be represented as a packed float with the constant {@code -0x1.abdffep126F}.
3752     * <pre>
3753     * <font style='background-color: #FFEFD5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFEFD5; color: #000000'>&nbsp;@&nbsp;</font>
3754     * <font style='background-color: #FFEFD5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFEFD5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFEFD5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFEFD5'>&nbsp;@&nbsp;</font><font style='background-color: #FFEFD5; color: #888888'>&nbsp;@&nbsp;</font>
3755     * <font style='background-color: #FFEFD5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFEFD5; color: #ffffff'>&nbsp;@&nbsp;</font>
3756     * </pre>
3757     */
3758    public static final SColor PAPAYA_WHIP = new SColor(0xFFEFD5, "Papaya Whip");
3759
3760    /**
3761     * This color constant "Pastel Green" has RGB code {@code 0x77DD77}, red 0.46666667, green 0.8666667, blue 0.46666667, alpha 1, hue 0.33333325, saturation 0.46153846, and value 0.8666667.
3762     * It can be represented as a packed float with the constant {@code -0x1.efbaeep125F}.
3763     * <pre>
3764     * <font style='background-color: #77DD77;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #77DD77; color: #000000'>&nbsp;@&nbsp;</font>
3765     * <font style='background-color: #77DD77;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #77DD77'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #77DD77'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #77DD77'>&nbsp;@&nbsp;</font><font style='background-color: #77DD77; color: #888888'>&nbsp;@&nbsp;</font>
3766     * <font style='background-color: #77DD77;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #77DD77; color: #ffffff'>&nbsp;@&nbsp;</font>
3767     * </pre>
3768     */
3769    public static final SColor PASTEL_GREEN = new SColor(0x77DD77, "Pastel Green");
3770
3771    /**
3772     * This color constant "Pastel Pink" has RGB code {@code 0xFFD1DC}, red 1.0, green 0.81960785, blue 0.8627451, alpha 1, hue 0.96014494, saturation 0.18039215, and value 1.0.
3773     * It can be represented as a packed float with the constant {@code -0x1.b9a3fep126F}.
3774     * <pre>
3775     * <font style='background-color: #FFD1DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFD1DC; color: #000000'>&nbsp;@&nbsp;</font>
3776     * <font style='background-color: #FFD1DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFD1DC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFD1DC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFD1DC'>&nbsp;@&nbsp;</font><font style='background-color: #FFD1DC; color: #888888'>&nbsp;@&nbsp;</font>
3777     * <font style='background-color: #FFD1DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFD1DC; color: #ffffff'>&nbsp;@&nbsp;</font>
3778     * </pre>
3779     */
3780    public static final SColor PASTEL_PINK = new SColor(0xFFD1DC, "Pastel Pink");
3781
3782    /**
3783     * This color constant "Patina" has RGB code {@code 0x407A52}, red 0.2509804, green 0.47843137, blue 0.32156864, alpha 1, hue 0.38505745, saturation 0.4754098, and value 0.47843137.
3784     * It can be represented as a packed float with the constant {@code -0x1.a4f48p125F}.
3785     * <pre>
3786     * <font style='background-color: #407A52;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #407A52; color: #000000'>&nbsp;@&nbsp;</font>
3787     * <font style='background-color: #407A52;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #407A52'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #407A52'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #407A52'>&nbsp;@&nbsp;</font><font style='background-color: #407A52; color: #888888'>&nbsp;@&nbsp;</font>
3788     * <font style='background-color: #407A52;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #407A52; color: #ffffff'>&nbsp;@&nbsp;</font>
3789     * </pre>
3790     */
3791    public static final SColor PATINA = new SColor(0x407A52, "Patina");
3792
3793    /**
3794     * This color constant "Patrinia Flower" has RGB code {@code 0xD9B611}, red 0.8509804, green 0.7137255, blue 0.06666667, alpha 1, hue 0.13750005, saturation 0.921659, and value 0.8509804.
3795     * It can be represented as a packed float with the constant {@code -0x1.236db2p125F}.
3796     * <pre>
3797     * <font style='background-color: #D9B611;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D9B611; color: #000000'>&nbsp;@&nbsp;</font>
3798     * <font style='background-color: #D9B611;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D9B611'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D9B611'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D9B611'>&nbsp;@&nbsp;</font><font style='background-color: #D9B611; color: #888888'>&nbsp;@&nbsp;</font>
3799     * <font style='background-color: #D9B611;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D9B611; color: #ffffff'>&nbsp;@&nbsp;</font>
3800     * </pre>
3801     */
3802    public static final SColor PATRINIA_FLOWER = new SColor(0xD9B611, "Patrinia Flower");
3803
3804    /**
3805     * This color constant "Peach" has RGB code {@code 0xFFE5B4}, red 1.0, green 0.8980392, blue 0.7058824, alpha 1, hue 0.108888984, saturation 0.29411763, and value 1.0.
3806     * It can be represented as a packed float with the constant {@code -0x1.69cbfep126F}.
3807     * <pre>
3808     * <font style='background-color: #FFE5B4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFE5B4; color: #000000'>&nbsp;@&nbsp;</font>
3809     * <font style='background-color: #FFE5B4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFE5B4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFE5B4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFE5B4'>&nbsp;@&nbsp;</font><font style='background-color: #FFE5B4; color: #888888'>&nbsp;@&nbsp;</font>
3810     * <font style='background-color: #FFE5B4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFE5B4; color: #ffffff'>&nbsp;@&nbsp;</font>
3811     * </pre>
3812     */
3813    public static final SColor PEACH = new SColor(0xFFE5B4, "Peach");
3814
3815    /**
3816     * This color constant "Peach Dye" has RGB code {@code 0xF47983}, red 0.95686275, green 0.4745098, blue 0.5137255, alpha 1, hue 0.9864498, saturation 0.50409836, and value 0.95686275.
3817     * It can be represented as a packed float with the constant {@code -0x1.06f3e8p126F}.
3818     * <pre>
3819     * <font style='background-color: #F47983;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F47983; color: #000000'>&nbsp;@&nbsp;</font>
3820     * <font style='background-color: #F47983;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F47983'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F47983'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F47983'>&nbsp;@&nbsp;</font><font style='background-color: #F47983; color: #888888'>&nbsp;@&nbsp;</font>
3821     * <font style='background-color: #F47983;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F47983; color: #ffffff'>&nbsp;@&nbsp;</font>
3822     * </pre>
3823     */
3824    public static final SColor PEACH_DYE = new SColor(0xF47983, "Peach Dye");
3825
3826    /**
3827     * This color constant "Peach Orange" has RGB code {@code 0xFFCC99}, red 1.0, green 0.8, blue 0.6, alpha 1, hue 0.08333349, saturation 0.39999998, and value 1.0.
3828     * It can be represented as a packed float with the constant {@code -0x1.3399fep126F}.
3829     * <pre>
3830     * <font style='background-color: #FFCC99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFCC99; color: #000000'>&nbsp;@&nbsp;</font>
3831     * <font style='background-color: #FFCC99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFCC99'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFCC99'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFCC99'>&nbsp;@&nbsp;</font><font style='background-color: #FFCC99; color: #888888'>&nbsp;@&nbsp;</font>
3832     * <font style='background-color: #FFCC99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFCC99; color: #ffffff'>&nbsp;@&nbsp;</font>
3833     * </pre>
3834     */
3835    public static final SColor PEACH_ORANGE = new SColor(0xFFCC99, "Peach Orange");
3836
3837    /**
3838     * This color constant "Peach Yellow" has RGB code {@code 0xFADFAD}, red 0.98039216, green 0.8745098, blue 0.6784314, alpha 1, hue 0.10822511, saturation 0.30799997, and value 0.98039216.
3839     * It can be represented as a packed float with the constant {@code -0x1.5bbff4p126F}.
3840     * <pre>
3841     * <font style='background-color: #FADFAD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FADFAD; color: #000000'>&nbsp;@&nbsp;</font>
3842     * <font style='background-color: #FADFAD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FADFAD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FADFAD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FADFAD'>&nbsp;@&nbsp;</font><font style='background-color: #FADFAD; color: #888888'>&nbsp;@&nbsp;</font>
3843     * <font style='background-color: #FADFAD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FADFAD; color: #ffffff'>&nbsp;@&nbsp;</font>
3844     * </pre>
3845     */
3846    public static final SColor PEACH_YELLOW = new SColor(0xFADFAD, "Peach Yellow");
3847
3848    /**
3849     * This color constant "Pear" has RGB code {@code 0xD1E231}, red 0.81960785, green 0.8862745, blue 0.19215687, alpha 1, hue 0.18267429, saturation 0.78318584, and value 0.8862745.
3850     * It can be represented as a packed float with the constant {@code -0x1.63c5a2p125F}.
3851     * <pre>
3852     * <font style='background-color: #D1E231;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D1E231; color: #000000'>&nbsp;@&nbsp;</font>
3853     * <font style='background-color: #D1E231;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D1E231'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D1E231'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D1E231'>&nbsp;@&nbsp;</font><font style='background-color: #D1E231; color: #888888'>&nbsp;@&nbsp;</font>
3854     * <font style='background-color: #D1E231;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D1E231; color: #ffffff'>&nbsp;@&nbsp;</font>
3855     * </pre>
3856     */
3857    public static final SColor PEAR = new SColor(0xD1E231, "Pear");
3858
3859    /**
3860     * This color constant "Periwinkle" has RGB code {@code 0xCCCCFF}, red 0.8, green 0.8, blue 1.0, alpha 1, hue 0.66666675, saturation 0.19999999, and value 1.0.
3861     * It can be represented as a packed float with the constant {@code -0x1.ff9998p126F}.
3862     * <pre>
3863     * <font style='background-color: #CCCCFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CCCCFF; color: #000000'>&nbsp;@&nbsp;</font>
3864     * <font style='background-color: #CCCCFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CCCCFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CCCCFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CCCCFF'>&nbsp;@&nbsp;</font><font style='background-color: #CCCCFF; color: #888888'>&nbsp;@&nbsp;</font>
3865     * <font style='background-color: #CCCCFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CCCCFF; color: #ffffff'>&nbsp;@&nbsp;</font>
3866     * </pre>
3867     */
3868    public static final SColor PERIWINKLE = new SColor(0xCCCCFF, "Periwinkle");
3869
3870    /**
3871     * This color constant "Persian Blue" has RGB code {@code 0x1C39BB}, red 0.10980392, green 0.22352941, blue 0.73333335, alpha 1, hue 0.6362685, saturation 0.8502674, and value 0.73333335.
3872     * It can be represented as a packed float with the constant {@code -0x1.767238p126F}.
3873     * <pre>
3874     * <font style='background-color: #1C39BB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1C39BB; color: #000000'>&nbsp;@&nbsp;</font>
3875     * <font style='background-color: #1C39BB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1C39BB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1C39BB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1C39BB'>&nbsp;@&nbsp;</font><font style='background-color: #1C39BB; color: #888888'>&nbsp;@&nbsp;</font>
3876     * <font style='background-color: #1C39BB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1C39BB; color: #ffffff'>&nbsp;@&nbsp;</font>
3877     * </pre>
3878     */
3879    public static final SColor PERSIAN_BLUE = new SColor(0x1C39BB, "Persian Blue");
3880
3881    /**
3882     * This color constant "Persian Green" has RGB code {@code 0x00A693}, red 0.0, green 0.6509804, blue 0.5764706, alpha 1, hue 0.48092365, saturation 1.0, and value 0.6509804.
3883     * It can be represented as a packed float with the constant {@code -0x1.274cp126F}.
3884     * <pre>
3885     * <font style='background-color: #00A693;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00A693; color: #000000'>&nbsp;@&nbsp;</font>
3886     * <font style='background-color: #00A693;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00A693'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00A693'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00A693'>&nbsp;@&nbsp;</font><font style='background-color: #00A693; color: #888888'>&nbsp;@&nbsp;</font>
3887     * <font style='background-color: #00A693;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00A693; color: #ffffff'>&nbsp;@&nbsp;</font>
3888     * </pre>
3889     */
3890    public static final SColor PERSIAN_GREEN = new SColor(0x00A693, "Persian Green");
3891
3892    /**
3893     * This color constant "Persian Indigo" has RGB code {@code 0x32127A}, red 0.19607843, green 0.07058824, blue 0.47843137, alpha 1, hue 0.7179489, saturation 0.852459, and value 0.47843137.
3894     * It can be represented as a packed float with the constant {@code -0x1.f42464p125F}.
3895     * <pre>
3896     * <font style='background-color: #32127A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #32127A; color: #000000'>&nbsp;@&nbsp;</font>
3897     * <font style='background-color: #32127A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #32127A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #32127A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #32127A'>&nbsp;@&nbsp;</font><font style='background-color: #32127A; color: #888888'>&nbsp;@&nbsp;</font>
3898     * <font style='background-color: #32127A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #32127A; color: #ffffff'>&nbsp;@&nbsp;</font>
3899     * </pre>
3900     */
3901    public static final SColor PERSIAN_INDIGO = new SColor(0x32127A, "Persian Indigo");
3902
3903    /**
3904     * This color constant "Persian Red" has RGB code {@code 0xCC3333}, red 0.8, green 0.2, blue 0.2, alpha 1, hue 0.0, saturation 0.75, and value 0.8.
3905     * It can be represented as a packed float with the constant {@code -0x1.666798p125F}.
3906     * <pre>
3907     * <font style='background-color: #CC3333;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC3333; color: #000000'>&nbsp;@&nbsp;</font>
3908     * <font style='background-color: #CC3333;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CC3333'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CC3333'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CC3333'>&nbsp;@&nbsp;</font><font style='background-color: #CC3333; color: #888888'>&nbsp;@&nbsp;</font>
3909     * <font style='background-color: #CC3333;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC3333; color: #ffffff'>&nbsp;@&nbsp;</font>
3910     * </pre>
3911     */
3912    public static final SColor PERSIAN_RED = new SColor(0xCC3333, "Persian Red");
3913
3914    /**
3915     * This color constant "Persian Pink" has RGB code {@code 0xF77FBE}, red 0.96862745, green 0.49803922, blue 0.74509805, alpha 1, hue 0.91249996, saturation 0.48582995, and value 0.96862745.
3916     * It can be represented as a packed float with the constant {@code -0x1.7cffeep126F}.
3917     * <pre>
3918     * <font style='background-color: #F77FBE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F77FBE; color: #000000'>&nbsp;@&nbsp;</font>
3919     * <font style='background-color: #F77FBE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F77FBE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F77FBE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F77FBE'>&nbsp;@&nbsp;</font><font style='background-color: #F77FBE; color: #888888'>&nbsp;@&nbsp;</font>
3920     * <font style='background-color: #F77FBE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F77FBE; color: #ffffff'>&nbsp;@&nbsp;</font>
3921     * </pre>
3922     */
3923    public static final SColor PERSIAN_PINK = new SColor(0xF77FBE, "Persian Pink");
3924
3925    /**
3926     * This color constant "Persian Rose" has RGB code {@code 0xFE28A2}, red 0.99607843, green 0.15686275, blue 0.63529414, alpha 1, hue 0.9049844, saturation 0.8425197, and value 0.99607843.
3927     * It can be represented as a packed float with the constant {@code -0x1.4451fcp126F}.
3928     * <pre>
3929     * <font style='background-color: #FE28A2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FE28A2; color: #000000'>&nbsp;@&nbsp;</font>
3930     * <font style='background-color: #FE28A2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FE28A2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FE28A2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FE28A2'>&nbsp;@&nbsp;</font><font style='background-color: #FE28A2; color: #888888'>&nbsp;@&nbsp;</font>
3931     * <font style='background-color: #FE28A2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FE28A2; color: #ffffff'>&nbsp;@&nbsp;</font>
3932     * </pre>
3933     */
3934    public static final SColor PERSIAN_ROSE = new SColor(0xFE28A2, "Persian Rose");
3935
3936    /**
3937     * This color constant "Persimmon" has RGB code {@code 0xEC5800}, red 0.9254902, green 0.34509805, blue 0.0, alpha 1, hue 0.06214702, saturation 1.0, and value 0.9254902.
3938     * It can be represented as a packed float with the constant {@code -0x1.00b1d8p125F}.
3939     * <pre>
3940     * <font style='background-color: #EC5800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EC5800; color: #000000'>&nbsp;@&nbsp;</font>
3941     * <font style='background-color: #EC5800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EC5800'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EC5800'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EC5800'>&nbsp;@&nbsp;</font><font style='background-color: #EC5800; color: #888888'>&nbsp;@&nbsp;</font>
3942     * <font style='background-color: #EC5800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EC5800; color: #ffffff'>&nbsp;@&nbsp;</font>
3943     * </pre>
3944     */
3945    public static final SColor PERSIMMON = new SColor(0xEC5800, "Persimmon");
3946
3947    /**
3948     * This color constant "Persimmon Juice" has RGB code {@code 0x934337}, red 0.5764706, green 0.2627451, blue 0.21568628, alpha 1, hue 0.021739244, saturation 0.6258504, and value 0.5764706.
3949     * It can be represented as a packed float with the constant {@code -0x1.6e8726p125F}.
3950     * <pre>
3951     * <font style='background-color: #934337;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #934337; color: #000000'>&nbsp;@&nbsp;</font>
3952     * <font style='background-color: #934337;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #934337'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #934337'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #934337'>&nbsp;@&nbsp;</font><font style='background-color: #934337; color: #888888'>&nbsp;@&nbsp;</font>
3953     * <font style='background-color: #934337;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #934337; color: #ffffff'>&nbsp;@&nbsp;</font>
3954     * </pre>
3955     */
3956    public static final SColor PERSIMMON_JUICE = new SColor(0x934337, "Persimmon Juice");
3957
3958    /**
3959     * This color constant "Pigment Blue" has RGB code {@code 0x333399}, red 0.2, green 0.2, blue 0.6, alpha 1, hue 0.66666687, saturation 0.6666667, and value 0.6.
3960     * It can be represented as a packed float with the constant {@code -0x1.326666p126F}.
3961     * <pre>
3962     * <font style='background-color: #333399;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #333399; color: #000000'>&nbsp;@&nbsp;</font>
3963     * <font style='background-color: #333399;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #333399'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #333399'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #333399'>&nbsp;@&nbsp;</font><font style='background-color: #333399; color: #888888'>&nbsp;@&nbsp;</font>
3964     * <font style='background-color: #333399;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #333399; color: #ffffff'>&nbsp;@&nbsp;</font>
3965     * </pre>
3966     */
3967    public static final SColor PIGMENT_BLUE = new SColor(0x333399, "Pigment Blue");
3968
3969    /**
3970     * This color constant "Pine Green" has RGB code {@code 0x01796F}, red 0.003921569, green 0.4745098, blue 0.43529412, alpha 1, hue 0.48611116, saturation 0.9917355, and value 0.4745098.
3971     * It can be represented as a packed float with the constant {@code -0x1.def202p125F}.
3972     * <pre>
3973     * <font style='background-color: #01796F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #01796F; color: #000000'>&nbsp;@&nbsp;</font>
3974     * <font style='background-color: #01796F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #01796F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #01796F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #01796F'>&nbsp;@&nbsp;</font><font style='background-color: #01796F; color: #888888'>&nbsp;@&nbsp;</font>
3975     * <font style='background-color: #01796F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #01796F; color: #ffffff'>&nbsp;@&nbsp;</font>
3976     * </pre>
3977     */
3978    public static final SColor PINE_GREEN = new SColor(0x01796F, "Pine Green");
3979
3980    /**
3981     * This color constant "Pine Needle" has RGB code {@code 0x454D32}, red 0.27058825, green 0.3019608, blue 0.19607843, alpha 1, hue 0.21604943, saturation 0.35064936, and value 0.3019608.
3982     * It can be represented as a packed float with the constant {@code -0x1.649a8ap125F}.
3983     * <pre>
3984     * <font style='background-color: #454D32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #454D32; color: #000000'>&nbsp;@&nbsp;</font>
3985     * <font style='background-color: #454D32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #454D32'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #454D32'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #454D32'>&nbsp;@&nbsp;</font><font style='background-color: #454D32; color: #888888'>&nbsp;@&nbsp;</font>
3986     * <font style='background-color: #454D32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #454D32; color: #ffffff'>&nbsp;@&nbsp;</font>
3987     * </pre>
3988     */
3989    public static final SColor PINE_NEEDLE = new SColor(0x454D32, "Pine Needle");
3990
3991    /**
3992     * This color constant "Pink" has RGB code {@code 0xFFAFAF}, red 1.0, green 0.6862745, blue 0.6862745, alpha 1, hue 0.0, saturation 0.31372547, and value 1.0.
3993     * It can be represented as a packed float with the constant {@code -0x1.5f5ffep126F}.
3994     * <pre>
3995     * <font style='background-color: #FFAFAF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFAFAF; color: #000000'>&nbsp;@&nbsp;</font>
3996     * <font style='background-color: #FFAFAF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFAFAF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFAFAF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFAFAF'>&nbsp;@&nbsp;</font><font style='background-color: #FFAFAF; color: #888888'>&nbsp;@&nbsp;</font>
3997     * <font style='background-color: #FFAFAF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFAFAF; color: #ffffff'>&nbsp;@&nbsp;</font>
3998     * </pre>
3999     */
4000    public static final SColor PINK = new SColor(0xFFAFAF, "Pink");
4001
4002    /**
4003     * This color constant "Pink Orange" has RGB code {@code 0xFF9966}, red 1.0, green 0.6, blue 0.4, alpha 1, hue 0.055555582, saturation 0.6, and value 1.0.
4004     * It can be represented as a packed float with the constant {@code -0x1.cd33fep125F}.
4005     * <pre>
4006     * <font style='background-color: #FF9966;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF9966; color: #000000'>&nbsp;@&nbsp;</font>
4007     * <font style='background-color: #FF9966;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF9966'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF9966'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF9966'>&nbsp;@&nbsp;</font><font style='background-color: #FF9966; color: #888888'>&nbsp;@&nbsp;</font>
4008     * <font style='background-color: #FF9966;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF9966; color: #ffffff'>&nbsp;@&nbsp;</font>
4009     * </pre>
4010     */
4011    public static final SColor PINK_ORANGE = new SColor(0xFF9966, "Pink Orange");
4012
4013    /**
4014     * This color constant "Plain Mouse" has RGB code {@code 0x6E5F57}, red 0.43137255, green 0.37254903, blue 0.34117648, alpha 1, hue 0.05797112, saturation 0.20909089, and value 0.43137255.
4015     * It can be represented as a packed float with the constant {@code -0x1.aebedcp125F}.
4016     * <pre>
4017     * <font style='background-color: #6E5F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6E5F57; color: #000000'>&nbsp;@&nbsp;</font>
4018     * <font style='background-color: #6E5F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6E5F57'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6E5F57'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6E5F57'>&nbsp;@&nbsp;</font><font style='background-color: #6E5F57; color: #888888'>&nbsp;@&nbsp;</font>
4019     * <font style='background-color: #6E5F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6E5F57; color: #ffffff'>&nbsp;@&nbsp;</font>
4020     * </pre>
4021     */
4022    public static final SColor PLAIN_MOUSE = new SColor(0x6E5F57, "Plain Mouse");
4023
4024    /**
4025     * This color constant "Platinum" has RGB code {@code 0xE5E4E2}, red 0.8980392, green 0.89411765, blue 0.8862745, alpha 1, hue 0.111111164, saturation 0.013100436, and value 0.8980392.
4026     * It can be represented as a packed float with the constant {@code -0x1.c5c9cap126F}.
4027     * <pre>
4028     * <font style='background-color: #E5E4E2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E5E4E2; color: #000000'>&nbsp;@&nbsp;</font>
4029     * <font style='background-color: #E5E4E2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E5E4E2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E5E4E2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E5E4E2'>&nbsp;@&nbsp;</font><font style='background-color: #E5E4E2; color: #888888'>&nbsp;@&nbsp;</font>
4030     * <font style='background-color: #E5E4E2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E5E4E2; color: #ffffff'>&nbsp;@&nbsp;</font>
4031     * </pre>
4032     */
4033    public static final SColor PLATINUM = new SColor(0xE5E4E2, "Platinum");
4034
4035    /**
4036     * This color constant "Plum" has RGB code {@code 0xCC99CC}, red 0.8, green 0.6, blue 0.8, alpha 1, hue 0.8333333, saturation 0.24999999, and value 0.8.
4037     * It can be represented as a packed float with the constant {@code -0x1.993398p126F}.
4038     * <pre>
4039     * <font style='background-color: #CC99CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC99CC; color: #000000'>&nbsp;@&nbsp;</font>
4040     * <font style='background-color: #CC99CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CC99CC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CC99CC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CC99CC'>&nbsp;@&nbsp;</font><font style='background-color: #CC99CC; color: #888888'>&nbsp;@&nbsp;</font>
4041     * <font style='background-color: #CC99CC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC99CC; color: #ffffff'>&nbsp;@&nbsp;</font>
4042     * </pre>
4043     */
4044    public static final SColor PLUM = new SColor(0xCC99CC, "Plum");
4045
4046    /**
4047     * This color constant "Plum Blossom Mouse" has RGB code {@code 0x97645A}, red 0.5921569, green 0.39215687, blue 0.3529412, alpha 1, hue 0.027322412, saturation 0.40397352, and value 0.5921569.
4048     * It can be represented as a packed float with the constant {@code -0x1.b4c92ep125F}.
4049     * <pre>
4050     * <font style='background-color: #97645A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #97645A; color: #000000'>&nbsp;@&nbsp;</font>
4051     * <font style='background-color: #97645A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #97645A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #97645A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #97645A'>&nbsp;@&nbsp;</font><font style='background-color: #97645A; color: #888888'>&nbsp;@&nbsp;</font>
4052     * <font style='background-color: #97645A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #97645A; color: #ffffff'>&nbsp;@&nbsp;</font>
4053     * </pre>
4054     */
4055    public static final SColor PLUM_BLOSSOM_MOUSE = new SColor(0x97645A, "Plum Blossom Mouse");
4056
4057    /**
4058     * This color constant "Plum Dyed" has RGB code {@code 0xFA9258}, red 0.98039216, green 0.57254905, blue 0.34509805, alpha 1, hue 0.059670925, saturation 0.64799994, and value 0.98039216.
4059     * It can be represented as a packed float with the constant {@code -0x1.b125f4p125F}.
4060     * <pre>
4061     * <font style='background-color: #FA9258;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FA9258; color: #000000'>&nbsp;@&nbsp;</font>
4062     * <font style='background-color: #FA9258;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FA9258'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FA9258'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FA9258'>&nbsp;@&nbsp;</font><font style='background-color: #FA9258; color: #888888'>&nbsp;@&nbsp;</font>
4063     * <font style='background-color: #FA9258;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FA9258; color: #ffffff'>&nbsp;@&nbsp;</font>
4064     * </pre>
4065     */
4066    public static final SColor PLUM_DYED = new SColor(0xFA9258, "Plum Dyed");
4067
4068    /**
4069     * This color constant "Plum Purple" has RGB code {@code 0x8F4155}, red 0.56078434, green 0.25490198, blue 0.33333334, alpha 1, hue 0.957265, saturation 0.54545456, and value 0.56078434.
4070     * It can be represented as a packed float with the constant {@code -0x1.aa831ep125F}.
4071     * <pre>
4072     * <font style='background-color: #8F4155;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F4155; color: #000000'>&nbsp;@&nbsp;</font>
4073     * <font style='background-color: #8F4155;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8F4155'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8F4155'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8F4155'>&nbsp;@&nbsp;</font><font style='background-color: #8F4155; color: #888888'>&nbsp;@&nbsp;</font>
4074     * <font style='background-color: #8F4155;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F4155; color: #ffffff'>&nbsp;@&nbsp;</font>
4075     * </pre>
4076     */
4077    public static final SColor PLUM_PURPLE = new SColor(0x8F4155, "Plum Purple");
4078
4079    /**
4080     * This color constant "Polished Brown" has RGB code {@code 0x9F5233}, red 0.62352943, green 0.32156864, blue 0.2, alpha 1, hue 0.047839403, saturation 0.6792453, and value 0.62352943.
4081     * It can be represented as a packed float with the constant {@code -0x1.66a53ep125F}.
4082     * <pre>
4083     * <font style='background-color: #9F5233;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9F5233; color: #000000'>&nbsp;@&nbsp;</font>
4084     * <font style='background-color: #9F5233;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9F5233'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9F5233'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9F5233'>&nbsp;@&nbsp;</font><font style='background-color: #9F5233; color: #888888'>&nbsp;@&nbsp;</font>
4085     * <font style='background-color: #9F5233;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9F5233; color: #ffffff'>&nbsp;@&nbsp;</font>
4086     * </pre>
4087     */
4088    public static final SColor POLISHED_BROWN = new SColor(0x9F5233, "Polished Brown");
4089
4090    /**
4091     * This color constant "Powder Blue" has RGB code {@code 0xB0E0E6}, red 0.6901961, green 0.8784314, blue 0.9019608, alpha 1, hue 0.51851845, saturation 0.23478259, and value 0.9019608.
4092     * It can be represented as a packed float with the constant {@code -0x1.cdc16p126F}.
4093     * <pre>
4094     * <font style='background-color: #B0E0E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B0E0E6; color: #000000'>&nbsp;@&nbsp;</font>
4095     * <font style='background-color: #B0E0E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B0E0E6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B0E0E6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B0E0E6'>&nbsp;@&nbsp;</font><font style='background-color: #B0E0E6; color: #888888'>&nbsp;@&nbsp;</font>
4096     * <font style='background-color: #B0E0E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B0E0E6; color: #ffffff'>&nbsp;@&nbsp;</font>
4097     * </pre>
4098     */
4099    public static final SColor POWDER_BLUE = new SColor(0xB0E0E6, "Powder Blue");
4100
4101    /**
4102     * This color constant "Prussian Blue" has RGB code {@code 0x003153}, red 0.0, green 0.19215687, blue 0.3254902, alpha 1, hue 0.5682732, saturation 1.0, and value 0.3254902.
4103     * It can be represented as a packed float with the constant {@code -0x1.a662p125F}.
4104     * <pre>
4105     * <font style='background-color: #003153;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #003153; color: #000000'>&nbsp;@&nbsp;</font>
4106     * <font style='background-color: #003153;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #003153'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #003153'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #003153'>&nbsp;@&nbsp;</font><font style='background-color: #003153; color: #888888'>&nbsp;@&nbsp;</font>
4107     * <font style='background-color: #003153;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #003153; color: #ffffff'>&nbsp;@&nbsp;</font>
4108     * </pre>
4109     */
4110    public static final SColor PRUSSIAN_BLUE = new SColor(0x003153, "Prussian Blue");
4111
4112    /**
4113     * This color constant "Psychedelic Purple" has RGB code {@code 0xDD00FF}, red 0.8666667, green 0.0, blue 1.0, alpha 1, hue 0.8111112, saturation 1.0, and value 1.0.
4114     * It can be represented as a packed float with the constant {@code -0x1.fe01bap126F}.
4115     * <pre>
4116     * <font style='background-color: #DD00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DD00FF; color: #000000'>&nbsp;@&nbsp;</font>
4117     * <font style='background-color: #DD00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DD00FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DD00FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DD00FF'>&nbsp;@&nbsp;</font><font style='background-color: #DD00FF; color: #888888'>&nbsp;@&nbsp;</font>
4118     * <font style='background-color: #DD00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DD00FF; color: #ffffff'>&nbsp;@&nbsp;</font>
4119     * </pre>
4120     */
4121    public static final SColor PSYCHEDELIC_PURPLE = new SColor(0xDD00FF, "Psychedelic Purple");
4122
4123    /**
4124     * This color constant "Puce" has RGB code {@code 0xCC8899}, red 0.8, green 0.53333336, blue 0.6, alpha 1, hue 0.9583333, saturation 0.3333333, and value 0.8.
4125     * It can be represented as a packed float with the constant {@code -0x1.331198p126F}.
4126     * <pre>
4127     * <font style='background-color: #CC8899;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC8899; color: #000000'>&nbsp;@&nbsp;</font>
4128     * <font style='background-color: #CC8899;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CC8899'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CC8899'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CC8899'>&nbsp;@&nbsp;</font><font style='background-color: #CC8899; color: #888888'>&nbsp;@&nbsp;</font>
4129     * <font style='background-color: #CC8899;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC8899; color: #ffffff'>&nbsp;@&nbsp;</font>
4130     * </pre>
4131     */
4132    public static final SColor PUCE = new SColor(0xCC8899, "Puce");
4133
4134    /**
4135     * This color constant "Pumpkin" has RGB code {@code 0xFF7518}, red 1.0, green 0.45882353, blue 0.09411765, alpha 1, hue 0.06709957, saturation 0.90588236, and value 1.0.
4136     * It can be represented as a packed float with the constant {@code -0x1.30ebfep125F}.
4137     * <pre>
4138     * <font style='background-color: #FF7518;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF7518; color: #000000'>&nbsp;@&nbsp;</font>
4139     * <font style='background-color: #FF7518;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF7518'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF7518'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF7518'>&nbsp;@&nbsp;</font><font style='background-color: #FF7518; color: #888888'>&nbsp;@&nbsp;</font>
4140     * <font style='background-color: #FF7518;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF7518; color: #ffffff'>&nbsp;@&nbsp;</font>
4141     * </pre>
4142     */
4143    public static final SColor PUMPKIN = new SColor(0xFF7518, "Pumpkin");
4144
4145    /**
4146     * This color constant "Pure Crimson" has RGB code {@code 0xC3272B}, red 0.7647059, green 0.15294118, blue 0.16862746, alpha 1, hue 0.99572647, saturation 0.8, and value 0.7647059.
4147     * It can be represented as a packed float with the constant {@code -0x1.564f86p125F}.
4148     * <pre>
4149     * <font style='background-color: #C3272B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C3272B; color: #000000'>&nbsp;@&nbsp;</font>
4150     * <font style='background-color: #C3272B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C3272B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C3272B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C3272B'>&nbsp;@&nbsp;</font><font style='background-color: #C3272B; color: #888888'>&nbsp;@&nbsp;</font>
4151     * <font style='background-color: #C3272B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C3272B; color: #ffffff'>&nbsp;@&nbsp;</font>
4152     * </pre>
4153     */
4154    public static final SColor PURE_CRIMSON = new SColor(0xC3272B, "Pure Crimson");
4155
4156    /**
4157     * This color constant "Pure Dark Gray" has RGB code {@code 0x3F4041}, red 0.24705882, green 0.2509804, blue 0.25490198, alpha 1, hue 0.5833334, saturation 0.030769285, and value 0.25490198.
4158     * It can be represented as a packed float with the constant {@code -0x1.82807ep125F}.
4159     * <pre>
4160     * <font style='background-color: #3F4041;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3F4041; color: #000000'>&nbsp;@&nbsp;</font>
4161     * <font style='background-color: #3F4041;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3F4041'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3F4041'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3F4041'>&nbsp;@&nbsp;</font><font style='background-color: #3F4041; color: #888888'>&nbsp;@&nbsp;</font>
4162     * <font style='background-color: #3F4041;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3F4041; color: #ffffff'>&nbsp;@&nbsp;</font>
4163     * </pre>
4164     */
4165    public static final SColor PURE_DARK_GRAY = new SColor(0x3F4041, "Pure Dark Gray");
4166
4167    /**
4168     * This color constant "Purple" has RGB code {@code 0x800080}, red 0.5019608, green 0.0, blue 0.5019608, alpha 1, hue 0.8333334, saturation 1.0, and value 0.5019608.
4169     * It can be represented as a packed float with the constant {@code -0x1.0001p126F}.
4170     * <pre>
4171     * <font style='background-color: #800080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #800080; color: #000000'>&nbsp;@&nbsp;</font>
4172     * <font style='background-color: #800080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #800080'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #800080'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #800080'>&nbsp;@&nbsp;</font><font style='background-color: #800080; color: #888888'>&nbsp;@&nbsp;</font>
4173     * <font style='background-color: #800080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #800080; color: #ffffff'>&nbsp;@&nbsp;</font>
4174     * </pre>
4175     */
4176    public static final SColor PURPLE = new SColor(0x800080, "Purple");
4177
4178    /**
4179     * This color constant "Purple Dye" has RGB code {@code 0x4F284B}, red 0.30980393, green 0.15686275, blue 0.29411766, alpha 1, hue 0.8504274, saturation 0.49367088, and value 0.30980393.
4180     * It can be represented as a packed float with the constant {@code -0x1.96509ep125F}.
4181     * <pre>
4182     * <font style='background-color: #4F284B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4F284B; color: #000000'>&nbsp;@&nbsp;</font>
4183     * <font style='background-color: #4F284B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4F284B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4F284B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4F284B'>&nbsp;@&nbsp;</font><font style='background-color: #4F284B; color: #888888'>&nbsp;@&nbsp;</font>
4184     * <font style='background-color: #4F284B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4F284B; color: #ffffff'>&nbsp;@&nbsp;</font>
4185     * </pre>
4186     */
4187    public static final SColor PURPLE_DYE = new SColor(0x4F284B, "Purple Dye");
4188
4189    /**
4190     * This color constant "Purple Kite" has RGB code {@code 0x512C31}, red 0.31764707, green 0.17254902, blue 0.19215687, alpha 1, hue 0.97747743, saturation 0.45679012, and value 0.31764707.
4191     * It can be represented as a packed float with the constant {@code -0x1.6258a2p125F}.
4192     * <pre>
4193     * <font style='background-color: #512C31;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #512C31; color: #000000'>&nbsp;@&nbsp;</font>
4194     * <font style='background-color: #512C31;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #512C31'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #512C31'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #512C31'>&nbsp;@&nbsp;</font><font style='background-color: #512C31; color: #888888'>&nbsp;@&nbsp;</font>
4195     * <font style='background-color: #512C31;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #512C31; color: #ffffff'>&nbsp;@&nbsp;</font>
4196     * </pre>
4197     */
4198    public static final SColor PURPLE_KITE = new SColor(0x512C31, "Purple Kite");
4199
4200    /**
4201     * This color constant "Purple Taupe" has RGB code {@code 0x50404D}, red 0.3137255, green 0.2509804, blue 0.3019608, alpha 1, hue 0.8645833, saturation 0.19999999, and value 0.3137255.
4202     * It can be represented as a packed float with the constant {@code -0x1.9a80ap125F}.
4203     * <pre>
4204     * <font style='background-color: #50404D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #50404D; color: #000000'>&nbsp;@&nbsp;</font>
4205     * <font style='background-color: #50404D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #50404D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #50404D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #50404D'>&nbsp;@&nbsp;</font><font style='background-color: #50404D; color: #888888'>&nbsp;@&nbsp;</font>
4206     * <font style='background-color: #50404D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #50404D; color: #ffffff'>&nbsp;@&nbsp;</font>
4207     * </pre>
4208     */
4209    public static final SColor PURPLE_TAUPE = new SColor(0x50404D, "Purple Taupe");
4210
4211    /**
4212     * This color constant "Rabbit Ear Iris" has RGB code {@code 0x491E3C}, red 0.28627452, green 0.11764706, blue 0.23529412, alpha 1, hue 0.88372093, saturation 0.5890411, and value 0.28627452.
4213     * It can be represented as a packed float with the constant {@code -0x1.783c92p125F}.
4214     * <pre>
4215     * <font style='background-color: #491E3C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #491E3C; color: #000000'>&nbsp;@&nbsp;</font>
4216     * <font style='background-color: #491E3C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #491E3C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #491E3C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #491E3C'>&nbsp;@&nbsp;</font><font style='background-color: #491E3C; color: #888888'>&nbsp;@&nbsp;</font>
4217     * <font style='background-color: #491E3C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #491E3C; color: #ffffff'>&nbsp;@&nbsp;</font>
4218     * </pre>
4219     */
4220    public static final SColor RABBIT_EAR_IRIS = new SColor(0x491E3C, "Rabbit Ear Iris");
4221
4222    /**
4223     * This color constant "Rapeblossom Brown" has RGB code {@code 0xE3B130}, red 0.8901961, green 0.69411767, blue 0.1882353, alpha 1, hue 0.120111704, saturation 0.78854626, and value 0.8901961.
4224     * It can be represented as a packed float with the constant {@code -0x1.6163c6p125F}.
4225     * <pre>
4226     * <font style='background-color: #E3B130;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E3B130; color: #000000'>&nbsp;@&nbsp;</font>
4227     * <font style='background-color: #E3B130;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E3B130'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E3B130'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E3B130'>&nbsp;@&nbsp;</font><font style='background-color: #E3B130; color: #888888'>&nbsp;@&nbsp;</font>
4228     * <font style='background-color: #E3B130;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E3B130; color: #ffffff'>&nbsp;@&nbsp;</font>
4229     * </pre>
4230     */
4231    public static final SColor RAPEBLOSSOM_BROWN = new SColor(0xE3B130, "Rapeblossom Brown");
4232
4233    /**
4234     * This color constant "Rapeseed Oil" has RGB code {@code 0xA17917}, red 0.6313726, green 0.4745098, blue 0.09019608, alpha 1, hue 0.11835742, saturation 0.85714287, and value 0.6313726.
4235     * It can be represented as a packed float with the constant {@code -0x1.2ef342p125F}.
4236     * <pre>
4237     * <font style='background-color: #A17917;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A17917; color: #000000'>&nbsp;@&nbsp;</font>
4238     * <font style='background-color: #A17917;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A17917'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A17917'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A17917'>&nbsp;@&nbsp;</font><font style='background-color: #A17917; color: #888888'>&nbsp;@&nbsp;</font>
4239     * <font style='background-color: #A17917;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A17917; color: #ffffff'>&nbsp;@&nbsp;</font>
4240     * </pre>
4241     */
4242    public static final SColor RAPESEED_OIL = new SColor(0xA17917, "Rapeseed Oil");
4243
4244    /**
4245     * This color constant "Raw Umber" has RGB code {@code 0x734A12}, red 0.4509804, green 0.2901961, blue 0.07058824, alpha 1, hue 0.09622002, saturation 0.84347826, and value 0.4509804.
4246     * It can be represented as a packed float with the constant {@code -0x1.2494e6p125F}.
4247     * <pre>
4248     * <font style='background-color: #734A12;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #734A12; color: #000000'>&nbsp;@&nbsp;</font>
4249     * <font style='background-color: #734A12;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #734A12'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #734A12'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #734A12'>&nbsp;@&nbsp;</font><font style='background-color: #734A12; color: #888888'>&nbsp;@&nbsp;</font>
4250     * <font style='background-color: #734A12;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #734A12; color: #ffffff'>&nbsp;@&nbsp;</font>
4251     * </pre>
4252     */
4253    public static final SColor RAW_UMBER = new SColor(0x734A12, "Raw Umber");
4254
4255    /**
4256     * This color constant "Razzamatazz" has RGB code {@code 0xE30B5C}, red 0.8901961, green 0.043137256, blue 0.36078432, alpha 1, hue 0.93750006, saturation 0.95154184, and value 0.8901961.
4257     * It can be represented as a packed float with the constant {@code -0x1.b817c6p125F}.
4258     * <pre>
4259     * <font style='background-color: #E30B5C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E30B5C; color: #000000'>&nbsp;@&nbsp;</font>
4260     * <font style='background-color: #E30B5C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E30B5C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E30B5C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E30B5C'>&nbsp;@&nbsp;</font><font style='background-color: #E30B5C; color: #888888'>&nbsp;@&nbsp;</font>
4261     * <font style='background-color: #E30B5C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E30B5C; color: #ffffff'>&nbsp;@&nbsp;</font>
4262     * </pre>
4263     */
4264    public static final SColor RAZZMATAZZ = new SColor(0xE30B5C, "Razzamatazz");
4265
4266    /**
4267     * This color constant "Red" has RGB code {@code 0xFF0000}, red 1.0, green 0.0, blue 0.0, alpha 1, hue 0.0, saturation 1.0, and value 1.0.
4268     * It can be represented as a packed float with the constant {@code -0x1.0001fep125F}.
4269     * <pre>
4270     * <font style='background-color: #FF0000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF0000; color: #000000'>&nbsp;@&nbsp;</font>
4271     * <font style='background-color: #FF0000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF0000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF0000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF0000'>&nbsp;@&nbsp;</font><font style='background-color: #FF0000; color: #888888'>&nbsp;@&nbsp;</font>
4272     * <font style='background-color: #FF0000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF0000; color: #ffffff'>&nbsp;@&nbsp;</font>
4273     * </pre>
4274     */
4275    public static final SColor RED = new SColor(0xFF0000, "Red");
4276
4277    /**
4278     * This color constant "Red Bean" has RGB code {@code 0x672422}, red 0.40392157, green 0.14117648, blue 0.13333334, alpha 1, hue 0.0048310757, saturation 0.66990286, and value 0.40392157.
4279     * It can be represented as a packed float with the constant {@code -0x1.4448cep125F}.
4280     * <pre>
4281     * <font style='background-color: #672422;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #672422; color: #000000'>&nbsp;@&nbsp;</font>
4282     * <font style='background-color: #672422;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #672422'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #672422'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #672422'>&nbsp;@&nbsp;</font><font style='background-color: #672422; color: #888888'>&nbsp;@&nbsp;</font>
4283     * <font style='background-color: #672422;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #672422; color: #ffffff'>&nbsp;@&nbsp;</font>
4284     * </pre>
4285     */
4286    public static final SColor RED_BEAN = new SColor(0x672422, "Red Bean");
4287
4288    /**
4289     * This color constant "Red Birch" has RGB code {@code 0x9D2B22}, red 0.6156863, green 0.16862746, blue 0.13333334, alpha 1, hue 0.01219511, saturation 0.7834395, and value 0.6156863.
4290     * It can be represented as a packed float with the constant {@code -0x1.44573ap125F}.
4291     * <pre>
4292     * <font style='background-color: #9D2B22;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9D2B22; color: #000000'>&nbsp;@&nbsp;</font>
4293     * <font style='background-color: #9D2B22;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9D2B22'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9D2B22'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9D2B22'>&nbsp;@&nbsp;</font><font style='background-color: #9D2B22; color: #888888'>&nbsp;@&nbsp;</font>
4294     * <font style='background-color: #9D2B22;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9D2B22; color: #ffffff'>&nbsp;@&nbsp;</font>
4295     * </pre>
4296     */
4297    public static final SColor RED_BIRCH = new SColor(0x9D2B22, "Red Birch");
4298
4299    /**
4300     * This color constant "Red Incense" has RGB code {@code 0xF07F5E}, red 0.9411765, green 0.49803922, blue 0.36862746, alpha 1, hue 0.037671328, saturation 0.6083333, and value 0.9411765.
4301     * It can be represented as a packed float with the constant {@code -0x1.bcffep125F}.
4302     * <pre>
4303     * <font style='background-color: #F07F5E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F07F5E; color: #000000'>&nbsp;@&nbsp;</font>
4304     * <font style='background-color: #F07F5E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F07F5E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F07F5E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F07F5E'>&nbsp;@&nbsp;</font><font style='background-color: #F07F5E; color: #888888'>&nbsp;@&nbsp;</font>
4305     * <font style='background-color: #F07F5E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F07F5E; color: #ffffff'>&nbsp;@&nbsp;</font>
4306     * </pre>
4307     */
4308    public static final SColor RED_INCENSE = new SColor(0xF07F5E, "Red Incense");
4309
4310    /**
4311     * This color constant "Red Dye Turmeric" has RGB code {@code 0xFB8136}, red 0.9843137, green 0.5058824, blue 0.21176471, alpha 1, hue 0.063451886, saturation 0.78486055, and value 0.9843137.
4312     * It can be represented as a packed float with the constant {@code -0x1.6d03f6p125F}.
4313     * <pre>
4314     * <font style='background-color: #FB8136;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FB8136; color: #000000'>&nbsp;@&nbsp;</font>
4315     * <font style='background-color: #FB8136;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FB8136'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FB8136'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FB8136'>&nbsp;@&nbsp;</font><font style='background-color: #FB8136; color: #888888'>&nbsp;@&nbsp;</font>
4316     * <font style='background-color: #FB8136;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FB8136; color: #ffffff'>&nbsp;@&nbsp;</font>
4317     * </pre>
4318     */
4319    public static final SColor RED_DYE_TURMERIC = new SColor(0xFB8136, "Red Dye Turmeric");
4320
4321    /**
4322     * This color constant "Red Kite" has RGB code {@code 0x913228}, red 0.5686275, green 0.19607843, blue 0.15686275, alpha 1, hue 0.015872955, saturation 0.72413796, and value 0.5686275.
4323     * It can be represented as a packed float with the constant {@code -0x1.506522p125F}.
4324     * <pre>
4325     * <font style='background-color: #913228;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #913228; color: #000000'>&nbsp;@&nbsp;</font>
4326     * <font style='background-color: #913228;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #913228'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #913228'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #913228'>&nbsp;@&nbsp;</font><font style='background-color: #913228; color: #888888'>&nbsp;@&nbsp;</font>
4327     * <font style='background-color: #913228;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #913228; color: #ffffff'>&nbsp;@&nbsp;</font>
4328     * </pre>
4329     */
4330    public static final SColor RED_KITE = new SColor(0x913228, "Red Kite");
4331
4332    /**
4333     * This color constant "Red Ochre" has RGB code {@code 0x9F5233}, red 0.62352943, green 0.32156864, blue 0.2, alpha 1, hue 0.047839403, saturation 0.6792453, and value 0.62352943.
4334     * It can be represented as a packed float with the constant {@code -0x1.66a53ep125F}.
4335     * <pre>
4336     * <font style='background-color: #9F5233;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9F5233; color: #000000'>&nbsp;@&nbsp;</font>
4337     * <font style='background-color: #9F5233;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9F5233'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9F5233'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9F5233'>&nbsp;@&nbsp;</font><font style='background-color: #9F5233; color: #888888'>&nbsp;@&nbsp;</font>
4338     * <font style='background-color: #9F5233;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9F5233; color: #ffffff'>&nbsp;@&nbsp;</font>
4339     * </pre>
4340     */
4341    public static final SColor RED_OCHRE = new SColor(0x9F5233, "Red Ochre");
4342
4343    /**
4344     * This color constant "Red Pigment" has RGB code {@code 0xED1C24}, red 0.92941177, green 0.10980392, blue 0.14117648, alpha 1, hue 0.99362046, saturation 0.88185656, and value 0.92941177.
4345     * It can be represented as a packed float with the constant {@code -0x1.4839dap125F}.
4346     * <pre>
4347     * <font style='background-color: #ED1C24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ED1C24; color: #000000'>&nbsp;@&nbsp;</font>
4348     * <font style='background-color: #ED1C24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ED1C24'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ED1C24'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ED1C24'>&nbsp;@&nbsp;</font><font style='background-color: #ED1C24; color: #888888'>&nbsp;@&nbsp;</font>
4349     * <font style='background-color: #ED1C24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ED1C24; color: #ffffff'>&nbsp;@&nbsp;</font>
4350     * </pre>
4351     */
4352    public static final SColor RED_PIGMENT = new SColor(0xED1C24, "Red Pigment");
4353
4354    /**
4355     * This color constant "Red Plum" has RGB code {@code 0xDB5A6B}, red 0.85882354, green 0.3529412, blue 0.41960785, alpha 1, hue 0.9780363, saturation 0.5890411, and value 0.85882354.
4356     * It can be represented as a packed float with the constant {@code -0x1.d6b5b6p125F}.
4357     * <pre>
4358     * <font style='background-color: #DB5A6B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DB5A6B; color: #000000'>&nbsp;@&nbsp;</font>
4359     * <font style='background-color: #DB5A6B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DB5A6B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DB5A6B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DB5A6B'>&nbsp;@&nbsp;</font><font style='background-color: #DB5A6B; color: #888888'>&nbsp;@&nbsp;</font>
4360     * <font style='background-color: #DB5A6B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DB5A6B; color: #ffffff'>&nbsp;@&nbsp;</font>
4361     * </pre>
4362     */
4363    public static final SColor RED_PLUM = new SColor(0xDB5A6B, "Red Plum");
4364
4365    /**
4366     * This color constant "Red Violet" has RGB code {@code 0xC71585}, red 0.78039217, green 0.08235294, blue 0.52156866, alpha 1, hue 0.8951311, saturation 0.89447236, and value 0.78039217.
4367     * It can be represented as a packed float with the constant {@code -0x1.0a2b8ep126F}.
4368     * <pre>
4369     * <font style='background-color: #C71585;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C71585; color: #000000'>&nbsp;@&nbsp;</font>
4370     * <font style='background-color: #C71585;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C71585'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C71585'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C71585'>&nbsp;@&nbsp;</font><font style='background-color: #C71585; color: #888888'>&nbsp;@&nbsp;</font>
4371     * <font style='background-color: #C71585;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C71585; color: #ffffff'>&nbsp;@&nbsp;</font>
4372     * </pre>
4373     */
4374    public static final SColor RED_VIOLET = new SColor(0xC71585, "Red Violet");
4375
4376    /**
4377     * This color constant "Red Wisteria" has RGB code {@code 0xBB7796}, red 0.73333335, green 0.46666667, blue 0.5882353, alpha 1, hue 0.9240197, saturation 0.36363637, and value 0.73333335.
4378     * It can be represented as a packed float with the constant {@code -0x1.2cef76p126F}.
4379     * <pre>
4380     * <font style='background-color: #BB7796;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BB7796; color: #000000'>&nbsp;@&nbsp;</font>
4381     * <font style='background-color: #BB7796;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BB7796'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BB7796'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BB7796'>&nbsp;@&nbsp;</font><font style='background-color: #BB7796; color: #888888'>&nbsp;@&nbsp;</font>
4382     * <font style='background-color: #BB7796;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BB7796; color: #ffffff'>&nbsp;@&nbsp;</font>
4383     * </pre>
4384     */
4385    public static final SColor RED_WISTERIA = new SColor(0xBB7796, "Red Wisteria");
4386
4387    /**
4388     * This color constant "Rich Carmine" has RGB code {@code 0xD70040}, red 0.84313726, green 0.0, blue 0.2509804, alpha 1, hue 0.95038754, saturation 1.0, and value 0.84313726.
4389     * It can be represented as a packed float with the constant {@code -0x1.8001aep125F}.
4390     * <pre>
4391     * <font style='background-color: #D70040;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D70040; color: #000000'>&nbsp;@&nbsp;</font>
4392     * <font style='background-color: #D70040;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D70040'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D70040'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D70040'>&nbsp;@&nbsp;</font><font style='background-color: #D70040; color: #888888'>&nbsp;@&nbsp;</font>
4393     * <font style='background-color: #D70040;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D70040; color: #ffffff'>&nbsp;@&nbsp;</font>
4394     * </pre>
4395     */
4396    public static final SColor RICH_CARMINE = new SColor(0xD70040, "Rich Carmine");
4397
4398    /**
4399     * This color constant "Rich Gardenia" has RGB code {@code 0xF57F4F}, red 0.9607843, green 0.49803922, blue 0.30980393, alpha 1, hue 0.04819286, saturation 0.677551, and value 0.9607843.
4400     * It can be represented as a packed float with the constant {@code -0x1.9effeap125F}.
4401     * <pre>
4402     * <font style='background-color: #F57F4F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F57F4F; color: #000000'>&nbsp;@&nbsp;</font>
4403     * <font style='background-color: #F57F4F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F57F4F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F57F4F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F57F4F'>&nbsp;@&nbsp;</font><font style='background-color: #F57F4F; color: #888888'>&nbsp;@&nbsp;</font>
4404     * <font style='background-color: #F57F4F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F57F4F; color: #ffffff'>&nbsp;@&nbsp;</font>
4405     * </pre>
4406     */
4407    public static final SColor RICH_GARDENIA = new SColor(0xF57F4F, "Rich Gardenia");
4408
4409    /**
4410     * This color constant "Rinsed Out Red" has RGB code {@code 0xFF7952}, red 1.0, green 0.4745098, blue 0.32156864, alpha 1, hue 0.037572145, saturation 0.6784314, and value 1.0.
4411     * It can be represented as a packed float with the constant {@code -0x1.a4f3fep125F}.
4412     * <pre>
4413     * <font style='background-color: #FF7952;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF7952; color: #000000'>&nbsp;@&nbsp;</font>
4414     * <font style='background-color: #FF7952;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF7952'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF7952'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF7952'>&nbsp;@&nbsp;</font><font style='background-color: #FF7952; color: #888888'>&nbsp;@&nbsp;</font>
4415     * <font style='background-color: #FF7952;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF7952; color: #ffffff'>&nbsp;@&nbsp;</font>
4416     * </pre>
4417     */
4418    public static final SColor RINSED_OUT_RED = new SColor(0xFF7952, "Rinsed Out Red");
4419
4420    /**
4421     * This color constant "Rikan Brown" has RGB code {@code 0x534A32}, red 0.3254902, green 0.2901961, blue 0.19607843, alpha 1, hue 0.121212006, saturation 0.39759037, and value 0.3254902.
4422     * It can be represented as a packed float with the constant {@code -0x1.6494a6p125F}.
4423     * <pre>
4424     * <font style='background-color: #534A32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #534A32; color: #000000'>&nbsp;@&nbsp;</font>
4425     * <font style='background-color: #534A32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #534A32'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #534A32'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #534A32'>&nbsp;@&nbsp;</font><font style='background-color: #534A32; color: #888888'>&nbsp;@&nbsp;</font>
4426     * <font style='background-color: #534A32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #534A32; color: #ffffff'>&nbsp;@&nbsp;</font>
4427     * </pre>
4428     */
4429    public static final SColor RIKAN_BROWN = new SColor(0x534A32, "Rikan Brown");
4430
4431    /**
4432     * This color constant "Robin Egg Blue" has RGB code {@code 0x00CCCC}, red 0.0, green 0.8, blue 0.8, alpha 1, hue 0.5, saturation 1.0, and value 0.8.
4433     * It can be represented as a packed float with the constant {@code -0x1.9998p126F}.
4434     * <pre>
4435     * <font style='background-color: #00CCCC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00CCCC; color: #000000'>&nbsp;@&nbsp;</font>
4436     * <font style='background-color: #00CCCC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00CCCC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00CCCC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00CCCC'>&nbsp;@&nbsp;</font><font style='background-color: #00CCCC; color: #888888'>&nbsp;@&nbsp;</font>
4437     * <font style='background-color: #00CCCC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00CCCC; color: #ffffff'>&nbsp;@&nbsp;</font>
4438     * </pre>
4439     */
4440    public static final SColor ROBIN_EGG_BLUE = new SColor(0x00CCCC, "Robin Egg Blue");
4441
4442    /**
4443     * This color constant "Rose" has RGB code {@code 0xFF007F}, red 1.0, green 0.0, blue 0.49803922, alpha 1, hue 0.91699344, saturation 1.0, and value 1.0.
4444     * It can be represented as a packed float with the constant {@code -0x1.fe01fep125F}.
4445     * <pre>
4446     * <font style='background-color: #FF007F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF007F; color: #000000'>&nbsp;@&nbsp;</font>
4447     * <font style='background-color: #FF007F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF007F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF007F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF007F'>&nbsp;@&nbsp;</font><font style='background-color: #FF007F; color: #888888'>&nbsp;@&nbsp;</font>
4448     * <font style='background-color: #FF007F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF007F; color: #ffffff'>&nbsp;@&nbsp;</font>
4449     * </pre>
4450     */
4451    public static final SColor ROSE = new SColor(0xFF007F, "Rose");
4452
4453    /**
4454     * This color constant "Rose Madder" has RGB code {@code 0xE32636}, red 0.8901961, green 0.14901961, blue 0.21176471, alpha 1, hue 0.98589075, saturation 0.8325991, and value 0.8901961.
4455     * It can be represented as a packed float with the constant {@code -0x1.6c4dc6p125F}.
4456     * <pre>
4457     * <font style='background-color: #E32636;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E32636; color: #000000'>&nbsp;@&nbsp;</font>
4458     * <font style='background-color: #E32636;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E32636'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E32636'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E32636'>&nbsp;@&nbsp;</font><font style='background-color: #E32636; color: #888888'>&nbsp;@&nbsp;</font>
4459     * <font style='background-color: #E32636;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E32636; color: #ffffff'>&nbsp;@&nbsp;</font>
4460     * </pre>
4461     */
4462    public static final SColor ROSE_MADDER = new SColor(0xE32636, "Rose Madder");
4463
4464    /**
4465     * This color constant "Rose Taupe" has RGB code {@code 0x905D5D}, red 0.5647059, green 0.3647059, blue 0.3647059, alpha 1, hue 0.0, saturation 0.3541667, and value 0.5647059.
4466     * It can be represented as a packed float with the constant {@code -0x1.babb2p125F}.
4467     * <pre>
4468     * <font style='background-color: #905D5D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #905D5D; color: #000000'>&nbsp;@&nbsp;</font>
4469     * <font style='background-color: #905D5D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #905D5D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #905D5D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #905D5D'>&nbsp;@&nbsp;</font><font style='background-color: #905D5D; color: #888888'>&nbsp;@&nbsp;</font>
4470     * <font style='background-color: #905D5D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #905D5D; color: #ffffff'>&nbsp;@&nbsp;</font>
4471     * </pre>
4472     */
4473    public static final SColor ROSE_TAUPE = new SColor(0x905D5D, "Rose Taupe");
4474
4475    /**
4476     * This color constant "Royal Blue" has RGB code {@code 0x4169E1}, red 0.25490198, green 0.4117647, blue 0.88235295, alpha 1, hue 0.625, saturation 0.71111107, and value 0.88235295.
4477     * It can be represented as a packed float with the constant {@code -0x1.c2d282p126F}.
4478     * <pre>
4479     * <font style='background-color: #4169E1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4169E1; color: #000000'>&nbsp;@&nbsp;</font>
4480     * <font style='background-color: #4169E1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4169E1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4169E1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4169E1'>&nbsp;@&nbsp;</font><font style='background-color: #4169E1; color: #888888'>&nbsp;@&nbsp;</font>
4481     * <font style='background-color: #4169E1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4169E1; color: #ffffff'>&nbsp;@&nbsp;</font>
4482     * </pre>
4483     */
4484    public static final SColor ROYAL_BLUE = new SColor(0x4169E1, "Royal Blue");
4485
4486    /**
4487     * This color constant "Royal Purple" has RGB code {@code 0x6B3FA0}, red 0.41960785, green 0.24705882, blue 0.627451, alpha 1, hue 0.7422682, saturation 0.60625005, and value 0.627451.
4488     * It can be represented as a packed float with the constant {@code -0x1.407ed6p126F}.
4489     * <pre>
4490     * <font style='background-color: #6B3FA0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6B3FA0; color: #000000'>&nbsp;@&nbsp;</font>
4491     * <font style='background-color: #6B3FA0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6B3FA0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6B3FA0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6B3FA0'>&nbsp;@&nbsp;</font><font style='background-color: #6B3FA0; color: #888888'>&nbsp;@&nbsp;</font>
4492     * <font style='background-color: #6B3FA0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6B3FA0; color: #ffffff'>&nbsp;@&nbsp;</font>
4493     * </pre>
4494     */
4495    public static final SColor ROYAL_PURPLE = new SColor(0x6B3FA0, "Royal Purple");
4496
4497    /**
4498     * This color constant "Ruby" has RGB code {@code 0xE0115F}, red 0.8784314, green 0.06666667, blue 0.37254903, alpha 1, hue 0.937198, saturation 0.92410713, and value 0.8784314.
4499     * It can be represented as a packed float with the constant {@code -0x1.be23cp125F}.
4500     * <pre>
4501     * <font style='background-color: #E0115F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E0115F; color: #000000'>&nbsp;@&nbsp;</font>
4502     * <font style='background-color: #E0115F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E0115F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E0115F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E0115F'>&nbsp;@&nbsp;</font><font style='background-color: #E0115F; color: #888888'>&nbsp;@&nbsp;</font>
4503     * <font style='background-color: #E0115F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E0115F; color: #ffffff'>&nbsp;@&nbsp;</font>
4504     * </pre>
4505     */
4506    public static final SColor RUBY = new SColor(0xE0115F, "Ruby");
4507
4508    /**
4509     * This color constant "Russet" has RGB code {@code 0x80461B}, red 0.5019608, green 0.27450982, blue 0.105882354, alpha 1, hue 0.070957065, saturation 0.7890625, and value 0.5019608.
4510     * It can be represented as a packed float with the constant {@code -0x1.368dp125F}.
4511     * <pre>
4512     * <font style='background-color: #80461B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #80461B; color: #000000'>&nbsp;@&nbsp;</font>
4513     * <font style='background-color: #80461B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #80461B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #80461B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #80461B'>&nbsp;@&nbsp;</font><font style='background-color: #80461B; color: #888888'>&nbsp;@&nbsp;</font>
4514     * <font style='background-color: #80461B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #80461B; color: #ffffff'>&nbsp;@&nbsp;</font>
4515     * </pre>
4516     */
4517    public static final SColor RUSSET = new SColor(0x80461B, "Russet");
4518
4519    /**
4520     * This color constant "Rust" has RGB code {@code 0xB7410E}, red 0.7176471, green 0.25490198, blue 0.05490196, alpha 1, hue 0.05029583, saturation 0.92349726, and value 0.7176471.
4521     * It can be represented as a packed float with the constant {@code -0x1.1c836ep125F}.
4522     * <pre>
4523     * <font style='background-color: #B7410E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B7410E; color: #000000'>&nbsp;@&nbsp;</font>
4524     * <font style='background-color: #B7410E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B7410E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B7410E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B7410E'>&nbsp;@&nbsp;</font><font style='background-color: #B7410E; color: #888888'>&nbsp;@&nbsp;</font>
4525     * <font style='background-color: #B7410E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B7410E; color: #ffffff'>&nbsp;@&nbsp;</font>
4526     * </pre>
4527     */
4528    public static final SColor RUST = new SColor(0xB7410E, "Rust");
4529
4530    /**
4531     * This color constant "Rusted Light Blue" has RGB code {@code 0x6A7F7A}, red 0.41568628, green 0.49803922, blue 0.47843137, alpha 1, hue 0.46031737, saturation 0.16535433, and value 0.49803922.
4532     * It can be represented as a packed float with the constant {@code -0x1.f4fed4p125F}.
4533     * <pre>
4534     * <font style='background-color: #6A7F7A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6A7F7A; color: #000000'>&nbsp;@&nbsp;</font>
4535     * <font style='background-color: #6A7F7A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6A7F7A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6A7F7A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6A7F7A'>&nbsp;@&nbsp;</font><font style='background-color: #6A7F7A; color: #888888'>&nbsp;@&nbsp;</font>
4536     * <font style='background-color: #6A7F7A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6A7F7A; color: #ffffff'>&nbsp;@&nbsp;</font>
4537     * </pre>
4538     */
4539    public static final SColor RUSTED_LIGHT_BLUE = new SColor(0x6A7F7A, "Rusted Light Blue");
4540
4541    /**
4542     * This color constant "Rusty Celadon" has RGB code {@code 0x898A74}, red 0.5372549, green 0.5411765, blue 0.45490196, alpha 1, hue 0.1742425, saturation 0.15942033, and value 0.5411765.
4543     * It can be represented as a packed float with the constant {@code -0x1.e91512p125F}.
4544     * <pre>
4545     * <font style='background-color: #898A74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #898A74; color: #000000'>&nbsp;@&nbsp;</font>
4546     * <font style='background-color: #898A74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #898A74'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #898A74'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #898A74'>&nbsp;@&nbsp;</font><font style='background-color: #898A74; color: #888888'>&nbsp;@&nbsp;</font>
4547     * <font style='background-color: #898A74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #898A74; color: #ffffff'>&nbsp;@&nbsp;</font>
4548     * </pre>
4549     */
4550    public static final SColor RUSTY_CELADON = new SColor(0x898A74, "Rusty Celadon");
4551
4552    /**
4553     * This color constant "Rusty Storage" has RGB code {@code 0x455859}, red 0.27058825, green 0.34509805, blue 0.34901962, alpha 1, hue 0.50833344, saturation 0.22471908, and value 0.34901962.
4554     * It can be represented as a packed float with the constant {@code -0x1.b2b08ap125F}.
4555     * <pre>
4556     * <font style='background-color: #455859;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #455859; color: #000000'>&nbsp;@&nbsp;</font>
4557     * <font style='background-color: #455859;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #455859'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #455859'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #455859'>&nbsp;@&nbsp;</font><font style='background-color: #455859; color: #888888'>&nbsp;@&nbsp;</font>
4558     * <font style='background-color: #455859;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #455859; color: #ffffff'>&nbsp;@&nbsp;</font>
4559     * </pre>
4560     */
4561    public static final SColor RUSTY_STORAGE = new SColor(0x455859, "Rusty Storage");
4562
4563    /**
4564     * This color constant "Rusty Storeroom" has RGB code {@code 0x3A403B}, red 0.22745098, green 0.2509804, blue 0.23137255, alpha 1, hue 0.36111116, saturation 0.093750045, and value 0.2509804.
4565     * It can be represented as a packed float with the constant {@code -0x1.768074p125F}.
4566     * <pre>
4567     * <font style='background-color: #3A403B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3A403B; color: #000000'>&nbsp;@&nbsp;</font>
4568     * <font style='background-color: #3A403B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3A403B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3A403B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3A403B'>&nbsp;@&nbsp;</font><font style='background-color: #3A403B; color: #888888'>&nbsp;@&nbsp;</font>
4569     * <font style='background-color: #3A403B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3A403B; color: #ffffff'>&nbsp;@&nbsp;</font>
4570     * </pre>
4571     */
4572    public static final SColor RUSTY_STOREROOM = new SColor(0x3A403B, "Rusty Storeroom");
4573
4574    /**
4575     * This color constant "Safety Orange" has RGB code {@code 0xFF6600}, red 1.0, green 0.4, blue 0.0, alpha 1, hue 0.06666672, saturation 1.0, and value 1.0.
4576     * It can be represented as a packed float with the constant {@code -0x1.00cdfep125F}.
4577     * <pre>
4578     * <font style='background-color: #FF6600;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF6600; color: #000000'>&nbsp;@&nbsp;</font>
4579     * <font style='background-color: #FF6600;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF6600'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF6600'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF6600'>&nbsp;@&nbsp;</font><font style='background-color: #FF6600; color: #888888'>&nbsp;@&nbsp;</font>
4580     * <font style='background-color: #FF6600;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF6600; color: #ffffff'>&nbsp;@&nbsp;</font>
4581     * </pre>
4582     */
4583    public static final SColor SAFETY_ORANGE = new SColor(0xFF6600, "Safety Orange");
4584
4585    /**
4586     * This color constant "Safflower" has RGB code {@code 0x5A4F74}, red 0.3529412, green 0.30980393, blue 0.45490196, alpha 1, hue 0.7162163, saturation 0.3189655, and value 0.45490196.
4587     * It can be represented as a packed float with the constant {@code -0x1.e89eb4p125F}.
4588     * <pre>
4589     * <font style='background-color: #5A4F74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5A4F74; color: #000000'>&nbsp;@&nbsp;</font>
4590     * <font style='background-color: #5A4F74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5A4F74'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5A4F74'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5A4F74'>&nbsp;@&nbsp;</font><font style='background-color: #5A4F74; color: #888888'>&nbsp;@&nbsp;</font>
4591     * <font style='background-color: #5A4F74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5A4F74; color: #ffffff'>&nbsp;@&nbsp;</font>
4592     * </pre>
4593     */
4594    public static final SColor SAFFLOWER = new SColor(0x5A4F74, "Safflower");
4595
4596    /**
4597     * This color constant "Saffron" has RGB code {@code 0xF4C430}, red 0.95686275, green 0.76862746, blue 0.1882353, alpha 1, hue 0.12585044, saturation 0.8032787, and value 0.95686275.
4598     * It can be represented as a packed float with the constant {@code -0x1.6189e8p125F}.
4599     * <pre>
4600     * <font style='background-color: #F4C430;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F4C430; color: #000000'>&nbsp;@&nbsp;</font>
4601     * <font style='background-color: #F4C430;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F4C430'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F4C430'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F4C430'>&nbsp;@&nbsp;</font><font style='background-color: #F4C430; color: #888888'>&nbsp;@&nbsp;</font>
4602     * <font style='background-color: #F4C430;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F4C430; color: #ffffff'>&nbsp;@&nbsp;</font>
4603     * </pre>
4604     */
4605    public static final SColor SAFFRON = new SColor(0xF4C430, "Saffron");
4606
4607    /**
4608     * This color constant "Salmon" has RGB code {@code 0xFF8C69}, red 1.0, green 0.54901963, blue 0.4117647, alpha 1, hue 0.03888893, saturation 0.58823526, and value 1.0.
4609     * It can be represented as a packed float with the constant {@code -0x1.d319fep125F}.
4610     * <pre>
4611     * <font style='background-color: #FF8C69;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF8C69; color: #000000'>&nbsp;@&nbsp;</font>
4612     * <font style='background-color: #FF8C69;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF8C69'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF8C69'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF8C69'>&nbsp;@&nbsp;</font><font style='background-color: #FF8C69; color: #888888'>&nbsp;@&nbsp;</font>
4613     * <font style='background-color: #FF8C69;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF8C69; color: #ffffff'>&nbsp;@&nbsp;</font>
4614     * </pre>
4615     */
4616    public static final SColor SALMON = new SColor(0xFF8C69, "Salmon");
4617
4618    /**
4619     * This color constant "Sandy Brown" has RGB code {@code 0xF4A460}, red 0.95686275, green 0.6431373, blue 0.3764706, alpha 1, hue 0.07657671, saturation 0.6065573, and value 0.95686275.
4620     * It can be represented as a packed float with the constant {@code -0x1.c149e8p125F}.
4621     * <pre>
4622     * <font style='background-color: #F4A460;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F4A460; color: #000000'>&nbsp;@&nbsp;</font>
4623     * <font style='background-color: #F4A460;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F4A460'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F4A460'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F4A460'>&nbsp;@&nbsp;</font><font style='background-color: #F4A460; color: #888888'>&nbsp;@&nbsp;</font>
4624     * <font style='background-color: #F4A460;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F4A460; color: #ffffff'>&nbsp;@&nbsp;</font>
4625     * </pre>
4626     */
4627    public static final SColor SANDY_BROWN = new SColor(0xF4A460, "Sandy Brown");
4628
4629    /**
4630     * This color constant "Sangria" has RGB code {@code 0x92000A}, red 0.57254905, green 0.0, blue 0.039215688, alpha 1, hue 0.9885845, saturation 1.0, and value 0.57254905.
4631     * It can be represented as a packed float with the constant {@code -0x1.140124p125F}.
4632     * <pre>
4633     * <font style='background-color: #92000A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #92000A; color: #000000'>&nbsp;@&nbsp;</font>
4634     * <font style='background-color: #92000A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #92000A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #92000A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #92000A'>&nbsp;@&nbsp;</font><font style='background-color: #92000A; color: #888888'>&nbsp;@&nbsp;</font>
4635     * <font style='background-color: #92000A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #92000A; color: #ffffff'>&nbsp;@&nbsp;</font>
4636     * </pre>
4637     */
4638    public static final SColor SANGRIA = new SColor(0x92000A, "Sangria");
4639
4640    /**
4641     * This color constant "Sapphire" has RGB code {@code 0x082567}, red 0.03137255, green 0.14509805, blue 0.40392157, alpha 1, hue 0.61578953, saturation 0.9223301, and value 0.40392157.
4642     * It can be represented as a packed float with the constant {@code -0x1.ce4a1p125F}.
4643     * <pre>
4644     * <font style='background-color: #082567;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #082567; color: #000000'>&nbsp;@&nbsp;</font>
4645     * <font style='background-color: #082567;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #082567'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #082567'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #082567'>&nbsp;@&nbsp;</font><font style='background-color: #082567; color: #888888'>&nbsp;@&nbsp;</font>
4646     * <font style='background-color: #082567;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #082567; color: #ffffff'>&nbsp;@&nbsp;</font>
4647     * </pre>
4648     */
4649    public static final SColor SAPPHIRE = new SColor(0x082567, "Sapphire");
4650
4651    /**
4652     * This color constant "Sappanwood" has RGB code {@code 0x7E2639}, red 0.49411765, green 0.14901961, blue 0.22352941, alpha 1, hue 0.96401507, saturation 0.69841266, and value 0.49411765.
4653     * It can be represented as a packed float with the constant {@code -0x1.724cfcp125F}.
4654     * <pre>
4655     * <font style='background-color: #7E2639;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7E2639; color: #000000'>&nbsp;@&nbsp;</font>
4656     * <font style='background-color: #7E2639;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7E2639'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7E2639'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7E2639'>&nbsp;@&nbsp;</font><font style='background-color: #7E2639; color: #888888'>&nbsp;@&nbsp;</font>
4657     * <font style='background-color: #7E2639;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7E2639; color: #ffffff'>&nbsp;@&nbsp;</font>
4658     * </pre>
4659     */
4660    public static final SColor SAPPANWOOD = new SColor(0x7E2639, "Sappanwood");
4661
4662    /**
4663     * This color constant "Sappanwood Incense" has RGB code {@code 0xA24F46}, red 0.63529414, green 0.30980393, blue 0.27450982, alpha 1, hue 0.016304255, saturation 0.56790125, and value 0.63529414.
4664     * It can be represented as a packed float with the constant {@code -0x1.8c9f44p125F}.
4665     * <pre>
4666     * <font style='background-color: #A24F46;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A24F46; color: #000000'>&nbsp;@&nbsp;</font>
4667     * <font style='background-color: #A24F46;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A24F46'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A24F46'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A24F46'>&nbsp;@&nbsp;</font><font style='background-color: #A24F46; color: #888888'>&nbsp;@&nbsp;</font>
4668     * <font style='background-color: #A24F46;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A24F46; color: #ffffff'>&nbsp;@&nbsp;</font>
4669     * </pre>
4670     */
4671    public static final SColor SAPPANWOOD_INCENSE = new SColor(0xA24F46, "Sappanwood Incense");
4672
4673    /**
4674     * This color constant "Sawtooth Oak" has RGB code {@code 0xEC956C}, red 0.9254902, green 0.58431375, blue 0.42352942, alpha 1, hue 0.053385496, saturation 0.5423728, and value 0.9254902.
4675     * It can be represented as a packed float with the constant {@code -0x1.d92bd8p125F}.
4676     * <pre>
4677     * <font style='background-color: #EC956C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EC956C; color: #000000'>&nbsp;@&nbsp;</font>
4678     * <font style='background-color: #EC956C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EC956C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EC956C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EC956C'>&nbsp;@&nbsp;</font><font style='background-color: #EC956C; color: #888888'>&nbsp;@&nbsp;</font>
4679     * <font style='background-color: #EC956C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EC956C; color: #ffffff'>&nbsp;@&nbsp;</font>
4680     * </pre>
4681     */
4682    public static final SColor SAWTOOTH_OAK = new SColor(0xEC956C, "Sawtooth Oak");
4683
4684    /**
4685     * This color constant "Scarlet" has RGB code {@code 0xFF2400}, red 1.0, green 0.14117648, blue 0.0, alpha 1, hue 0.02352953, saturation 1.0, and value 1.0.
4686     * It can be represented as a packed float with the constant {@code -0x1.0049fep125F}.
4687     * <pre>
4688     * <font style='background-color: #FF2400;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF2400; color: #000000'>&nbsp;@&nbsp;</font>
4689     * <font style='background-color: #FF2400;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF2400'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF2400'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF2400'>&nbsp;@&nbsp;</font><font style='background-color: #FF2400; color: #888888'>&nbsp;@&nbsp;</font>
4690     * <font style='background-color: #FF2400;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF2400; color: #ffffff'>&nbsp;@&nbsp;</font>
4691     * </pre>
4692     */
4693    public static final SColor SCARLET = new SColor(0xFF2400, "Scarlet");
4694
4695    /**
4696     * This color constant "School Bus Yellow" has RGB code {@code 0xFFD800}, red 1.0, green 0.84705883, blue 0.0, alpha 1, hue 0.14117658, saturation 1.0, and value 1.0.
4697     * It can be represented as a packed float with the constant {@code -0x1.01b1fep125F}.
4698     * <pre>
4699     * <font style='background-color: #FFD800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFD800; color: #000000'>&nbsp;@&nbsp;</font>
4700     * <font style='background-color: #FFD800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFD800'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFD800'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFD800'>&nbsp;@&nbsp;</font><font style='background-color: #FFD800; color: #888888'>&nbsp;@&nbsp;</font>
4701     * <font style='background-color: #FFD800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFD800; color: #ffffff'>&nbsp;@&nbsp;</font>
4702     * </pre>
4703     */
4704    public static final SColor SCHOOL_BUS_YELLOW = new SColor(0xFFD800, "School Bus Yellow");
4705
4706    /**
4707     * This color constant "Scorched Brown" has RGB code {@code 0x351F19}, red 0.20784314, green 0.12156863, blue 0.09803922, alpha 1, hue 0.035714388, saturation 0.5283019, and value 0.20784314.
4708     * It can be represented as a packed float with the constant {@code -0x1.323e6ap125F}.
4709     * <pre>
4710     * <font style='background-color: #351F19;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #351F19; color: #000000'>&nbsp;@&nbsp;</font>
4711     * <font style='background-color: #351F19;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #351F19'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #351F19'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #351F19'>&nbsp;@&nbsp;</font><font style='background-color: #351F19; color: #888888'>&nbsp;@&nbsp;</font>
4712     * <font style='background-color: #351F19;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #351F19; color: #ffffff'>&nbsp;@&nbsp;</font>
4713     * </pre>
4714     */
4715    public static final SColor SCORCHED_BROWN = new SColor(0x351F19, "Scorched Brown");
4716
4717    /**
4718     * This color constant "Sea Green" has RGB code {@code 0x2E8B57}, red 0.18039216, green 0.54509807, blue 0.34117648, alpha 1, hue 0.40681005, saturation 0.66906476, and value 0.54509807.
4719     * It can be represented as a packed float with the constant {@code -0x1.af165cp125F}.
4720     * <pre>
4721     * <font style='background-color: #2E8B57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2E8B57; color: #000000'>&nbsp;@&nbsp;</font>
4722     * <font style='background-color: #2E8B57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2E8B57'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2E8B57'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2E8B57'>&nbsp;@&nbsp;</font><font style='background-color: #2E8B57; color: #888888'>&nbsp;@&nbsp;</font>
4723     * <font style='background-color: #2E8B57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2E8B57; color: #ffffff'>&nbsp;@&nbsp;</font>
4724     * </pre>
4725     */
4726    public static final SColor SEA_GREEN = new SColor(0x2E8B57, "Sea Green");
4727
4728    /**
4729     * This color constant "Seashell" has RGB code {@code 0xFFF5EE}, red 1.0, green 0.9607843, blue 0.93333334, alpha 1, hue 0.068627596, saturation 0.06666666, and value 1.0.
4730     * It can be represented as a packed float with the constant {@code -0x1.ddebfep126F}.
4731     * <pre>
4732     * <font style='background-color: #FFF5EE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFF5EE; color: #000000'>&nbsp;@&nbsp;</font>
4733     * <font style='background-color: #FFF5EE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFF5EE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFF5EE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFF5EE'>&nbsp;@&nbsp;</font><font style='background-color: #FFF5EE; color: #888888'>&nbsp;@&nbsp;</font>
4734     * <font style='background-color: #FFF5EE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFF5EE; color: #ffffff'>&nbsp;@&nbsp;</font>
4735     * </pre>
4736     */
4737    public static final SColor SEASHELL = new SColor(0xFFF5EE, "Seashell");
4738
4739    /**
4740     * This color constant "Selective Yellow" has RGB code {@code 0xFFBA00}, red 1.0, green 0.7294118, blue 0.0, alpha 1, hue 0.12156868, saturation 1.0, and value 1.0.
4741     * It can be represented as a packed float with the constant {@code -0x1.0175fep125F}.
4742     * <pre>
4743     * <font style='background-color: #FFBA00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFBA00; color: #000000'>&nbsp;@&nbsp;</font>
4744     * <font style='background-color: #FFBA00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFBA00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFBA00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFBA00'>&nbsp;@&nbsp;</font><font style='background-color: #FFBA00; color: #888888'>&nbsp;@&nbsp;</font>
4745     * <font style='background-color: #FFBA00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFBA00; color: #ffffff'>&nbsp;@&nbsp;</font>
4746     * </pre>
4747     */
4748    public static final SColor SELECTIVE_YELLOW = new SColor(0xFFBA00, "Selective Yellow");
4749
4750    /**
4751     * This color constant "Sen No Rikyu's Tea" has RGB code {@code 0x826B58}, red 0.50980395, green 0.41960785, blue 0.34509805, alpha 1, hue 0.075396895, saturation 0.32307693, and value 0.50980395.
4752     * It can be represented as a packed float with the constant {@code -0x1.b0d704p125F}.
4753     * <pre>
4754     * <font style='background-color: #826B58;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #826B58; color: #000000'>&nbsp;@&nbsp;</font>
4755     * <font style='background-color: #826B58;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #826B58'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #826B58'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #826B58'>&nbsp;@&nbsp;</font><font style='background-color: #826B58; color: #888888'>&nbsp;@&nbsp;</font>
4756     * <font style='background-color: #826B58;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #826B58; color: #ffffff'>&nbsp;@&nbsp;</font>
4757     * </pre>
4758     */
4759    public static final SColor SEN_NO_RIKYUS_TEA = new SColor(0x826B58, "Sen No Rikyu's Tea");
4760
4761    /**
4762     * This color constant "Sepia" has RGB code {@code 0x704214}, red 0.4392157, green 0.25882354, blue 0.078431375, alpha 1, hue 0.083333254, saturation 0.8214286, and value 0.4392157.
4763     * It can be represented as a packed float with the constant {@code -0x1.2884ep125F}.
4764     * <pre>
4765     * <font style='background-color: #704214;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #704214; color: #000000'>&nbsp;@&nbsp;</font>
4766     * <font style='background-color: #704214;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #704214'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #704214'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #704214'>&nbsp;@&nbsp;</font><font style='background-color: #704214; color: #888888'>&nbsp;@&nbsp;</font>
4767     * <font style='background-color: #704214;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #704214; color: #ffffff'>&nbsp;@&nbsp;</font>
4768     * </pre>
4769     */
4770    public static final SColor SEPIA = new SColor(0x704214, "Sepia");
4771
4772    /**
4773     * This color constant "Shamrock Green" has RGB code {@code 0x009E60}, red 0.0, green 0.61960787, blue 0.3764706, alpha 1, hue 0.43459916, saturation 1.0, and value 0.61960787.
4774     * It can be represented as a packed float with the constant {@code -0x1.c13cp125F}.
4775     * <pre>
4776     * <font style='background-color: #009E60;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #009E60; color: #000000'>&nbsp;@&nbsp;</font>
4777     * <font style='background-color: #009E60;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #009E60'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #009E60'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #009E60'>&nbsp;@&nbsp;</font><font style='background-color: #009E60; color: #888888'>&nbsp;@&nbsp;</font>
4778     * <font style='background-color: #009E60;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #009E60; color: #ffffff'>&nbsp;@&nbsp;</font>
4779     * </pre>
4780     */
4781    public static final SColor SHAMROCK_GREEN = new SColor(0x009E60, "Shamrock Green");
4782
4783    /**
4784     * This color constant "Shocking Pink" has RGB code {@code 0xFC0FC0}, red 0.9882353, green 0.05882353, blue 0.7529412, alpha 1, hue 0.87552744, saturation 0.9404762, and value 0.9882353.
4785     * It can be represented as a packed float with the constant {@code -0x1.801ff8p126F}.
4786     * <pre>
4787     * <font style='background-color: #FC0FC0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FC0FC0; color: #000000'>&nbsp;@&nbsp;</font>
4788     * <font style='background-color: #FC0FC0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FC0FC0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FC0FC0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FC0FC0'>&nbsp;@&nbsp;</font><font style='background-color: #FC0FC0; color: #888888'>&nbsp;@&nbsp;</font>
4789     * <font style='background-color: #FC0FC0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FC0FC0; color: #ffffff'>&nbsp;@&nbsp;</font>
4790     * </pre>
4791     */
4792    public static final SColor SHOCKING_PINK = new SColor(0xFC0FC0, "Shocking Pink");
4793
4794    /**
4795     * This color constant "Shrimp Brown" has RGB code {@code 0x5E2824}, red 0.36862746, green 0.15686275, blue 0.14117648, alpha 1, hue 0.011494398, saturation 0.61702126, and value 0.36862746.
4796     * It can be represented as a packed float with the constant {@code -0x1.4850bcp125F}.
4797     * <pre>
4798     * <font style='background-color: #5E2824;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5E2824; color: #000000'>&nbsp;@&nbsp;</font>
4799     * <font style='background-color: #5E2824;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5E2824'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5E2824'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5E2824'>&nbsp;@&nbsp;</font><font style='background-color: #5E2824; color: #888888'>&nbsp;@&nbsp;</font>
4800     * <font style='background-color: #5E2824;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5E2824; color: #ffffff'>&nbsp;@&nbsp;</font>
4801     * </pre>
4802     */
4803    public static final SColor SHRIMP_BROWN = new SColor(0x5E2824, "Shrimp Brown");
4804
4805    /**
4806     * This color constant "Silk Crepe Brown" has RGB code {@code 0x354E4B}, red 0.20784314, green 0.30588236, blue 0.29411766, alpha 1, hue 0.48000002, saturation 0.32051283, and value 0.30588236.
4807     * It can be represented as a packed float with the constant {@code -0x1.969c6ap125F}.
4808     * <pre>
4809     * <font style='background-color: #354E4B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #354E4B; color: #000000'>&nbsp;@&nbsp;</font>
4810     * <font style='background-color: #354E4B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #354E4B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #354E4B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #354E4B'>&nbsp;@&nbsp;</font><font style='background-color: #354E4B; color: #888888'>&nbsp;@&nbsp;</font>
4811     * <font style='background-color: #354E4B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #354E4B; color: #ffffff'>&nbsp;@&nbsp;</font>
4812     * </pre>
4813     */
4814    public static final SColor SILK_CREPE_BROWN = new SColor(0x354E4B, "Silk Crepe Brown");
4815
4816    /**
4817     * This color constant "Silver" has RGB code {@code 0xC0C0C0}, red 0.7529412, green 0.7529412, blue 0.7529412, alpha 1, hue 0.0, saturation 0.0, and value 0.7529412.
4818     * It can be represented as a packed float with the constant {@code -0x1.81818p126F}.
4819     * <pre>
4820     * <font style='background-color: #C0C0C0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C0C0C0; color: #000000'>&nbsp;@&nbsp;</font>
4821     * <font style='background-color: #C0C0C0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C0C0C0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C0C0C0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C0C0C0'>&nbsp;@&nbsp;</font><font style='background-color: #C0C0C0; color: #888888'>&nbsp;@&nbsp;</font>
4822     * <font style='background-color: #C0C0C0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C0C0C0; color: #ffffff'>&nbsp;@&nbsp;</font>
4823     * </pre>
4824     */
4825    public static final SColor SILVER = new SColor(0xC0C0C0, "Silver");
4826
4827    /**
4828     * This color constant "Silver Grey" has RGB code {@code 0x97867C}, red 0.5921569, green 0.5254902, blue 0.4862745, alpha 1, hue 0.061728477, saturation 0.17880797, and value 0.5921569.
4829     * It can be represented as a packed float with the constant {@code -0x1.f90d2ep125F}.
4830     * <pre>
4831     * <font style='background-color: #97867C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #97867C; color: #000000'>&nbsp;@&nbsp;</font>
4832     * <font style='background-color: #97867C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #97867C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #97867C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #97867C'>&nbsp;@&nbsp;</font><font style='background-color: #97867C; color: #888888'>&nbsp;@&nbsp;</font>
4833     * <font style='background-color: #97867C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #97867C; color: #ffffff'>&nbsp;@&nbsp;</font>
4834     * </pre>
4835     */
4836    public static final SColor SILVER_GREY = new SColor(0x97867C, "Silver Grey");
4837
4838    /**
4839     * This color constant "Silvered Red" has RGB code {@code 0xBC2D29}, red 0.7372549, green 0.1764706, blue 0.16078432, alpha 1, hue 0.004535198, saturation 0.7819149, and value 0.7372549.
4840     * It can be represented as a packed float with the constant {@code -0x1.525b78p125F}.
4841     * <pre>
4842     * <font style='background-color: #BC2D29;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BC2D29; color: #000000'>&nbsp;@&nbsp;</font>
4843     * <font style='background-color: #BC2D29;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BC2D29'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BC2D29'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BC2D29'>&nbsp;@&nbsp;</font><font style='background-color: #BC2D29; color: #888888'>&nbsp;@&nbsp;</font>
4844     * <font style='background-color: #BC2D29;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BC2D29; color: #ffffff'>&nbsp;@&nbsp;</font>
4845     * </pre>
4846     */
4847    public static final SColor SILVERED_RED = new SColor(0xBC2D29, "Silvered Red");
4848
4849    /**
4850     * This color constant "Simmered Seawead" has RGB code {@code 0x4C3D30}, red 0.29803923, green 0.23921569, blue 0.1882353, alpha 1, hue 0.077380896, saturation 0.36842108, and value 0.29803923.
4851     * It can be represented as a packed float with the constant {@code -0x1.607a98p125F}.
4852     * <pre>
4853     * <font style='background-color: #4C3D30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4C3D30; color: #000000'>&nbsp;@&nbsp;</font>
4854     * <font style='background-color: #4C3D30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4C3D30'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4C3D30'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4C3D30'>&nbsp;@&nbsp;</font><font style='background-color: #4C3D30; color: #888888'>&nbsp;@&nbsp;</font>
4855     * <font style='background-color: #4C3D30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4C3D30; color: #ffffff'>&nbsp;@&nbsp;</font>
4856     * </pre>
4857     */
4858    public static final SColor SIMMERED_SEAWEED = new SColor(0x4C3D30, "Simmered Seawead");
4859
4860    /**
4861     * This color constant "Siskin Sprout Yellow" has RGB code {@code 0x7A942E}, red 0.47843137, green 0.5803922, blue 0.18039216, alpha 1, hue 0.20915043, saturation 0.6891892, and value 0.5803922.
4862     * It can be represented as a packed float with the constant {@code -0x1.5d28f4p125F}.
4863     * <pre>
4864     * <font style='background-color: #7A942E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7A942E; color: #000000'>&nbsp;@&nbsp;</font>
4865     * <font style='background-color: #7A942E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7A942E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7A942E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7A942E'>&nbsp;@&nbsp;</font><font style='background-color: #7A942E; color: #888888'>&nbsp;@&nbsp;</font>
4866     * <font style='background-color: #7A942E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7A942E; color: #ffffff'>&nbsp;@&nbsp;</font>
4867     * </pre>
4868     */
4869    public static final SColor SISKIN_SPROUT_YELLOW = new SColor(0x7A942E, "Siskin Sprout Yellow");
4870
4871    /**
4872     * This color constant "Sky" has RGB code {@code 0x4D8FAC}, red 0.3019608, green 0.56078434, blue 0.6745098, alpha 1, hue 0.55087745, saturation 0.5523256, and value 0.6745098.
4873     * It can be represented as a packed float with the constant {@code -0x1.591e9ap126F}.
4874     * <pre>
4875     * <font style='background-color: #4D8FAC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4D8FAC; color: #000000'>&nbsp;@&nbsp;</font>
4876     * <font style='background-color: #4D8FAC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4D8FAC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4D8FAC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4D8FAC'>&nbsp;@&nbsp;</font><font style='background-color: #4D8FAC; color: #888888'>&nbsp;@&nbsp;</font>
4877     * <font style='background-color: #4D8FAC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4D8FAC; color: #ffffff'>&nbsp;@&nbsp;</font>
4878     * </pre>
4879     */
4880    public static final SColor SKY = new SColor(0x4D8FAC, "Sky");
4881
4882    /**
4883     * This color constant "Sky Blue" has RGB code {@code 0x87CEEB}, red 0.5294118, green 0.80784315, blue 0.92156863, alpha 1, hue 0.5483334, saturation 0.4255319, and value 0.92156863.
4884     * It can be represented as a packed float with the constant {@code -0x1.d79d0ep126F}.
4885     * <pre>
4886     * <font style='background-color: #87CEEB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #87CEEB; color: #000000'>&nbsp;@&nbsp;</font>
4887     * <font style='background-color: #87CEEB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #87CEEB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #87CEEB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #87CEEB'>&nbsp;@&nbsp;</font><font style='background-color: #87CEEB; color: #888888'>&nbsp;@&nbsp;</font>
4888     * <font style='background-color: #87CEEB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #87CEEB; color: #ffffff'>&nbsp;@&nbsp;</font>
4889     * </pre>
4890     */
4891    public static final SColor SKY_BLUE = new SColor(0x87CEEB, "Sky Blue");
4892
4893    /**
4894     * This color constant "Slate Gray" has RGB code {@code 0x708090}, red 0.4392157, green 0.5019608, blue 0.5647059, alpha 1, hue 0.58333325, saturation 0.22222225, and value 0.5647059.
4895     * It can be represented as a packed float with the constant {@code -0x1.2100ep126F}.
4896     * <pre>
4897     * <font style='background-color: #708090;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #708090; color: #000000'>&nbsp;@&nbsp;</font>
4898     * <font style='background-color: #708090;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #708090'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #708090'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #708090'>&nbsp;@&nbsp;</font><font style='background-color: #708090; color: #888888'>&nbsp;@&nbsp;</font>
4899     * <font style='background-color: #708090;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #708090; color: #ffffff'>&nbsp;@&nbsp;</font>
4900     * </pre>
4901     */
4902    public static final SColor SLATE_GRAY = new SColor(0x708090, "Slate Gray");
4903
4904    /**
4905     * This color constant "Smalt" has RGB code {@code 0x003399}, red 0.0, green 0.2, blue 0.6, alpha 1, hue 0.6111113, saturation 1.0, and value 0.6.
4906     * It can be represented as a packed float with the constant {@code -0x1.3266p126F}.
4907     * <pre>
4908     * <font style='background-color: #003399;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #003399; color: #000000'>&nbsp;@&nbsp;</font>
4909     * <font style='background-color: #003399;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #003399'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #003399'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #003399'>&nbsp;@&nbsp;</font><font style='background-color: #003399; color: #888888'>&nbsp;@&nbsp;</font>
4910     * <font style='background-color: #003399;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #003399; color: #ffffff'>&nbsp;@&nbsp;</font>
4911     * </pre>
4912     */
4913    public static final SColor SMALT = new SColor(0x003399, "Smalt");
4914
4915    /**
4916     * This color constant "Sooty Bamboo" has RGB code {@code 0x593A27}, red 0.34901962, green 0.22745098, blue 0.15294118, alpha 1, hue 0.06333339, saturation 0.56179774, and value 0.34901962.
4917     * It can be represented as a packed float with the constant {@code -0x1.4e74b2p125F}.
4918     * <pre>
4919     * <font style='background-color: #593A27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #593A27; color: #000000'>&nbsp;@&nbsp;</font>
4920     * <font style='background-color: #593A27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #593A27'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #593A27'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #593A27'>&nbsp;@&nbsp;</font><font style='background-color: #593A27; color: #888888'>&nbsp;@&nbsp;</font>
4921     * <font style='background-color: #593A27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #593A27; color: #ffffff'>&nbsp;@&nbsp;</font>
4922     * </pre>
4923     */
4924    public static final SColor SOOTY_BAMBOO = new SColor(0x593A27, "Sooty Bamboo");
4925
4926    /**
4927     * This color constant "Sooty Willow Bamboo" has RGB code {@code 0x4D4B3A}, red 0.3019608, green 0.29411766, blue 0.22745098, alpha 1, hue 0.14912295, saturation 0.24675328, and value 0.3019608.
4928     * It can be represented as a packed float with the constant {@code -0x1.74969ap125F}.
4929     * <pre>
4930     * <font style='background-color: #4D4B3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4D4B3A; color: #000000'>&nbsp;@&nbsp;</font>
4931     * <font style='background-color: #4D4B3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4D4B3A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4D4B3A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4D4B3A'>&nbsp;@&nbsp;</font><font style='background-color: #4D4B3A; color: #888888'>&nbsp;@&nbsp;</font>
4932     * <font style='background-color: #4D4B3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4D4B3A; color: #ffffff'>&nbsp;@&nbsp;</font>
4933     * </pre>
4934     */
4935    public static final SColor SOOTY_WILLOW_BAMBOO = new SColor(0x4D4B3A, "Sooty Willow Bamboo");
4936
4937    /**
4938     * This color constant "Sparrow Brown" has RGB code {@code 0x8C4736}, red 0.54901963, green 0.2784314, blue 0.21176471, alpha 1, hue 0.03294587, saturation 0.61428577, and value 0.54901963.
4939     * It can be represented as a packed float with the constant {@code -0x1.6c8f18p125F}.
4940     * <pre>
4941     * <font style='background-color: #8C4736;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C4736; color: #000000'>&nbsp;@&nbsp;</font>
4942     * <font style='background-color: #8C4736;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8C4736'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8C4736'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8C4736'>&nbsp;@&nbsp;</font><font style='background-color: #8C4736; color: #888888'>&nbsp;@&nbsp;</font>
4943     * <font style='background-color: #8C4736;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C4736; color: #ffffff'>&nbsp;@&nbsp;</font>
4944     * </pre>
4945     */
4946    public static final SColor SPARROW_BROWN = new SColor(0x8C4736, "Sparrow Brown");
4947
4948    /**
4949     * This color constant "Spring Bud" has RGB code {@code 0xA7FC00}, red 0.654902, green 0.9882353, blue 0.0, alpha 1, hue 0.2228837, saturation 1.0, and value 0.9882353.
4950     * It can be represented as a packed float with the constant {@code -0x1.01f94ep125F}.
4951     * <pre>
4952     * <font style='background-color: #A7FC00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A7FC00; color: #000000'>&nbsp;@&nbsp;</font>
4953     * <font style='background-color: #A7FC00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A7FC00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A7FC00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A7FC00'>&nbsp;@&nbsp;</font><font style='background-color: #A7FC00; color: #888888'>&nbsp;@&nbsp;</font>
4954     * <font style='background-color: #A7FC00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A7FC00; color: #ffffff'>&nbsp;@&nbsp;</font>
4955     * </pre>
4956     */
4957    public static final SColor SPRING_BUD = new SColor(0xA7FC00, "Spring Bud");
4958
4959    /**
4960     * This color constant "Spring Green" has RGB code {@code 0x00FF7F}, red 0.0, green 1.0, blue 0.49803922, alpha 1, hue 0.41633987, saturation 1.0, and value 1.0.
4961     * It can be represented as a packed float with the constant {@code -0x1.fffep125F}.
4962     * <pre>
4963     * <font style='background-color: #00FF7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FF7F; color: #000000'>&nbsp;@&nbsp;</font>
4964     * <font style='background-color: #00FF7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00FF7F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00FF7F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00FF7F'>&nbsp;@&nbsp;</font><font style='background-color: #00FF7F; color: #888888'>&nbsp;@&nbsp;</font>
4965     * <font style='background-color: #00FF7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FF7F; color: #ffffff'>&nbsp;@&nbsp;</font>
4966     * </pre>
4967     */
4968    public static final SColor SPRING_GREEN = new SColor(0x00FF7F, "Spring Green");
4969
4970    /**
4971     * This color constant "Stained Red" has RGB code {@code 0x78779B}, red 0.47058824, green 0.46666667, blue 0.60784316, alpha 1, hue 0.67129636, saturation 0.2322581, and value 0.60784316.
4972     * It can be represented as a packed float with the constant {@code -0x1.36eefp126F}.
4973     * <pre>
4974     * <font style='background-color: #78779B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #78779B; color: #000000'>&nbsp;@&nbsp;</font>
4975     * <font style='background-color: #78779B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #78779B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #78779B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #78779B'>&nbsp;@&nbsp;</font><font style='background-color: #78779B; color: #888888'>&nbsp;@&nbsp;</font>
4976     * <font style='background-color: #78779B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #78779B; color: #ffffff'>&nbsp;@&nbsp;</font>
4977     * </pre>
4978     */
4979    public static final SColor STAINED_RED = new SColor(0x78779B, "Stained Red");
4980
4981    /**
4982     * This color constant "Steamed Chestnut" has RGB code {@code 0xD3B17D}, red 0.827451, green 0.69411767, blue 0.49019608, alpha 1, hue 0.10077524, saturation 0.40758294, and value 0.827451.
4983     * It can be represented as a packed float with the constant {@code -0x1.fb63a6p125F}.
4984     * <pre>
4985     * <font style='background-color: #D3B17D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D3B17D; color: #000000'>&nbsp;@&nbsp;</font>
4986     * <font style='background-color: #D3B17D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D3B17D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D3B17D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D3B17D'>&nbsp;@&nbsp;</font><font style='background-color: #D3B17D; color: #888888'>&nbsp;@&nbsp;</font>
4987     * <font style='background-color: #D3B17D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D3B17D; color: #ffffff'>&nbsp;@&nbsp;</font>
4988     * </pre>
4989     */
4990    public static final SColor STEAMED_CHESTNUT = new SColor(0xD3B17D, "Steamed Chestnut");
4991
4992    /**
4993     * This color constant "Steel Blue" has RGB code {@code 0x4682B4}, red 0.27450982, green 0.50980395, blue 0.7058824, alpha 1, hue 0.5757575, saturation 0.6111111, and value 0.7058824.
4994     * It can be represented as a packed float with the constant {@code -0x1.69048cp126F}.
4995     * <pre>
4996     * <font style='background-color: #4682B4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4682B4; color: #000000'>&nbsp;@&nbsp;</font>
4997     * <font style='background-color: #4682B4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4682B4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4682B4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4682B4'>&nbsp;@&nbsp;</font><font style='background-color: #4682B4; color: #888888'>&nbsp;@&nbsp;</font>
4998     * <font style='background-color: #4682B4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4682B4; color: #ffffff'>&nbsp;@&nbsp;</font>
4999     * </pre>
5000     */
5001    public static final SColor STEEL_BLUE = new SColor(0x4682B4, "Steel Blue");
5002
5003    /**
5004     * This color constant "Storeroom Brown" has RGB code {@code 0x3D4035}, red 0.23921569, green 0.2509804, blue 0.20784314, alpha 1, hue 0.21212137, saturation 0.17187504, and value 0.2509804.
5005     * It can be represented as a packed float with the constant {@code -0x1.6a807ap125F}.
5006     * <pre>
5007     * <font style='background-color: #3D4035;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D4035; color: #000000'>&nbsp;@&nbsp;</font>
5008     * <font style='background-color: #3D4035;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3D4035'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3D4035'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3D4035'>&nbsp;@&nbsp;</font><font style='background-color: #3D4035; color: #888888'>&nbsp;@&nbsp;</font>
5009     * <font style='background-color: #3D4035;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D4035; color: #ffffff'>&nbsp;@&nbsp;</font>
5010     * </pre>
5011     */
5012    public static final SColor STOREROOM_BROWN = new SColor(0x3D4035, "Storeroom Brown");
5013
5014    /**
5015     * This color constant "Stylish Persimnmon" has RGB code {@code 0xFFA26B}, red 1.0, green 0.63529414, blue 0.41960785, alpha 1, hue 0.061937094, saturation 0.5803921, and value 1.0.
5016     * It can be represented as a packed float with the constant {@code -0x1.d745fep125F}.
5017     * <pre>
5018     * <font style='background-color: #FFA26B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA26B; color: #000000'>&nbsp;@&nbsp;</font>
5019     * <font style='background-color: #FFA26B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFA26B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFA26B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFA26B'>&nbsp;@&nbsp;</font><font style='background-color: #FFA26B; color: #888888'>&nbsp;@&nbsp;</font>
5020     * <font style='background-color: #FFA26B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA26B; color: #ffffff'>&nbsp;@&nbsp;</font>
5021     * </pre>
5022     */
5023    public static final SColor STYLISH_PERSIMMON = new SColor(0xFFA26B, "Stylish Persimnmon");
5024
5025    /**
5026     * This color constant "Sumac" has RGB code {@code 0x592B1F}, red 0.34901962, green 0.16862746, blue 0.12156863, alpha 1, hue 0.034482718, saturation 0.6516854, and value 0.34901962.
5027     * It can be represented as a packed float with the constant {@code -0x1.3e56b2p125F}.
5028     * <pre>
5029     * <font style='background-color: #592B1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #592B1F; color: #000000'>&nbsp;@&nbsp;</font>
5030     * <font style='background-color: #592B1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #592B1F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #592B1F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #592B1F'>&nbsp;@&nbsp;</font><font style='background-color: #592B1F; color: #888888'>&nbsp;@&nbsp;</font>
5031     * <font style='background-color: #592B1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #592B1F; color: #ffffff'>&nbsp;@&nbsp;</font>
5032     * </pre>
5033     */
5034    public static final SColor SUMAC = new SColor(0x592B1F, "Sumac");
5035
5036    /**
5037     * This color constant "Sumac Dyed" has RGB code {@code 0xE08A1E}, red 0.8784314, green 0.5411765, blue 0.11764706, alpha 1, hue 0.09278357, saturation 0.86607146, and value 0.8784314.
5038     * It can be represented as a packed float with the constant {@code -0x1.3d15cp125F}.
5039     * <pre>
5040     * <font style='background-color: #E08A1E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E08A1E; color: #000000'>&nbsp;@&nbsp;</font>
5041     * <font style='background-color: #E08A1E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E08A1E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E08A1E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E08A1E'>&nbsp;@&nbsp;</font><font style='background-color: #E08A1E; color: #888888'>&nbsp;@&nbsp;</font>
5042     * <font style='background-color: #E08A1E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E08A1E; color: #ffffff'>&nbsp;@&nbsp;</font>
5043     * </pre>
5044     */
5045    public static final SColor SUMAC_DYED = new SColor(0xE08A1E, "Sumac Dyed");
5046
5047    /**
5048     * This color constant "Tan" has RGB code {@code 0xD2B48C}, red 0.8235294, green 0.7058824, blue 0.54901963, alpha 1, hue 0.09523821, saturation 0.3333333, and value 0.8235294.
5049     * It can be represented as a packed float with the constant {@code -0x1.1969a4p126F}.
5050     * <pre>
5051     * <font style='background-color: #D2B48C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D2B48C; color: #000000'>&nbsp;@&nbsp;</font>
5052     * <font style='background-color: #D2B48C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D2B48C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D2B48C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D2B48C'>&nbsp;@&nbsp;</font><font style='background-color: #D2B48C; color: #888888'>&nbsp;@&nbsp;</font>
5053     * <font style='background-color: #D2B48C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D2B48C; color: #ffffff'>&nbsp;@&nbsp;</font>
5054     * </pre>
5055     */
5056    public static final SColor TAN = new SColor(0xD2B48C, "Tan");
5057
5058    /**
5059     * This color constant "Tangerine" has RGB code {@code 0xF28500}, red 0.9490196, green 0.52156866, blue 0.0, alpha 1, hue 0.091597795, saturation 1.0, and value 0.9490196.
5060     * It can be represented as a packed float with the constant {@code -0x1.010be4p125F}.
5061     * <pre>
5062     * <font style='background-color: #F28500;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F28500; color: #000000'>&nbsp;@&nbsp;</font>
5063     * <font style='background-color: #F28500;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F28500'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F28500'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F28500'>&nbsp;@&nbsp;</font><font style='background-color: #F28500; color: #888888'>&nbsp;@&nbsp;</font>
5064     * <font style='background-color: #F28500;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F28500; color: #ffffff'>&nbsp;@&nbsp;</font>
5065     * </pre>
5066     */
5067    public static final SColor TANGERINE = new SColor(0xF28500, "Tangerine");
5068
5069    /**
5070     * This color constant "Tangerine Yellow" has RGB code {@code 0xFFCC00}, red 1.0, green 0.8, blue 0.0, alpha 1, hue 0.13333344, saturation 1.0, and value 1.0.
5071     * It can be represented as a packed float with the constant {@code -0x1.0199fep125F}.
5072     * <pre>
5073     * <font style='background-color: #FFCC00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFCC00; color: #000000'>&nbsp;@&nbsp;</font>
5074     * <font style='background-color: #FFCC00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFCC00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFCC00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFCC00'>&nbsp;@&nbsp;</font><font style='background-color: #FFCC00; color: #888888'>&nbsp;@&nbsp;</font>
5075     * <font style='background-color: #FFCC00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFCC00; color: #ffffff'>&nbsp;@&nbsp;</font>
5076     * </pre>
5077     */
5078    public static final SColor TANGERINE_YELLOW = new SColor(0xFFCC00, "Tangerine Yellow");
5079
5080    /**
5081     * This color constant "Tatarian Aster" has RGB code {@code 0x976E9A}, red 0.5921569, green 0.43137255, blue 0.6039216, alpha 1, hue 0.82196987, saturation 0.2857143, and value 0.6039216.
5082     * It can be represented as a packed float with the constant {@code -0x1.34dd2ep126F}.
5083     * <pre>
5084     * <font style='background-color: #976E9A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #976E9A; color: #000000'>&nbsp;@&nbsp;</font>
5085     * <font style='background-color: #976E9A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #976E9A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #976E9A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #976E9A'>&nbsp;@&nbsp;</font><font style='background-color: #976E9A; color: #888888'>&nbsp;@&nbsp;</font>
5086     * <font style='background-color: #976E9A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #976E9A; color: #ffffff'>&nbsp;@&nbsp;</font>
5087     * </pre>
5088     */
5089    public static final SColor TATARIAN_ASTER = new SColor(0x976E9A, "Tatarian Aster");
5090
5091    /**
5092     * This color constant "Taupe" has RGB code {@code 0x483C32}, red 0.28235295, green 0.23529412, blue 0.19607843, alpha 1, hue 0.07575762, saturation 0.30555558, and value 0.28235295.
5093     * It can be represented as a packed float with the constant {@code -0x1.64789p125F}.
5094     * <pre>
5095     * <font style='background-color: #483C32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #483C32; color: #000000'>&nbsp;@&nbsp;</font>
5096     * <font style='background-color: #483C32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #483C32'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #483C32'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #483C32'>&nbsp;@&nbsp;</font><font style='background-color: #483C32; color: #888888'>&nbsp;@&nbsp;</font>
5097     * <font style='background-color: #483C32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #483C32; color: #ffffff'>&nbsp;@&nbsp;</font>
5098     * </pre>
5099     */
5100    public static final SColor TAUPE = new SColor(0x483C32, "Taupe");
5101
5102    /**
5103     * This color constant "Tawny" has RGB code {@code 0xCD5700}, red 0.8039216, green 0.34117648, blue 0.0, alpha 1, hue 0.07073188, saturation 1.0, and value 0.8039216.
5104     * It can be represented as a packed float with the constant {@code -0x1.00af9ap125F}.
5105     * <pre>
5106     * <font style='background-color: #CD5700;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD5700; color: #000000'>&nbsp;@&nbsp;</font>
5107     * <font style='background-color: #CD5700;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CD5700'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CD5700'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CD5700'>&nbsp;@&nbsp;</font><font style='background-color: #CD5700; color: #888888'>&nbsp;@&nbsp;</font>
5108     * <font style='background-color: #CD5700;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD5700; color: #ffffff'>&nbsp;@&nbsp;</font>
5109     * </pre>
5110     */
5111    public static final SColor TAWNY = new SColor(0xCD5700, "Tawny");
5112
5113    /**
5114     * This color constant "Tea Garden Contemplation" has RGB code {@code 0x665343}, red 0.4, green 0.3254902, blue 0.2627451, alpha 1, hue 0.07619047, saturation 0.34313723, and value 0.4.
5115     * It can be represented as a packed float with the constant {@code -0x1.86a6ccp125F}.
5116     * <pre>
5117     * <font style='background-color: #665343;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #665343; color: #000000'>&nbsp;@&nbsp;</font>
5118     * <font style='background-color: #665343;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #665343'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #665343'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #665343'>&nbsp;@&nbsp;</font><font style='background-color: #665343; color: #888888'>&nbsp;@&nbsp;</font>
5119     * <font style='background-color: #665343;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #665343; color: #ffffff'>&nbsp;@&nbsp;</font>
5120     * </pre>
5121     */
5122    public static final SColor TEA_GARDEN_CONTEMPLATION = new SColor(0x665343, "Tea Garden Contemplation");
5123
5124    /**
5125     * This color constant "Tea Green" has RGB code {@code 0xD0F0C0}, red 0.8156863, green 0.9411765, blue 0.7529412, alpha 1, hue 0.27777767, saturation 0.19999999, and value 0.9411765.
5126     * It can be represented as a packed float with the constant {@code -0x1.81e1ap126F}.
5127     * <pre>
5128     * <font style='background-color: #D0F0C0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D0F0C0; color: #000000'>&nbsp;@&nbsp;</font>
5129     * <font style='background-color: #D0F0C0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D0F0C0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D0F0C0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D0F0C0'>&nbsp;@&nbsp;</font><font style='background-color: #D0F0C0; color: #888888'>&nbsp;@&nbsp;</font>
5130     * <font style='background-color: #D0F0C0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D0F0C0; color: #ffffff'>&nbsp;@&nbsp;</font>
5131     * </pre>
5132     */
5133    public static final SColor TEA_GREEN = new SColor(0xD0F0C0, "Tea Green");
5134
5135    /**
5136     * This color constant "Tea Orange" has RGB code {@code 0xF88379}, red 0.972549, green 0.5137255, blue 0.4745098, alpha 1, hue 0.013123512, saturation 0.51209676, and value 0.972549.
5137     * It can be represented as a packed float with the constant {@code -0x1.f307fp125F}.
5138     * <pre>
5139     * <font style='background-color: #F88379;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F88379; color: #000000'>&nbsp;@&nbsp;</font>
5140     * <font style='background-color: #F88379;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F88379'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F88379'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F88379'>&nbsp;@&nbsp;</font><font style='background-color: #F88379; color: #888888'>&nbsp;@&nbsp;</font>
5141     * <font style='background-color: #F88379;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F88379; color: #ffffff'>&nbsp;@&nbsp;</font>
5142     * </pre>
5143     */
5144    public static final SColor TEA_ORANGE = new SColor(0xF88379, "Tea Orange");
5145
5146    /**
5147     * This color constant "Tea Rose" has RGB code {@code 0xF4C2C2}, red 0.95686275, green 0.7607843, blue 0.7607843, alpha 1, hue 0.0, saturation 0.20491803, and value 0.95686275.
5148     * It can be represented as a packed float with the constant {@code -0x1.8585e8p126F}.
5149     * <pre>
5150     * <font style='background-color: #F4C2C2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F4C2C2; color: #000000'>&nbsp;@&nbsp;</font>
5151     * <font style='background-color: #F4C2C2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F4C2C2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F4C2C2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F4C2C2'>&nbsp;@&nbsp;</font><font style='background-color: #F4C2C2; color: #888888'>&nbsp;@&nbsp;</font>
5152     * <font style='background-color: #F4C2C2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F4C2C2; color: #ffffff'>&nbsp;@&nbsp;</font>
5153     * </pre>
5154     */
5155    public static final SColor TEA_ROSE = new SColor(0xF4C2C2, "Tea Rose");
5156
5157    /**
5158     * This color constant "Teal" has RGB code {@code 0x008080}, red 0.0, green 0.5019608, blue 0.5019608, alpha 1, hue 0.5, saturation 1.0, and value 0.5019608.
5159     * It can be represented as a packed float with the constant {@code -0x1.01p126F}.
5160     * <pre>
5161     * <font style='background-color: #008080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #008080; color: #000000'>&nbsp;@&nbsp;</font>
5162     * <font style='background-color: #008080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #008080'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #008080'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #008080'>&nbsp;@&nbsp;</font><font style='background-color: #008080; color: #888888'>&nbsp;@&nbsp;</font>
5163     * <font style='background-color: #008080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #008080; color: #ffffff'>&nbsp;@&nbsp;</font>
5164     * </pre>
5165     */
5166    public static final SColor TEAL = new SColor(0x008080, "Teal");
5167
5168    /**
5169     * This color constant "Terra Cotta" has RGB code {@code 0xE2725B}, red 0.8862745, green 0.44705883, blue 0.35686275, alpha 1, hue 0.028395057, saturation 0.5973452, and value 0.8862745.
5170     * It can be represented as a packed float with the constant {@code -0x1.b6e5c4p125F}.
5171     * <pre>
5172     * <font style='background-color: #E2725B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E2725B; color: #000000'>&nbsp;@&nbsp;</font>
5173     * <font style='background-color: #E2725B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E2725B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E2725B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E2725B'>&nbsp;@&nbsp;</font><font style='background-color: #E2725B; color: #888888'>&nbsp;@&nbsp;</font>
5174     * <font style='background-color: #E2725B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E2725B; color: #ffffff'>&nbsp;@&nbsp;</font>
5175     * </pre>
5176     */
5177    public static final SColor TERRA_COTTA = new SColor(0xE2725B, "Terra Cotta");
5178
5179    /**
5180     * This color constant "Thin Violet" has RGB code {@code 0xA87CA0}, red 0.65882355, green 0.4862745, blue 0.627451, alpha 1, hue 0.8636363, saturation 0.26190478, and value 0.65882355.
5181     * It can be represented as a packed float with the constant {@code -0x1.40f95p126F}.
5182     * <pre>
5183     * <font style='background-color: #A87CA0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A87CA0; color: #000000'>&nbsp;@&nbsp;</font>
5184     * <font style='background-color: #A87CA0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A87CA0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A87CA0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A87CA0'>&nbsp;@&nbsp;</font><font style='background-color: #A87CA0; color: #888888'>&nbsp;@&nbsp;</font>
5185     * <font style='background-color: #A87CA0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A87CA0; color: #ffffff'>&nbsp;@&nbsp;</font>
5186     * </pre>
5187     */
5188    public static final SColor THIN_VIOLET = new SColor(0xA87CA0, "Thin Violet");
5189
5190    /**
5191     * This color constant "Thistle" has RGB code {@code 0xD8BFD8}, red 0.84705883, green 0.7490196, blue 0.84705883, alpha 1, hue 0.8333333, saturation 0.11574073, and value 0.84705883.
5192     * It can be represented as a packed float with the constant {@code -0x1.b17fbp126F}.
5193     * <pre>
5194     * <font style='background-color: #D8BFD8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D8BFD8; color: #000000'>&nbsp;@&nbsp;</font>
5195     * <font style='background-color: #D8BFD8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D8BFD8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D8BFD8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D8BFD8'>&nbsp;@&nbsp;</font><font style='background-color: #D8BFD8; color: #888888'>&nbsp;@&nbsp;</font>
5196     * <font style='background-color: #D8BFD8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D8BFD8; color: #ffffff'>&nbsp;@&nbsp;</font>
5197     * </pre>
5198     */
5199    public static final SColor THISTLE = new SColor(0xD8BFD8, "Thistle");
5200
5201    /**
5202     * This color constant "Thousand Herb" has RGB code {@code 0x317589}, red 0.19215687, green 0.45882353, blue 0.5372549, alpha 1, hue 0.53787875, saturation 0.64233583, and value 0.5372549.
5203     * It can be represented as a packed float with the constant {@code -0x1.12ea62p126F}.
5204     * <pre>
5205     * <font style='background-color: #317589;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #317589; color: #000000'>&nbsp;@&nbsp;</font>
5206     * <font style='background-color: #317589;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #317589'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #317589'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #317589'>&nbsp;@&nbsp;</font><font style='background-color: #317589; color: #888888'>&nbsp;@&nbsp;</font>
5207     * <font style='background-color: #317589;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #317589; color: #ffffff'>&nbsp;@&nbsp;</font>
5208     * </pre>
5209     */
5210    public static final SColor THOUSAND_HERB = new SColor(0x317589, "Thousand Herb");
5211
5212    /**
5213     * This color constant "Thousand Year Old Brown" has RGB code {@code 0x3B3429}, red 0.23137255, green 0.20392157, blue 0.16078432, alpha 1, hue 0.10185194, saturation 0.30508474, and value 0.23137255.
5214     * It can be represented as a packed float with the constant {@code -0x1.526876p125F}.
5215     * <pre>
5216     * <font style='background-color: #3B3429;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B3429; color: #000000'>&nbsp;@&nbsp;</font>
5217     * <font style='background-color: #3B3429;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3B3429'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3B3429'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3B3429'>&nbsp;@&nbsp;</font><font style='background-color: #3B3429; color: #888888'>&nbsp;@&nbsp;</font>
5218     * <font style='background-color: #3B3429;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B3429; color: #ffffff'>&nbsp;@&nbsp;</font>
5219     * </pre>
5220     */
5221    public static final SColor THOUSAND_YEAR_OLD_BROWN = new SColor(0x3B3429, "Thousand Year Old Brown");
5222
5223    /**
5224     * This color constant "Thousand Year Old Green" has RGB code {@code 0x374231}, red 0.21568628, green 0.25882354, blue 0.19215687, alpha 1, hue 0.2745099, saturation 0.25757578, and value 0.25882354.
5225     * It can be represented as a packed float with the constant {@code -0x1.62846ep125F}.
5226     * <pre>
5227     * <font style='background-color: #374231;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #374231; color: #000000'>&nbsp;@&nbsp;</font>
5228     * <font style='background-color: #374231;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #374231'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #374231'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #374231'>&nbsp;@&nbsp;</font><font style='background-color: #374231; color: #888888'>&nbsp;@&nbsp;</font>
5229     * <font style='background-color: #374231;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #374231; color: #ffffff'>&nbsp;@&nbsp;</font>
5230     * </pre>
5231     */
5232    public static final SColor THOUSAND_YEAR_OLD_GREEN = new SColor(0x374231, "Thousand Year Old Green");
5233
5234    /**
5235     * This color constant "Thrice Dyed Crimson" has RGB code {@code 0xF7665A}, red 0.96862745, green 0.4, blue 0.3529412, alpha 1, hue 0.012738824, saturation 0.63562757, and value 0.96862745.
5236     * It can be represented as a packed float with the constant {@code -0x1.b4cdeep125F}.
5237     * <pre>
5238     * <font style='background-color: #F7665A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F7665A; color: #000000'>&nbsp;@&nbsp;</font>
5239     * <font style='background-color: #F7665A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F7665A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F7665A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F7665A'>&nbsp;@&nbsp;</font><font style='background-color: #F7665A; color: #888888'>&nbsp;@&nbsp;</font>
5240     * <font style='background-color: #F7665A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F7665A; color: #ffffff'>&nbsp;@&nbsp;</font>
5241     * </pre>
5242     */
5243    public static final SColor THRICE_DYED_CRIMSON = new SColor(0xF7665A, "Thrice Dyed Crimson");
5244
5245    /**
5246     * This color constant "Tomato" has RGB code {@code 0xFF6347}, red 1.0, green 0.3882353, blue 0.2784314, alpha 1, hue 0.025362372, saturation 0.7215686, and value 1.0.
5247     * It can be represented as a packed float with the constant {@code -0x1.8ec7fep125F}.
5248     * <pre>
5249     * <font style='background-color: #FF6347;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF6347; color: #000000'>&nbsp;@&nbsp;</font>
5250     * <font style='background-color: #FF6347;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF6347'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF6347'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF6347'>&nbsp;@&nbsp;</font><font style='background-color: #FF6347; color: #888888'>&nbsp;@&nbsp;</font>
5251     * <font style='background-color: #FF6347;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF6347; color: #ffffff'>&nbsp;@&nbsp;</font>
5252     * </pre>
5253     */
5254    public static final SColor TOMATO = new SColor(0xFF6347, "Tomato");
5255
5256    /**
5257     * This color constant "Tree Peony" has RGB code {@code 0xA4345D}, red 0.6431373, green 0.20392157, blue 0.3647059, alpha 1, hue 0.9389881, saturation 0.68292683, and value 0.6431373.
5258     * It can be represented as a packed float with the constant {@code -0x1.ba6948p125F}.
5259     * <pre>
5260     * <font style='background-color: #A4345D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A4345D; color: #000000'>&nbsp;@&nbsp;</font>
5261     * <font style='background-color: #A4345D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A4345D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A4345D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A4345D'>&nbsp;@&nbsp;</font><font style='background-color: #A4345D; color: #888888'>&nbsp;@&nbsp;</font>
5262     * <font style='background-color: #A4345D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A4345D; color: #ffffff'>&nbsp;@&nbsp;</font>
5263     * </pre>
5264     */
5265    public static final SColor TREE_PEONY = new SColor(0xA4345D, "Tree Peony");
5266
5267    /**
5268     * This color constant "True Pink" has RGB code {@code 0xFFC0CB}, red 1.0, green 0.7529412, blue 0.79607844, alpha 1, hue 0.9708994, saturation 0.24705881, and value 1.0.
5269     * It can be represented as a packed float with the constant {@code -0x1.9781fep126F}.
5270     * <pre>
5271     * <font style='background-color: #FFC0CB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFC0CB; color: #000000'>&nbsp;@&nbsp;</font>
5272     * <font style='background-color: #FFC0CB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFC0CB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFC0CB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFC0CB'>&nbsp;@&nbsp;</font><font style='background-color: #FFC0CB; color: #888888'>&nbsp;@&nbsp;</font>
5273     * <font style='background-color: #FFC0CB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFC0CB; color: #ffffff'>&nbsp;@&nbsp;</font>
5274     * </pre>
5275     */
5276    public static final SColor TRUE_PINK = new SColor(0xFFC0CB, "True Pink");
5277
5278    /**
5279     * This color constant "True Red" has RGB code {@code 0x8F1D21}, red 0.56078434, green 0.11372549, blue 0.12941177, alpha 1, hue 0.99415207, saturation 0.7972028, and value 0.56078434.
5280     * It can be represented as a packed float with the constant {@code -0x1.423b1ep125F}.
5281     * <pre>
5282     * <font style='background-color: #8F1D21;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F1D21; color: #000000'>&nbsp;@&nbsp;</font>
5283     * <font style='background-color: #8F1D21;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8F1D21'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8F1D21'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8F1D21'>&nbsp;@&nbsp;</font><font style='background-color: #8F1D21; color: #888888'>&nbsp;@&nbsp;</font>
5284     * <font style='background-color: #8F1D21;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F1D21; color: #ffffff'>&nbsp;@&nbsp;</font>
5285     * </pre>
5286     */
5287    public static final SColor TRUE_RED = new SColor(0x8F1D21, "True Red");
5288
5289    /**
5290     * This color constant "Turmeric" has RGB code {@code 0xE69B3A}, red 0.9019608, green 0.60784316, blue 0.22745098, alpha 1, hue 0.09399223, saturation 0.7478261, and value 0.9019608.
5291     * It can be represented as a packed float with the constant {@code -0x1.7537ccp125F}.
5292     * <pre>
5293     * <font style='background-color: #E69B3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E69B3A; color: #000000'>&nbsp;@&nbsp;</font>
5294     * <font style='background-color: #E69B3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E69B3A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E69B3A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E69B3A'>&nbsp;@&nbsp;</font><font style='background-color: #E69B3A; color: #888888'>&nbsp;@&nbsp;</font>
5295     * <font style='background-color: #E69B3A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E69B3A; color: #ffffff'>&nbsp;@&nbsp;</font>
5296     * </pre>
5297     */
5298    public static final SColor TURMERIC = new SColor(0xE69B3A, "Turmeric");
5299
5300    /**
5301     * This color constant "Turquoise" has RGB code {@code 0x30D5C8}, red 0.1882353, green 0.8352941, blue 0.78431374, alpha 1, hue 0.48686862, saturation 0.7746479, and value 0.8352941.
5302     * It can be represented as a packed float with the constant {@code -0x1.91aa6p126F}.
5303     * <pre>
5304     * <font style='background-color: #30D5C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #30D5C8; color: #000000'>&nbsp;@&nbsp;</font>
5305     * <font style='background-color: #30D5C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #30D5C8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #30D5C8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #30D5C8'>&nbsp;@&nbsp;</font><font style='background-color: #30D5C8; color: #888888'>&nbsp;@&nbsp;</font>
5306     * <font style='background-color: #30D5C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #30D5C8; color: #ffffff'>&nbsp;@&nbsp;</font>
5307     * </pre>
5308     */
5309    public static final SColor TURQUOISE = new SColor(0x30D5C8, "Turquoise");
5310
5311    /**
5312     * This color constant "Tyrian Purple" has RGB code {@code 0x66023C}, red 0.4, green 0.007843138, blue 0.23529412, alpha 1, hue 0.90333325, saturation 0.98039216, and value 0.4.
5313     * It can be represented as a packed float with the constant {@code -0x1.7804ccp125F}.
5314     * <pre>
5315     * <font style='background-color: #66023C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #66023C; color: #000000'>&nbsp;@&nbsp;</font>
5316     * <font style='background-color: #66023C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #66023C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #66023C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #66023C'>&nbsp;@&nbsp;</font><font style='background-color: #66023C; color: #888888'>&nbsp;@&nbsp;</font>
5317     * <font style='background-color: #66023C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #66023C; color: #ffffff'>&nbsp;@&nbsp;</font>
5318     * </pre>
5319     */
5320    public static final SColor TYRIAN_PURPLE = new SColor(0x66023C, "Tyrian Purple");
5321
5322    /**
5323     * This color constant "Ultramarine" has RGB code {@code 0x120A8F}, red 0.07058824, green 0.039215688, blue 0.56078434, alpha 1, hue 0.6766919, saturation 0.9300699, and value 0.56078434.
5324     * It can be represented as a packed float with the constant {@code -0x1.1e1424p126F}.
5325     * <pre>
5326     * <font style='background-color: #120A8F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #120A8F; color: #000000'>&nbsp;@&nbsp;</font>
5327     * <font style='background-color: #120A8F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #120A8F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #120A8F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #120A8F'>&nbsp;@&nbsp;</font><font style='background-color: #120A8F; color: #888888'>&nbsp;@&nbsp;</font>
5328     * <font style='background-color: #120A8F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #120A8F; color: #ffffff'>&nbsp;@&nbsp;</font>
5329     * </pre>
5330     */
5331    public static final SColor ULTRAMARINE = new SColor(0x120A8F, "Ultramarine");
5332
5333    /**
5334     * This color constant "Ultramarine Dye" has RGB code {@code 0x5D8CAE}, red 0.3647059, green 0.54901963, blue 0.68235296, alpha 1, hue 0.56995904, saturation 0.46551725, and value 0.68235296.
5335     * It can be represented as a packed float with the constant {@code -0x1.5d18bap126F}.
5336     * <pre>
5337     * <font style='background-color: #5D8CAE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5D8CAE; color: #000000'>&nbsp;@&nbsp;</font>
5338     * <font style='background-color: #5D8CAE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5D8CAE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5D8CAE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5D8CAE'>&nbsp;@&nbsp;</font><font style='background-color: #5D8CAE; color: #888888'>&nbsp;@&nbsp;</font>
5339     * <font style='background-color: #5D8CAE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5D8CAE; color: #ffffff'>&nbsp;@&nbsp;</font>
5340     * </pre>
5341     */
5342    public static final SColor ULTRAMARINE_DYE = new SColor(0x5D8CAE, "Ultramarine Dye");
5343
5344    /**
5345     * This color constant "Unbleached Silk" has RGB code {@code 0xFFDDCA}, red 1.0, green 0.8666667, blue 0.7921569, alpha 1, hue 0.05974853, saturation 0.20784312, and value 1.0.
5346     * It can be represented as a packed float with the constant {@code -0x1.95bbfep126F}.
5347     * <pre>
5348     * <font style='background-color: #FFDDCA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFDDCA; color: #000000'>&nbsp;@&nbsp;</font>
5349     * <font style='background-color: #FFDDCA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFDDCA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFDDCA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFDDCA'>&nbsp;@&nbsp;</font><font style='background-color: #FFDDCA; color: #888888'>&nbsp;@&nbsp;</font>
5350     * <font style='background-color: #FFDDCA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFDDCA; color: #ffffff'>&nbsp;@&nbsp;</font>
5351     * </pre>
5352     */
5353    public static final SColor UNBLEACHED_SILK = new SColor(0xFFDDCA, "Unbleached Silk");
5354
5355    /**
5356     * This color constant "Undried Wall" has RGB code {@code 0x785E49}, red 0.47058824, green 0.36862746, blue 0.28627452, alpha 1, hue 0.074468136, saturation 0.39166665, and value 0.47058824.
5357     * It can be represented as a packed float with the constant {@code -0x1.92bcfp125F}.
5358     * <pre>
5359     * <font style='background-color: #785E49;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #785E49; color: #000000'>&nbsp;@&nbsp;</font>
5360     * <font style='background-color: #785E49;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #785E49'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #785E49'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #785E49'>&nbsp;@&nbsp;</font><font style='background-color: #785E49; color: #888888'>&nbsp;@&nbsp;</font>
5361     * <font style='background-color: #785E49;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #785E49; color: #ffffff'>&nbsp;@&nbsp;</font>
5362     * </pre>
5363     */
5364    public static final SColor UNDRIED_WALL = new SColor(0x785E49, "Undried Wall");
5365
5366    /**
5367     * This color constant "Vanishing Red Mouse" has RGB code {@code 0x44312E}, red 0.26666668, green 0.19215687, blue 0.18039216, alpha 1, hue 0.022727251, saturation 0.32352942, and value 0.26666668.
5368     * It can be represented as a packed float with the constant {@code -0x1.5c6288p125F}.
5369     * <pre>
5370     * <font style='background-color: #44312E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #44312E; color: #000000'>&nbsp;@&nbsp;</font>
5371     * <font style='background-color: #44312E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #44312E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #44312E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #44312E'>&nbsp;@&nbsp;</font><font style='background-color: #44312E; color: #888888'>&nbsp;@&nbsp;</font>
5372     * <font style='background-color: #44312E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #44312E; color: #ffffff'>&nbsp;@&nbsp;</font>
5373     * </pre>
5374     */
5375    public static final SColor VANISHING_RED_MOUSE = new SColor(0x44312E, "Vanishing Red Mouse");
5376
5377    /**
5378     * This color constant "Vegas Gold" has RGB code {@code 0xC5B358}, red 0.77254903, green 0.7019608, blue 0.34509805, alpha 1, hue 0.13914382, saturation 0.5532995, and value 0.77254903.
5379     * It can be represented as a packed float with the constant {@code -0x1.b1678ap125F}.
5380     * <pre>
5381     * <font style='background-color: #C5B358;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C5B358; color: #000000'>&nbsp;@&nbsp;</font>
5382     * <font style='background-color: #C5B358;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C5B358'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C5B358'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C5B358'>&nbsp;@&nbsp;</font><font style='background-color: #C5B358; color: #888888'>&nbsp;@&nbsp;</font>
5383     * <font style='background-color: #C5B358;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C5B358; color: #ffffff'>&nbsp;@&nbsp;</font>
5384     * </pre>
5385     */
5386    public static final SColor VEGAS_GOLD = new SColor(0xC5B358, "Vegas Gold");
5387
5388    /**
5389     * This color constant "Velvet" has RGB code {@code 0x224634}, red 0.13333334, green 0.27450982, blue 0.20392157, alpha 1, hue 0.41666675, saturation 0.5142857, and value 0.27450982.
5390     * It can be represented as a packed float with the constant {@code -0x1.688c44p125F}.
5391     * <pre>
5392     * <font style='background-color: #224634;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #224634; color: #000000'>&nbsp;@&nbsp;</font>
5393     * <font style='background-color: #224634;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #224634'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #224634'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #224634'>&nbsp;@&nbsp;</font><font style='background-color: #224634; color: #888888'>&nbsp;@&nbsp;</font>
5394     * <font style='background-color: #224634;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #224634; color: #ffffff'>&nbsp;@&nbsp;</font>
5395     * </pre>
5396     */
5397    public static final SColor VELVET = new SColor(0x224634, "Velvet");
5398
5399    /**
5400     * This color constant "Vermillion" has RGB code {@code 0xE34234}, red 0.8901961, green 0.25882354, blue 0.20392157, alpha 1, hue 0.013333321, saturation 0.7709251, and value 0.8901961.
5401     * It can be represented as a packed float with the constant {@code -0x1.6885c6p125F}.
5402     * <pre>
5403     * <font style='background-color: #E34234;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E34234; color: #000000'>&nbsp;@&nbsp;</font>
5404     * <font style='background-color: #E34234;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E34234'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E34234'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E34234'>&nbsp;@&nbsp;</font><font style='background-color: #E34234; color: #888888'>&nbsp;@&nbsp;</font>
5405     * <font style='background-color: #E34234;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E34234; color: #ffffff'>&nbsp;@&nbsp;</font>
5406     * </pre>
5407     */
5408    public static final SColor VERMILION = new SColor(0xE34234, "Vermillion");
5409
5410    /**
5411     * This color constant "Vine Grape" has RGB code {@code 0x6D2B50}, red 0.42745098, green 0.16862746, blue 0.3137255, alpha 1, hue 0.9065657, saturation 0.6055046, and value 0.42745098.
5412     * It can be represented as a packed float with the constant {@code -0x1.a056dap125F}.
5413     * <pre>
5414     * <font style='background-color: #6D2B50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6D2B50; color: #000000'>&nbsp;@&nbsp;</font>
5415     * <font style='background-color: #6D2B50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6D2B50'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6D2B50'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6D2B50'>&nbsp;@&nbsp;</font><font style='background-color: #6D2B50; color: #888888'>&nbsp;@&nbsp;</font>
5416     * <font style='background-color: #6D2B50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6D2B50; color: #ffffff'>&nbsp;@&nbsp;</font>
5417     * </pre>
5418     */
5419    public static final SColor VINE_GRAPE = new SColor(0x6D2B50, "Vine Grape");
5420
5421    /**
5422     * This color constant "Violet" has RGB code {@code 0x8B00FF}, red 0.54509807, green 0.0, blue 1.0, alpha 1, hue 0.7575165, saturation 1.0, and value 1.0.
5423     * It can be represented as a packed float with the constant {@code -0x1.fe0116p126F}.
5424     * <pre>
5425     * <font style='background-color: #8B00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8B00FF; color: #000000'>&nbsp;@&nbsp;</font>
5426     * <font style='background-color: #8B00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8B00FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8B00FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8B00FF'>&nbsp;@&nbsp;</font><font style='background-color: #8B00FF; color: #888888'>&nbsp;@&nbsp;</font>
5427     * <font style='background-color: #8B00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8B00FF; color: #ffffff'>&nbsp;@&nbsp;</font>
5428     * </pre>
5429     */
5430    public static final SColor VIOLET = new SColor(0x8B00FF, "Violet");
5431
5432    /**
5433     * This color constant "Violet Dye" has RGB code {@code 0x5B3256}, red 0.35686275, green 0.19607843, blue 0.3372549, alpha 1, hue 0.85365856, saturation 0.45054945, and value 0.35686275.
5434     * It can be represented as a packed float with the constant {@code -0x1.ac64b6p125F}.
5435     * <pre>
5436     * <font style='background-color: #5B3256;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5B3256; color: #000000'>&nbsp;@&nbsp;</font>
5437     * <font style='background-color: #5B3256;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5B3256'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5B3256'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5B3256'>&nbsp;@&nbsp;</font><font style='background-color: #5B3256; color: #888888'>&nbsp;@&nbsp;</font>
5438     * <font style='background-color: #5B3256;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5B3256; color: #ffffff'>&nbsp;@&nbsp;</font>
5439     * </pre>
5440     */
5441    public static final SColor VIOLET_DYE = new SColor(0x5B3256, "Violet Dye");
5442
5443    /**
5444     * This color constant "Viridian" has RGB code {@code 0x40826D}, red 0.2509804, green 0.50980395, blue 0.42745098, alpha 1, hue 0.44696975, saturation 0.5076923, and value 0.50980395.
5445     * It can be represented as a packed float with the constant {@code -0x1.db048p125F}.
5446     * <pre>
5447     * <font style='background-color: #40826D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #40826D; color: #000000'>&nbsp;@&nbsp;</font>
5448     * <font style='background-color: #40826D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #40826D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #40826D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #40826D'>&nbsp;@&nbsp;</font><font style='background-color: #40826D; color: #888888'>&nbsp;@&nbsp;</font>
5449     * <font style='background-color: #40826D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #40826D; color: #ffffff'>&nbsp;@&nbsp;</font>
5450     * </pre>
5451     */
5452    public static final SColor VIRIDIAN = new SColor(0x40826D, "Viridian");
5453
5454    /**
5455     * This color constant "Walnut" has RGB code {@code 0x9F7462}, red 0.62352943, green 0.45490196, blue 0.38431373, alpha 1, hue 0.04918027, saturation 0.3836478, and value 0.62352943.
5456     * It can be represented as a packed float with the constant {@code -0x1.c4e93ep125F}.
5457     * <pre>
5458     * <font style='background-color: #9F7462;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9F7462; color: #000000'>&nbsp;@&nbsp;</font>
5459     * <font style='background-color: #9F7462;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9F7462'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9F7462'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9F7462'>&nbsp;@&nbsp;</font><font style='background-color: #9F7462; color: #888888'>&nbsp;@&nbsp;</font>
5460     * <font style='background-color: #9F7462;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9F7462; color: #ffffff'>&nbsp;@&nbsp;</font>
5461     * </pre>
5462     */
5463    public static final SColor WALNUT = new SColor(0x9F7462, "Walnut");
5464
5465    /**
5466     * This color constant "Washed Out Crimson" has RGB code {@code 0xFFB3A7}, red 1.0, green 0.7019608, blue 0.654902, alpha 1, hue 0.02272737, saturation 0.34509802, and value 1.0.
5467     * It can be represented as a packed float with the constant {@code -0x1.4f67fep126F}.
5468     * <pre>
5469     * <font style='background-color: #FFB3A7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB3A7; color: #000000'>&nbsp;@&nbsp;</font>
5470     * <font style='background-color: #FFB3A7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFB3A7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFB3A7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFB3A7'>&nbsp;@&nbsp;</font><font style='background-color: #FFB3A7; color: #888888'>&nbsp;@&nbsp;</font>
5471     * <font style='background-color: #FFB3A7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFB3A7; color: #ffffff'>&nbsp;@&nbsp;</font>
5472     * </pre>
5473     */
5474    public static final SColor WASHED_OUT_CRIMSON = new SColor(0xFFB3A7, "Washed Out Crimson");
5475
5476    /**
5477     * This color constant "Washed Out Persimmon" has RGB code {@code 0xEC8254}, red 0.9254902, green 0.50980395, blue 0.32941177, alpha 1, hue 0.050438643, saturation 0.64406776, and value 0.9254902.
5478     * It can be represented as a packed float with the constant {@code -0x1.a905d8p125F}.
5479     * <pre>
5480     * <font style='background-color: #EC8254;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EC8254; color: #000000'>&nbsp;@&nbsp;</font>
5481     * <font style='background-color: #EC8254;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EC8254'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EC8254'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EC8254'>&nbsp;@&nbsp;</font><font style='background-color: #EC8254; color: #888888'>&nbsp;@&nbsp;</font>
5482     * <font style='background-color: #EC8254;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EC8254; color: #ffffff'>&nbsp;@&nbsp;</font>
5483     * </pre>
5484     */
5485    public static final SColor WASHED_OUT_PERSIMMON = new SColor(0xEC8254, "Washed Out Persimmon");
5486
5487    /**
5488     * This color constant "Water" has RGB code {@code 0x86ABA5}, red 0.5254902, green 0.67058825, blue 0.64705884, alpha 1, hue 0.472973, saturation 0.21637425, and value 0.67058825.
5489     * It can be represented as a packed float with the constant {@code -0x1.4b570cp126F}.
5490     * <pre>
5491     * <font style='background-color: #86ABA5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #86ABA5; color: #000000'>&nbsp;@&nbsp;</font>
5492     * <font style='background-color: #86ABA5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #86ABA5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #86ABA5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #86ABA5'>&nbsp;@&nbsp;</font><font style='background-color: #86ABA5; color: #888888'>&nbsp;@&nbsp;</font>
5493     * <font style='background-color: #86ABA5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #86ABA5; color: #ffffff'>&nbsp;@&nbsp;</font>
5494     * </pre>
5495     */
5496    public static final SColor WATER = new SColor(0x86ABA5, "Water");
5497
5498    /**
5499     * This color constant "Water Persimmon" has RGB code {@code 0xB56C60}, red 0.70980394, green 0.42352942, blue 0.3764706, alpha 1, hue 0.02352941, saturation 0.46961325, and value 0.70980394.
5500     * It can be represented as a packed float with the constant {@code -0x1.c0d96ap125F}.
5501     * <pre>
5502     * <font style='background-color: #B56C60;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B56C60; color: #000000'>&nbsp;@&nbsp;</font>
5503     * <font style='background-color: #B56C60;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B56C60'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B56C60'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B56C60'>&nbsp;@&nbsp;</font><font style='background-color: #B56C60; color: #888888'>&nbsp;@&nbsp;</font>
5504     * <font style='background-color: #B56C60;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B56C60; color: #ffffff'>&nbsp;@&nbsp;</font>
5505     * </pre>
5506     */
5507    public static final SColor WATER_PERSIMMON = new SColor(0xB56C60, "Water Persimmon");
5508
5509    /**
5510     * This color constant "Wheat" has RGB code {@code 0xF5DEB3}, red 0.9607843, green 0.87058824, blue 0.7019608, alpha 1, hue 0.10858595, saturation 0.26938775, and value 0.9607843.
5511     * It can be represented as a packed float with the constant {@code -0x1.67bdeap126F}.
5512     * <pre>
5513     * <font style='background-color: #F5DEB3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F5DEB3; color: #000000'>&nbsp;@&nbsp;</font>
5514     * <font style='background-color: #F5DEB3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F5DEB3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F5DEB3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F5DEB3'>&nbsp;@&nbsp;</font><font style='background-color: #F5DEB3; color: #888888'>&nbsp;@&nbsp;</font>
5515     * <font style='background-color: #F5DEB3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F5DEB3; color: #ffffff'>&nbsp;@&nbsp;</font>
5516     * </pre>
5517     */
5518    public static final SColor WHEAT = new SColor(0xF5DEB3, "Wheat");
5519
5520    /**
5521     * This color constant "White" has RGB code {@code 0xFFFFFF}, red 1.0, green 1.0, blue 1.0, alpha 1, hue 0.0, saturation 0.0, and value 1.0.
5522     * It can be represented as a packed float with the constant {@code -0x1.fffffep126F}.
5523     * <pre>
5524     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFFF; color: #000000'>&nbsp;@&nbsp;</font>
5525     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #FFFFFF; color: #888888'>&nbsp;@&nbsp;</font>
5526     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
5527     * </pre>
5528     */
5529    public static final SColor WHITE = new SColor(0xFFFFFF, "White");
5530
5531    /**
5532     * This color constant "White Mouse" has RGB code {@code 0xB9A193}, red 0.7254902, green 0.6313726, blue 0.5764706, alpha 1, hue 0.061403513, saturation 0.20540538, and value 0.7254902.
5533     * It can be represented as a packed float with the constant {@code -0x1.274372p126F}.
5534     * <pre>
5535     * <font style='background-color: #B9A193;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B9A193; color: #000000'>&nbsp;@&nbsp;</font>
5536     * <font style='background-color: #B9A193;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B9A193'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B9A193'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B9A193'>&nbsp;@&nbsp;</font><font style='background-color: #B9A193; color: #888888'>&nbsp;@&nbsp;</font>
5537     * <font style='background-color: #B9A193;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B9A193; color: #ffffff'>&nbsp;@&nbsp;</font>
5538     * </pre>
5539     */
5540    public static final SColor WHITE_MOUSE = new SColor(0xB9A193, "White Mouse");
5541
5542    /**
5543     * This color constant "White Oak" has RGB code {@code 0xCE9F6F}, red 0.80784315, green 0.62352943, blue 0.43529412, alpha 1, hue 0.084210515, saturation 0.46116504, and value 0.80784315.
5544     * It can be represented as a packed float with the constant {@code -0x1.df3f9cp125F}.
5545     * <pre>
5546     * <font style='background-color: #CE9F6F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CE9F6F; color: #000000'>&nbsp;@&nbsp;</font>
5547     * <font style='background-color: #CE9F6F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CE9F6F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CE9F6F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CE9F6F'>&nbsp;@&nbsp;</font><font style='background-color: #CE9F6F; color: #888888'>&nbsp;@&nbsp;</font>
5548     * <font style='background-color: #CE9F6F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CE9F6F; color: #ffffff'>&nbsp;@&nbsp;</font>
5549     * </pre>
5550     */
5551    public static final SColor WHITE_OAK = new SColor(0xCE9F6F, "White Oak");
5552
5553    /**
5554     * This color constant "White Tea Dye" has RGB code {@code 0xC48E69}, red 0.76862746, green 0.5568628, blue 0.4117647, alpha 1, hue 0.067765474, saturation 0.46428573, and value 0.76862746.
5555     * It can be represented as a packed float with the constant {@code -0x1.d31d88p125F}.
5556     * <pre>
5557     * <font style='background-color: #C48E69;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C48E69; color: #000000'>&nbsp;@&nbsp;</font>
5558     * <font style='background-color: #C48E69;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C48E69'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C48E69'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C48E69'>&nbsp;@&nbsp;</font><font style='background-color: #C48E69; color: #888888'>&nbsp;@&nbsp;</font>
5559     * <font style='background-color: #C48E69;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C48E69; color: #ffffff'>&nbsp;@&nbsp;</font>
5560     * </pre>
5561     */
5562    public static final SColor WHITE_TEA_DYE = new SColor(0xC48E69, "White Tea Dye");
5563
5564    /**
5565     * This color constant "Whitish Green" has RGB code {@code 0xA5BA93}, red 0.64705884, green 0.7294118, blue 0.5764706, alpha 1, hue 0.25641036, saturation 0.2096774, and value 0.7294118.
5566     * It can be represented as a packed float with the constant {@code -0x1.27754ap126F}.
5567     * <pre>
5568     * <font style='background-color: #A5BA93;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A5BA93; color: #000000'>&nbsp;@&nbsp;</font>
5569     * <font style='background-color: #A5BA93;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A5BA93'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A5BA93'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A5BA93'>&nbsp;@&nbsp;</font><font style='background-color: #A5BA93; color: #888888'>&nbsp;@&nbsp;</font>
5570     * <font style='background-color: #A5BA93;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A5BA93; color: #ffffff'>&nbsp;@&nbsp;</font>
5571     * </pre>
5572     */
5573    public static final SColor WHITISH_GREEN = new SColor(0xA5BA93, "Whitish Green");
5574
5575    /**
5576     * This color constant "Willow Dye" has RGB code {@code 0x8C9E5E}, red 0.54901963, green 0.61960787, blue 0.36862746, alpha 1, hue 0.21354175, saturation 0.4050633, and value 0.61960787.
5577     * It can be represented as a packed float with the constant {@code -0x1.bd3d18p125F}.
5578     * <pre>
5579     * <font style='background-color: #8C9E5E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C9E5E; color: #000000'>&nbsp;@&nbsp;</font>
5580     * <font style='background-color: #8C9E5E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8C9E5E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8C9E5E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8C9E5E'>&nbsp;@&nbsp;</font><font style='background-color: #8C9E5E; color: #888888'>&nbsp;@&nbsp;</font>
5581     * <font style='background-color: #8C9E5E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C9E5E; color: #ffffff'>&nbsp;@&nbsp;</font>
5582     * </pre>
5583     */
5584    public static final SColor WILLOW_DYE = new SColor(0x8C9E5E, "Willow Dye");
5585
5586    /**
5587     * This color constant "Willow Grey" has RGB code {@code 0x817B69}, red 0.5058824, green 0.48235294, blue 0.4117647, alpha 1, hue 0.125, saturation 0.18604656, and value 0.5058824.
5588     * It can be represented as a packed float with the constant {@code -0x1.d2f702p125F}.
5589     * <pre>
5590     * <font style='background-color: #817B69;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #817B69; color: #000000'>&nbsp;@&nbsp;</font>
5591     * <font style='background-color: #817B69;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #817B69'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #817B69'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #817B69'>&nbsp;@&nbsp;</font><font style='background-color: #817B69; color: #888888'>&nbsp;@&nbsp;</font>
5592     * <font style='background-color: #817B69;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #817B69; color: #ffffff'>&nbsp;@&nbsp;</font>
5593     * </pre>
5594     */
5595    public static final SColor WILLOW_GREY = new SColor(0x817B69, "Willow Grey");
5596
5597    /**
5598     * This color constant "Willow Tea" has RGB code {@code 0x9C8A4D}, red 0.6117647, green 0.5411765, blue 0.3019608, alpha 1, hue 0.12869191, saturation 0.50641024, and value 0.6117647.
5599     * It can be represented as a packed float with the constant {@code -0x1.9b1538p125F}.
5600     * <pre>
5601     * <font style='background-color: #9C8A4D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9C8A4D; color: #000000'>&nbsp;@&nbsp;</font>
5602     * <font style='background-color: #9C8A4D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9C8A4D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9C8A4D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9C8A4D'>&nbsp;@&nbsp;</font><font style='background-color: #9C8A4D; color: #888888'>&nbsp;@&nbsp;</font>
5603     * <font style='background-color: #9C8A4D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9C8A4D; color: #ffffff'>&nbsp;@&nbsp;</font>
5604     * </pre>
5605     */
5606    public static final SColor WILLOW_TEA = new SColor(0x9C8A4D, "Willow Tea");
5607
5608    /**
5609     * This color constant "Wilted Lawn Clippings" has RGB code {@code 0xAB4C3D}, red 0.67058825, green 0.29803923, blue 0.23921569, alpha 1, hue 0.022727251, saturation 0.6432749, and value 0.67058825.
5610     * It can be represented as a packed float with the constant {@code -0x1.7a9956p125F}.
5611     * <pre>
5612     * <font style='background-color: #AB4C3D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB4C3D; color: #000000'>&nbsp;@&nbsp;</font>
5613     * <font style='background-color: #AB4C3D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AB4C3D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AB4C3D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AB4C3D'>&nbsp;@&nbsp;</font><font style='background-color: #AB4C3D; color: #888888'>&nbsp;@&nbsp;</font>
5614     * <font style='background-color: #AB4C3D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB4C3D; color: #ffffff'>&nbsp;@&nbsp;</font>
5615     * </pre>
5616     */
5617    public static final SColor WILTED_LAWN_CLIPPINGS = new SColor(0xAB4C3D, "Wilted Lawn Clippings");
5618
5619    /**
5620     * This color constant "Willow Leaves Underside" has RGB code {@code 0xBCB58C}, red 0.7372549, green 0.70980394, blue 0.54901963, alpha 1, hue 0.14236116, saturation 0.25531912, and value 0.7372549.
5621     * It can be represented as a packed float with the constant {@code -0x1.196b78p126F}.
5622     * <pre>
5623     * <font style='background-color: #BCB58C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BCB58C; color: #000000'>&nbsp;@&nbsp;</font>
5624     * <font style='background-color: #BCB58C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BCB58C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BCB58C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BCB58C'>&nbsp;@&nbsp;</font><font style='background-color: #BCB58C; color: #888888'>&nbsp;@&nbsp;</font>
5625     * <font style='background-color: #BCB58C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BCB58C; color: #ffffff'>&nbsp;@&nbsp;</font>
5626     * </pre>
5627     */
5628    public static final SColor WILLOW_LEAVES_UNDERSIDE = new SColor(0xBCB58C, "Willow Leaves Underside");
5629
5630    /**
5631     * This color constant "Wisteria" has RGB code {@code 0xC9A0DC}, red 0.7882353, green 0.627451, blue 0.8627451, alpha 1, hue 0.7805557, saturation 0.27272725, and value 0.8627451.
5632     * It can be represented as a packed float with the constant {@code -0x1.b94192p126F}.
5633     * <pre>
5634     * <font style='background-color: #C9A0DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C9A0DC; color: #000000'>&nbsp;@&nbsp;</font>
5635     * <font style='background-color: #C9A0DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C9A0DC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C9A0DC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C9A0DC'>&nbsp;@&nbsp;</font><font style='background-color: #C9A0DC; color: #888888'>&nbsp;@&nbsp;</font>
5636     * <font style='background-color: #C9A0DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C9A0DC; color: #ffffff'>&nbsp;@&nbsp;</font>
5637     * </pre>
5638     */
5639    public static final SColor WISTERIA = new SColor(0xC9A0DC, "Wisteria");
5640
5641    /**
5642     * This color constant "Wisteria Dye" has RGB code {@code 0x89729E}, red 0.5372549, green 0.44705883, blue 0.61960787, alpha 1, hue 0.753788, saturation 0.27848104, and value 0.61960787.
5643     * It can be represented as a packed float with the constant {@code -0x1.3ce512p126F}.
5644     * <pre>
5645     * <font style='background-color: #89729E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #89729E; color: #000000'>&nbsp;@&nbsp;</font>
5646     * <font style='background-color: #89729E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #89729E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #89729E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #89729E'>&nbsp;@&nbsp;</font><font style='background-color: #89729E; color: #888888'>&nbsp;@&nbsp;</font>
5647     * <font style='background-color: #89729E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #89729E; color: #ffffff'>&nbsp;@&nbsp;</font>
5648     * </pre>
5649     */
5650    public static final SColor WISTERIA_DYE = new SColor(0x89729E, "Wisteria Dye");
5651
5652    /**
5653     * This color constant "Wisteria Purple" has RGB code {@code 0x875F9A}, red 0.5294118, green 0.37254903, blue 0.6039216, alpha 1, hue 0.7796612, saturation 0.3831169, and value 0.6039216.
5654     * It can be represented as a packed float with the constant {@code -0x1.34bf0ep126F}.
5655     * <pre>
5656     * <font style='background-color: #875F9A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #875F9A; color: #000000'>&nbsp;@&nbsp;</font>
5657     * <font style='background-color: #875F9A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #875F9A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #875F9A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #875F9A'>&nbsp;@&nbsp;</font><font style='background-color: #875F9A; color: #888888'>&nbsp;@&nbsp;</font>
5658     * <font style='background-color: #875F9A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #875F9A; color: #ffffff'>&nbsp;@&nbsp;</font>
5659     * </pre>
5660     */
5661    public static final SColor WISTERIA_PURPLE = new SColor(0x875F9A, "Wisteria Purple");
5662
5663    /**
5664     * This color constant "Yellow" has RGB code {@code 0xFFFF00}, red 1.0, green 1.0, blue 0.0, alpha 1, hue 0.16666675, saturation 1.0, and value 1.0.
5665     * It can be represented as a packed float with the constant {@code -0x1.01fffep125F}.
5666     * <pre>
5667     * <font style='background-color: #FFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFF00; color: #000000'>&nbsp;@&nbsp;</font>
5668     * <font style='background-color: #FFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #FFFF00; color: #888888'>&nbsp;@&nbsp;</font>
5669     * <font style='background-color: #FFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFF00; color: #ffffff'>&nbsp;@&nbsp;</font>
5670     * </pre>
5671     */
5672    public static final SColor YELLOW = new SColor(0xFFFF00, "Yellow");
5673
5674    /**
5675     * This color constant "Yellow Green" has RGB code {@code 0x9ACD32}, red 0.6039216, green 0.8039216, blue 0.19607843, alpha 1, hue 0.22150552, saturation 0.75609756, and value 0.8039216.
5676     * It can be represented as a packed float with the constant {@code -0x1.659b34p125F}.
5677     * <pre>
5678     * <font style='background-color: #9ACD32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9ACD32; color: #000000'>&nbsp;@&nbsp;</font>
5679     * <font style='background-color: #9ACD32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9ACD32'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9ACD32'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9ACD32'>&nbsp;@&nbsp;</font><font style='background-color: #9ACD32; color: #888888'>&nbsp;@&nbsp;</font>
5680     * <font style='background-color: #9ACD32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9ACD32; color: #ffffff'>&nbsp;@&nbsp;</font>
5681     * </pre>
5682     */
5683    public static final SColor YELLOW_GREEN = new SColor(0x9ACD32, "Yellow Green");
5684
5685    /**
5686     * This color constant "Yellow Sea Pine Brown" has RGB code {@code 0x896C39}, red 0.5372549, green 0.42352942, blue 0.22352941, alpha 1, hue 0.10625005, saturation 0.58394164, and value 0.5372549.
5687     * It can be represented as a packed float with the constant {@code -0x1.72d912p125F}.
5688     * <pre>
5689     * <font style='background-color: #896C39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #896C39; color: #000000'>&nbsp;@&nbsp;</font>
5690     * <font style='background-color: #896C39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #896C39'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #896C39'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #896C39'>&nbsp;@&nbsp;</font><font style='background-color: #896C39; color: #888888'>&nbsp;@&nbsp;</font>
5691     * <font style='background-color: #896C39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #896C39; color: #ffffff'>&nbsp;@&nbsp;</font>
5692     * </pre>
5693     */
5694    public static final SColor YELLOW_SEA_PINE_BROWN = new SColor(0x896C39, "Yellow Sea Pine Brown");
5695
5696    /**
5697     * This color constant "Young Bamboo" has RGB code {@code 0x6B9362}, red 0.41960785, green 0.5764706, blue 0.38431373, alpha 1, hue 0.30272114, saturation 0.33333334, and value 0.5764706.
5698     * It can be represented as a packed float with the constant {@code -0x1.c526d6p125F}.
5699     * <pre>
5700     * <font style='background-color: #6B9362;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6B9362; color: #000000'>&nbsp;@&nbsp;</font>
5701     * <font style='background-color: #6B9362;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6B9362'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6B9362'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6B9362'>&nbsp;@&nbsp;</font><font style='background-color: #6B9362; color: #888888'>&nbsp;@&nbsp;</font>
5702     * <font style='background-color: #6B9362;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6B9362; color: #ffffff'>&nbsp;@&nbsp;</font>
5703     * </pre>
5704     */
5705    public static final SColor YOUNG_BAMBOO = new SColor(0x6B9362, "Young Bamboo");
5706
5707    /**
5708     * This color constant "Zinnwaldite" has RGB code {@code 0xEBC2AF}, red 0.92156863, green 0.7607843, blue 0.6862745, alpha 1, hue 0.052777886, saturation 0.25531912, and value 0.92156863.
5709     * It can be represented as a packed float with the constant {@code -0x1.5f85d6p126F}.
5710     * <pre>
5711     * <font style='background-color: #EBC2AF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EBC2AF; color: #000000'>&nbsp;@&nbsp;</font>
5712     * <font style='background-color: #EBC2AF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EBC2AF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EBC2AF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EBC2AF'>&nbsp;@&nbsp;</font><font style='background-color: #EBC2AF; color: #888888'>&nbsp;@&nbsp;</font>
5713     * <font style='background-color: #EBC2AF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EBC2AF; color: #ffffff'>&nbsp;@&nbsp;</font>
5714     * </pre>
5715     */
5716    public static final SColor ZINNWALDITE = new SColor(0xEBC2AF, "Zinnwaldite");
5717
5718    /**
5719     * This color constant "DB Midnight" has RGB code {@code 0x140C1C}, red 0.078431375, green 0.047058824, blue 0.10980392, alpha 1, hue 0.75000024, saturation 0.57142854, and value 0.10980392.
5720     * It can be represented as a packed float with the constant {@code -0x1.381828p125F}.
5721     * <pre>
5722     * <font style='background-color: #140C1C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #140C1C; color: #000000'>&nbsp;@&nbsp;</font>
5723     * <font style='background-color: #140C1C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #140C1C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #140C1C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #140C1C'>&nbsp;@&nbsp;</font><font style='background-color: #140C1C; color: #888888'>&nbsp;@&nbsp;</font>
5724     * <font style='background-color: #140C1C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #140C1C; color: #ffffff'>&nbsp;@&nbsp;</font>
5725     * </pre>
5726     */
5727    public static final SColor DB_MIDNIGHT = new SColor(0x140C1C, "DB Midnight");
5728
5729    /**
5730     * This color constant "DB Dark Leather" has RGB code {@code 0x442434}, red 0.26666668, green 0.14117648, blue 0.20392157, alpha 1, hue 0.9166666, saturation 0.47058824, and value 0.26666668.
5731     * It can be represented as a packed float with the constant {@code -0x1.684888p125F}.
5732     * <pre>
5733     * <font style='background-color: #442434;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #442434; color: #000000'>&nbsp;@&nbsp;</font>
5734     * <font style='background-color: #442434;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #442434'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #442434'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #442434'>&nbsp;@&nbsp;</font><font style='background-color: #442434; color: #888888'>&nbsp;@&nbsp;</font>
5735     * <font style='background-color: #442434;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #442434; color: #ffffff'>&nbsp;@&nbsp;</font>
5736     * </pre>
5737     */
5738    public static final SColor DB_DARK_LEATHER = new SColor(0x442434, "DB Dark Leather");
5739
5740    /**
5741     * This color constant "DB Deep Ocean" has RGB code {@code 0x30346D}, red 0.1882353, green 0.20392157, blue 0.42745098, alpha 1, hue 0.65573764, saturation 0.559633, and value 0.42745098.
5742     * It can be represented as a packed float with the constant {@code -0x1.da686p125F}.
5743     * <pre>
5744     * <font style='background-color: #30346D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #30346D; color: #000000'>&nbsp;@&nbsp;</font>
5745     * <font style='background-color: #30346D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #30346D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #30346D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #30346D'>&nbsp;@&nbsp;</font><font style='background-color: #30346D; color: #888888'>&nbsp;@&nbsp;</font>
5746     * <font style='background-color: #30346D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #30346D; color: #ffffff'>&nbsp;@&nbsp;</font>
5747     * </pre>
5748     */
5749    public static final SColor DB_DEEP_OCEAN = new SColor(0x30346D, "DB Deep Ocean");
5750
5751    /**
5752     * This color constant "DB Lead" has RGB code {@code 0x4E4A4F}, red 0.30588236, green 0.2901961, blue 0.30980393, alpha 1, hue 0.8000002, saturation 0.06329113, and value 0.30980393.
5753     * It can be represented as a packed float with the constant {@code -0x1.9e949cp125F}.
5754     * <pre>
5755     * <font style='background-color: #4E4A4F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4E4A4F; color: #000000'>&nbsp;@&nbsp;</font>
5756     * <font style='background-color: #4E4A4F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4E4A4F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4E4A4F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4E4A4F'>&nbsp;@&nbsp;</font><font style='background-color: #4E4A4F; color: #888888'>&nbsp;@&nbsp;</font>
5757     * <font style='background-color: #4E4A4F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4E4A4F; color: #ffffff'>&nbsp;@&nbsp;</font>
5758     * </pre>
5759     */
5760    public static final SColor DB_LEAD = new SColor(0x4E4A4F, "DB Lead");
5761
5762    /**
5763     * This color constant "DB Earth" has RGB code {@code 0x854C30}, red 0.52156866, green 0.29803923, blue 0.1882353, alpha 1, hue 0.054902077, saturation 0.6390978, and value 0.52156866.
5764     * It can be represented as a packed float with the constant {@code -0x1.60990ap125F}.
5765     * <pre>
5766     * <font style='background-color: #854C30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #854C30; color: #000000'>&nbsp;@&nbsp;</font>
5767     * <font style='background-color: #854C30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #854C30'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #854C30'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #854C30'>&nbsp;@&nbsp;</font><font style='background-color: #854C30; color: #888888'>&nbsp;@&nbsp;</font>
5768     * <font style='background-color: #854C30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #854C30; color: #ffffff'>&nbsp;@&nbsp;</font>
5769     * </pre>
5770     */
5771    public static final SColor DB_EARTH = new SColor(0x854C30, "DB Earth");
5772
5773    /**
5774     * This color constant "DB Forest" has RGB code {@code 0x346524}, red 0.20392157, green 0.39607844, blue 0.14117648, alpha 1, hue 0.29230762, saturation 0.6435643, and value 0.39607844.
5775     * It can be represented as a packed float with the constant {@code -0x1.48ca68p125F}.
5776     * <pre>
5777     * <font style='background-color: #346524;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #346524; color: #000000'>&nbsp;@&nbsp;</font>
5778     * <font style='background-color: #346524;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #346524'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #346524'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #346524'>&nbsp;@&nbsp;</font><font style='background-color: #346524; color: #888888'>&nbsp;@&nbsp;</font>
5779     * <font style='background-color: #346524;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #346524; color: #ffffff'>&nbsp;@&nbsp;</font>
5780     * </pre>
5781     */
5782    public static final SColor DB_FOREST = new SColor(0x346524, "DB Forest");
5783
5784    /**
5785     * This color constant "DB Lobster" has RGB code {@code 0xD04648}, red 0.8156863, green 0.27450982, blue 0.28235295, alpha 1, hue 0.9975845, saturation 0.6634615, and value 0.8156863.
5786     * It can be represented as a packed float with the constant {@code -0x1.908dap125F}.
5787     * <pre>
5788     * <font style='background-color: #D04648;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D04648; color: #000000'>&nbsp;@&nbsp;</font>
5789     * <font style='background-color: #D04648;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D04648'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D04648'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D04648'>&nbsp;@&nbsp;</font><font style='background-color: #D04648; color: #888888'>&nbsp;@&nbsp;</font>
5790     * <font style='background-color: #D04648;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D04648; color: #ffffff'>&nbsp;@&nbsp;</font>
5791     * </pre>
5792     */
5793    public static final SColor DB_LOBSTER = new SColor(0xD04648, "DB Lobster");
5794
5795    /**
5796     * This color constant "DB Drab" has RGB code {@code 0x757161}, red 0.45882353, green 0.44313726, blue 0.38039216, alpha 1, hue 0.13333344, saturation 0.17094016, and value 0.45882353.
5797     * It can be represented as a packed float with the constant {@code -0x1.c2e2eap125F}.
5798     * <pre>
5799     * <font style='background-color: #757161;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #757161; color: #000000'>&nbsp;@&nbsp;</font>
5800     * <font style='background-color: #757161;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #757161'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #757161'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #757161'>&nbsp;@&nbsp;</font><font style='background-color: #757161; color: #888888'>&nbsp;@&nbsp;</font>
5801     * <font style='background-color: #757161;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #757161; color: #ffffff'>&nbsp;@&nbsp;</font>
5802     * </pre>
5803     */
5804    public static final SColor DB_DRAB = new SColor(0x757161, "DB Drab");
5805
5806    /**
5807     * This color constant "DB Cadet Blue" has RGB code {@code 0x597DCE}, red 0.34901962, green 0.49019608, blue 0.80784315, alpha 1, hue 0.6153846, saturation 0.56796116, and value 0.80784315.
5808     * It can be represented as a packed float with the constant {@code -0x1.9cfab2p126F}.
5809     * <pre>
5810     * <font style='background-color: #597DCE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #597DCE; color: #000000'>&nbsp;@&nbsp;</font>
5811     * <font style='background-color: #597DCE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #597DCE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #597DCE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #597DCE'>&nbsp;@&nbsp;</font><font style='background-color: #597DCE; color: #888888'>&nbsp;@&nbsp;</font>
5812     * <font style='background-color: #597DCE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #597DCE; color: #ffffff'>&nbsp;@&nbsp;</font>
5813     * </pre>
5814     */
5815    public static final SColor DB_CADET_BLUE = new SColor(0x597DCE, "DB Cadet Blue");
5816
5817    /**
5818     * This color constant "DB Tawny Brown" has RGB code {@code 0xD27D2C}, red 0.8235294, green 0.49019608, blue 0.17254902, alpha 1, hue 0.08132529, saturation 0.7904762, and value 0.8235294.
5819     * It can be represented as a packed float with the constant {@code -0x1.58fba4p125F}.
5820     * <pre>
5821     * <font style='background-color: #D27D2C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D27D2C; color: #000000'>&nbsp;@&nbsp;</font>
5822     * <font style='background-color: #D27D2C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D27D2C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D27D2C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D27D2C'>&nbsp;@&nbsp;</font><font style='background-color: #D27D2C; color: #888888'>&nbsp;@&nbsp;</font>
5823     * <font style='background-color: #D27D2C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D27D2C; color: #ffffff'>&nbsp;@&nbsp;</font>
5824     * </pre>
5825     */
5826    public static final SColor DB_TAWNY_BROWN = new SColor(0xD27D2C, "DB Tawny Brown");
5827
5828    /**
5829     * This color constant "DB Iron" has RGB code {@code 0x8595A1}, red 0.52156866, green 0.58431375, blue 0.6313726, alpha 1, hue 0.57142854, saturation 0.17391303, and value 0.6313726.
5830     * It can be represented as a packed float with the constant {@code -0x1.432b0ap126F}.
5831     * <pre>
5832     * <font style='background-color: #8595A1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8595A1; color: #000000'>&nbsp;@&nbsp;</font>
5833     * <font style='background-color: #8595A1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8595A1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8595A1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8595A1'>&nbsp;@&nbsp;</font><font style='background-color: #8595A1; color: #888888'>&nbsp;@&nbsp;</font>
5834     * <font style='background-color: #8595A1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8595A1; color: #ffffff'>&nbsp;@&nbsp;</font>
5835     * </pre>
5836     */
5837    public static final SColor DB_IRON = new SColor(0x8595A1, "DB Iron");
5838
5839    /**
5840     * This color constant "DB Pea Soup" has RGB code {@code 0x6DAA2C}, red 0.42745098, green 0.6666667, blue 0.17254902, alpha 1, hue 0.24735463, saturation 0.7411765, and value 0.6666667.
5841     * It can be represented as a packed float with the constant {@code -0x1.5954dap125F}.
5842     * <pre>
5843     * <font style='background-color: #6DAA2C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6DAA2C; color: #000000'>&nbsp;@&nbsp;</font>
5844     * <font style='background-color: #6DAA2C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6DAA2C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6DAA2C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6DAA2C'>&nbsp;@&nbsp;</font><font style='background-color: #6DAA2C; color: #888888'>&nbsp;@&nbsp;</font>
5845     * <font style='background-color: #6DAA2C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6DAA2C; color: #ffffff'>&nbsp;@&nbsp;</font>
5846     * </pre>
5847     */
5848    public static final SColor DB_PEA_SOUP = new SColor(0x6DAA2C, "DB Pea Soup");
5849
5850    /**
5851     * This color constant "DB Putty" has RGB code {@code 0xD2AA99}, red 0.8235294, green 0.6666667, blue 0.6, alpha 1, hue 0.04970765, saturation 0.27142856, and value 0.8235294.
5852     * It can be represented as a packed float with the constant {@code -0x1.3355a4p126F}.
5853     * <pre>
5854     * <font style='background-color: #D2AA99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D2AA99; color: #000000'>&nbsp;@&nbsp;</font>
5855     * <font style='background-color: #D2AA99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D2AA99'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D2AA99'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D2AA99'>&nbsp;@&nbsp;</font><font style='background-color: #D2AA99; color: #888888'>&nbsp;@&nbsp;</font>
5856     * <font style='background-color: #D2AA99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D2AA99; color: #ffffff'>&nbsp;@&nbsp;</font>
5857     * </pre>
5858     */
5859    public static final SColor DB_PUTTY = new SColor(0xD2AA99, "DB Putty");
5860
5861    /**
5862     * This color constant "DB Turquoise" has RGB code {@code 0x6DC2CA}, red 0.42745098, green 0.7607843, blue 0.7921569, alpha 1, hue 0.51433694, saturation 0.46039605, and value 0.7921569.
5863     * It can be represented as a packed float with the constant {@code -0x1.9584dap126F}.
5864     * <pre>
5865     * <font style='background-color: #6DC2CA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6DC2CA; color: #000000'>&nbsp;@&nbsp;</font>
5866     * <font style='background-color: #6DC2CA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6DC2CA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6DC2CA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6DC2CA'>&nbsp;@&nbsp;</font><font style='background-color: #6DC2CA; color: #888888'>&nbsp;@&nbsp;</font>
5867     * <font style='background-color: #6DC2CA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6DC2CA; color: #ffffff'>&nbsp;@&nbsp;</font>
5868     * </pre>
5869     */
5870    public static final SColor DB_TURQUOISE = new SColor(0x6DC2CA, "DB Turquoise");
5871
5872    /**
5873     * This color constant "DB Mustard" has RGB code {@code 0xDAD45E}, red 0.85490197, green 0.83137256, blue 0.36862746, alpha 1, hue 0.15860224, saturation 0.56880736, and value 0.85490197.
5874     * It can be represented as a packed float with the constant {@code -0x1.bda9b4p125F}.
5875     * <pre>
5876     * <font style='background-color: #DAD45E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DAD45E; color: #000000'>&nbsp;@&nbsp;</font>
5877     * <font style='background-color: #DAD45E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DAD45E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DAD45E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DAD45E'>&nbsp;@&nbsp;</font><font style='background-color: #DAD45E; color: #888888'>&nbsp;@&nbsp;</font>
5878     * <font style='background-color: #DAD45E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DAD45E; color: #ffffff'>&nbsp;@&nbsp;</font>
5879     * </pre>
5880     */
5881    public static final SColor DB_MUSTARD = new SColor(0xDAD45E, "DB Mustard");
5882
5883    /**
5884     * This color constant "DB Eggshell" has RGB code {@code 0xDEEED6}, red 0.87058824, green 0.93333334, blue 0.8392157, alpha 1, hue 0.27777767, saturation 0.10084033, and value 0.93333334.
5885     * It can be represented as a packed float with the constant {@code -0x1.adddbcp126F}.
5886     * <pre>
5887     * <font style='background-color: #DEEED6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DEEED6; color: #000000'>&nbsp;@&nbsp;</font>
5888     * <font style='background-color: #DEEED6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DEEED6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DEEED6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DEEED6'>&nbsp;@&nbsp;</font><font style='background-color: #DEEED6; color: #888888'>&nbsp;@&nbsp;</font>
5889     * <font style='background-color: #DEEED6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DEEED6; color: #ffffff'>&nbsp;@&nbsp;</font>
5890     * </pre>
5891     */
5892    public static final SColor DB_EGGSHELL = new SColor(0xDEEED6, "DB Eggshell");
5893
5894    /**
5895     * This color constant "DB Black" has RGB code {@code 0x000000}, red 0.0, green 0.0, blue 0.0, alpha 1, hue 0.0, saturation 0.0, and value 0.0.
5896     * It can be represented as a packed float with the constant {@code -0x1.0p125F}.
5897     * <pre>
5898     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;@&nbsp;</font>
5899     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #000000; color: #888888'>&nbsp;@&nbsp;</font>
5900     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ffffff'>&nbsp;@&nbsp;</font>
5901     * </pre>
5902     */
5903    public static final SColor DB_BLACK = new SColor(0x000000, "DB Black");
5904
5905    /**
5906     * This color constant "DB Ink" has RGB code {@code 0x222034}, red 0.13333334, green 0.1254902, blue 0.20392157, alpha 1, hue 0.6833335, saturation 0.38461536, and value 0.20392157.
5907     * It can be represented as a packed float with the constant {@code -0x1.684044p125F}.
5908     * <pre>
5909     * <font style='background-color: #222034;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #222034; color: #000000'>&nbsp;@&nbsp;</font>
5910     * <font style='background-color: #222034;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #222034'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #222034'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #222034'>&nbsp;@&nbsp;</font><font style='background-color: #222034; color: #888888'>&nbsp;@&nbsp;</font>
5911     * <font style='background-color: #222034;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #222034; color: #ffffff'>&nbsp;@&nbsp;</font>
5912     * </pre>
5913     */
5914    public static final SColor DB_INK = new SColor(0x222034, "DB Ink");
5915
5916    /**
5917     * This color constant "DB Seal Brown" has RGB code {@code 0x45283C}, red 0.27058825, green 0.15686275, blue 0.23529412, alpha 1, hue 0.88505757, saturation 0.42028987, and value 0.27058825.
5918     * It can be represented as a packed float with the constant {@code -0x1.78508ap125F}.
5919     * <pre>
5920     * <font style='background-color: #45283C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #45283C; color: #000000'>&nbsp;@&nbsp;</font>
5921     * <font style='background-color: #45283C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #45283C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #45283C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #45283C'>&nbsp;@&nbsp;</font><font style='background-color: #45283C; color: #888888'>&nbsp;@&nbsp;</font>
5922     * <font style='background-color: #45283C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #45283C; color: #ffffff'>&nbsp;@&nbsp;</font>
5923     * </pre>
5924     */
5925    public static final SColor DB_SEAL_BROWN = new SColor(0x45283C, "DB Seal Brown");
5926
5927    /**
5928     * This color constant "DB Chestnut" has RGB code {@code 0x663931}, red 0.4, green 0.22352941, blue 0.19215687, alpha 1, hue 0.025157213, saturation 0.51960784, and value 0.4.
5929     * It can be represented as a packed float with the constant {@code -0x1.6272ccp125F}.
5930     * <pre>
5931     * <font style='background-color: #663931;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #663931; color: #000000'>&nbsp;@&nbsp;</font>
5932     * <font style='background-color: #663931;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #663931'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #663931'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #663931'>&nbsp;@&nbsp;</font><font style='background-color: #663931; color: #888888'>&nbsp;@&nbsp;</font>
5933     * <font style='background-color: #663931;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #663931; color: #ffffff'>&nbsp;@&nbsp;</font>
5934     * </pre>
5935     */
5936    public static final SColor DB_CHESTNUT = new SColor(0x663931, "DB Chestnut");
5937
5938    /**
5939     * This color constant "DB Cappuccino" has RGB code {@code 0x8F563B}, red 0.56078434, green 0.3372549, blue 0.23137255, alpha 1, hue 0.053571463, saturation 0.58741266, and value 0.56078434.
5940     * It can be represented as a packed float with the constant {@code -0x1.76ad1ep125F}.
5941     * <pre>
5942     * <font style='background-color: #8F563B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F563B; color: #000000'>&nbsp;@&nbsp;</font>
5943     * <font style='background-color: #8F563B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8F563B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8F563B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8F563B'>&nbsp;@&nbsp;</font><font style='background-color: #8F563B; color: #888888'>&nbsp;@&nbsp;</font>
5944     * <font style='background-color: #8F563B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F563B; color: #ffffff'>&nbsp;@&nbsp;</font>
5945     * </pre>
5946     */
5947    public static final SColor DB_CAPPUCCINO = new SColor(0x8F563B, "DB Cappuccino");
5948
5949    /**
5950     * This color constant "DB Pumpkin" has RGB code {@code 0xDF7126}, red 0.8745098, green 0.44313726, blue 0.14901961, alpha 1, hue 0.06756759, saturation 0.8295964, and value 0.8745098.
5951     * It can be represented as a packed float with the constant {@code -0x1.4ce3bep125F}.
5952     * <pre>
5953     * <font style='background-color: #DF7126;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DF7126; color: #000000'>&nbsp;@&nbsp;</font>
5954     * <font style='background-color: #DF7126;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DF7126'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DF7126'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DF7126'>&nbsp;@&nbsp;</font><font style='background-color: #DF7126; color: #888888'>&nbsp;@&nbsp;</font>
5955     * <font style='background-color: #DF7126;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DF7126; color: #ffffff'>&nbsp;@&nbsp;</font>
5956     * </pre>
5957     */
5958    public static final SColor DB_PUMPKIN = new SColor(0xDF7126, "DB Pumpkin");
5959
5960    /**
5961     * This color constant "DB Fawn" has RGB code {@code 0xD9A066}, red 0.8509804, green 0.627451, blue 0.4, alpha 1, hue 0.08405805, saturation 0.5299539, and value 0.8509804.
5962     * It can be represented as a packed float with the constant {@code -0x1.cd41b2p125F}.
5963     * <pre>
5964     * <font style='background-color: #D9A066;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D9A066; color: #000000'>&nbsp;@&nbsp;</font>
5965     * <font style='background-color: #D9A066;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D9A066'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D9A066'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D9A066'>&nbsp;@&nbsp;</font><font style='background-color: #D9A066; color: #888888'>&nbsp;@&nbsp;</font>
5966     * <font style='background-color: #D9A066;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D9A066; color: #ffffff'>&nbsp;@&nbsp;</font>
5967     * </pre>
5968     */
5969    public static final SColor DB_FAWN = new SColor(0xD9A066, "DB Fawn");
5970
5971    /**
5972     * This color constant "DB Nude" has RGB code {@code 0xEEC39A}, red 0.93333334, green 0.7647059, blue 0.6039216, alpha 1, hue 0.08134937, saturation 0.35294116, and value 0.93333334.
5973     * It can be represented as a packed float with the constant {@code -0x1.3587dcp126F}.
5974     * <pre>
5975     * <font style='background-color: #EEC39A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EEC39A; color: #000000'>&nbsp;@&nbsp;</font>
5976     * <font style='background-color: #EEC39A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EEC39A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EEC39A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EEC39A'>&nbsp;@&nbsp;</font><font style='background-color: #EEC39A; color: #888888'>&nbsp;@&nbsp;</font>
5977     * <font style='background-color: #EEC39A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EEC39A; color: #ffffff'>&nbsp;@&nbsp;</font>
5978     * </pre>
5979     */
5980    public static final SColor DB_NUDE = new SColor(0xEEC39A, "DB Nude");
5981
5982    /**
5983     * This color constant "DB Daffodil" has RGB code {@code 0xFBF236}, red 0.9843137, green 0.9490196, blue 0.21176471, alpha 1, hue 0.15905261, saturation 0.78486055, and value 0.9843137.
5984     * It can be represented as a packed float with the constant {@code -0x1.6de5f6p125F}.
5985     * <pre>
5986     * <font style='background-color: #FBF236;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBF236; color: #000000'>&nbsp;@&nbsp;</font>
5987     * <font style='background-color: #FBF236;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FBF236'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FBF236'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FBF236'>&nbsp;@&nbsp;</font><font style='background-color: #FBF236; color: #888888'>&nbsp;@&nbsp;</font>
5988     * <font style='background-color: #FBF236;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBF236; color: #ffffff'>&nbsp;@&nbsp;</font>
5989     * </pre>
5990     */
5991    public static final SColor DB_DAFFODIL = new SColor(0xFBF236, "DB Daffodil");
5992
5993    /**
5994     * This color constant "DB Key Lime" has RGB code {@code 0x99E550}, red 0.6, green 0.8980392, blue 0.3137255, alpha 1, hue 0.25167787, saturation 0.65065503, and value 0.8980392.
5995     * It can be represented as a packed float with the constant {@code -0x1.a1cb32p125F}.
5996     * <pre>
5997     * <font style='background-color: #99E550;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #99E550; color: #000000'>&nbsp;@&nbsp;</font>
5998     * <font style='background-color: #99E550;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #99E550'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #99E550'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #99E550'>&nbsp;@&nbsp;</font><font style='background-color: #99E550; color: #888888'>&nbsp;@&nbsp;</font>
5999     * <font style='background-color: #99E550;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #99E550; color: #ffffff'>&nbsp;@&nbsp;</font>
6000     * </pre>
6001     */
6002    public static final SColor DB_KEY_LIME = new SColor(0x99E550, "DB Key Lime");
6003
6004    /**
6005     * This color constant "DB Shamrock" has RGB code {@code 0x6ABE30}, red 0.41568628, green 0.74509805, blue 0.1882353, alpha 1, hue 0.2652583, saturation 0.74736845, and value 0.74509805.
6006     * It can be represented as a packed float with the constant {@code -0x1.617cd4p125F}.
6007     * <pre>
6008     * <font style='background-color: #6ABE30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6ABE30; color: #000000'>&nbsp;@&nbsp;</font>
6009     * <font style='background-color: #6ABE30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6ABE30'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6ABE30'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6ABE30'>&nbsp;@&nbsp;</font><font style='background-color: #6ABE30; color: #888888'>&nbsp;@&nbsp;</font>
6010     * <font style='background-color: #6ABE30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6ABE30; color: #ffffff'>&nbsp;@&nbsp;</font>
6011     * </pre>
6012     */
6013    public static final SColor DB_SHAMROCK = new SColor(0x6ABE30, "DB Shamrock");
6014
6015    /**
6016     * This color constant "DB Jungle" has RGB code {@code 0x37946E}, red 0.21568628, green 0.5803922, blue 0.43137255, alpha 1, hue 0.43189967, saturation 0.6283784, and value 0.5803922.
6017     * It can be represented as a packed float with the constant {@code -0x1.dd286ep125F}.
6018     * <pre>
6019     * <font style='background-color: #37946E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #37946E; color: #000000'>&nbsp;@&nbsp;</font>
6020     * <font style='background-color: #37946E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #37946E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #37946E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #37946E'>&nbsp;@&nbsp;</font><font style='background-color: #37946E; color: #888888'>&nbsp;@&nbsp;</font>
6021     * <font style='background-color: #37946E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #37946E; color: #ffffff'>&nbsp;@&nbsp;</font>
6022     * </pre>
6023     */
6024    public static final SColor DB_JUNGLE = new SColor(0x37946E, "DB Jungle");
6025
6026    /**
6027     * This color constant "DB Olive" has RGB code {@code 0x4B692F}, red 0.29411766, green 0.4117647, blue 0.18431373, alpha 1, hue 0.25287342, saturation 0.5523809, and value 0.4117647.
6028     * It can be represented as a packed float with the constant {@code -0x1.5ed296p125F}.
6029     * <pre>
6030     * <font style='background-color: #4B692F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B692F; color: #000000'>&nbsp;@&nbsp;</font>
6031     * <font style='background-color: #4B692F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4B692F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4B692F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4B692F'>&nbsp;@&nbsp;</font><font style='background-color: #4B692F; color: #888888'>&nbsp;@&nbsp;</font>
6032     * <font style='background-color: #4B692F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B692F; color: #ffffff'>&nbsp;@&nbsp;</font>
6033     * </pre>
6034     */
6035    public static final SColor DB_OLIVE = new SColor(0x4B692F, "DB Olive");
6036
6037    /**
6038     * This color constant "DB Mud" has RGB code {@code 0x524B24}, red 0.32156864, green 0.29411766, blue 0.14117648, alpha 1, hue 0.14130425, saturation 0.5609756, and value 0.32156864.
6039     * It can be represented as a packed float with the constant {@code -0x1.4896a4p125F}.
6040     * <pre>
6041     * <font style='background-color: #524B24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #524B24; color: #000000'>&nbsp;@&nbsp;</font>
6042     * <font style='background-color: #524B24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #524B24'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #524B24'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #524B24'>&nbsp;@&nbsp;</font><font style='background-color: #524B24; color: #888888'>&nbsp;@&nbsp;</font>
6043     * <font style='background-color: #524B24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #524B24; color: #ffffff'>&nbsp;@&nbsp;</font>
6044     * </pre>
6045     */
6046    public static final SColor DB_MUD = new SColor(0x524B24, "DB Mud");
6047
6048    /**
6049     * This color constant "DB Shadow" has RGB code {@code 0x323C39}, red 0.19607843, green 0.23529412, blue 0.22352941, alpha 1, hue 0.45000005, saturation 0.16666666, and value 0.23529412.
6050     * It can be represented as a packed float with the constant {@code -0x1.727864p125F}.
6051     * <pre>
6052     * <font style='background-color: #323C39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #323C39; color: #000000'>&nbsp;@&nbsp;</font>
6053     * <font style='background-color: #323C39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #323C39'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #323C39'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #323C39'>&nbsp;@&nbsp;</font><font style='background-color: #323C39; color: #888888'>&nbsp;@&nbsp;</font>
6054     * <font style='background-color: #323C39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #323C39; color: #ffffff'>&nbsp;@&nbsp;</font>
6055     * </pre>
6056     */
6057    public static final SColor DB_SHADOW = new SColor(0x323C39, "DB Shadow");
6058
6059    /**
6060     * This color constant "DB Cobalt" has RGB code {@code 0x3F3F74}, red 0.24705882, green 0.24705882, blue 0.45490196, alpha 1, hue 0.66666675, saturation 0.45689654, and value 0.45490196.
6061     * It can be represented as a packed float with the constant {@code -0x1.e87e7ep125F}.
6062     * <pre>
6063     * <font style='background-color: #3F3F74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3F3F74; color: #000000'>&nbsp;@&nbsp;</font>
6064     * <font style='background-color: #3F3F74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3F3F74'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3F3F74'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3F3F74'>&nbsp;@&nbsp;</font><font style='background-color: #3F3F74; color: #888888'>&nbsp;@&nbsp;</font>
6065     * <font style='background-color: #3F3F74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3F3F74; color: #ffffff'>&nbsp;@&nbsp;</font>
6066     * </pre>
6067     */
6068    public static final SColor DB_COBALT = new SColor(0x3F3F74, "DB Cobalt");
6069
6070    /**
6071     * This color constant "DB Cerulean" has RGB code {@code 0x306082}, red 0.1882353, green 0.3764706, blue 0.50980395, alpha 1, hue 0.5691056, saturation 0.63076925, and value 0.50980395.
6072     * It can be represented as a packed float with the constant {@code -0x1.04c06p126F}.
6073     * <pre>
6074     * <font style='background-color: #306082;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #306082; color: #000000'>&nbsp;@&nbsp;</font>
6075     * <font style='background-color: #306082;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #306082'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #306082'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #306082'>&nbsp;@&nbsp;</font><font style='background-color: #306082; color: #888888'>&nbsp;@&nbsp;</font>
6076     * <font style='background-color: #306082;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #306082; color: #ffffff'>&nbsp;@&nbsp;</font>
6077     * </pre>
6078     */
6079    public static final SColor DB_CERULEAN = new SColor(0x306082, "DB Cerulean");
6080
6081    /**
6082     * This color constant "DB Denim" has RGB code {@code 0x5B6EE1}, red 0.35686275, green 0.43137255, blue 0.88235295, alpha 1, hue 0.6430347, saturation 0.59555554, and value 0.88235295.
6083     * It can be represented as a packed float with the constant {@code -0x1.c2dcb6p126F}.
6084     * <pre>
6085     * <font style='background-color: #5B6EE1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5B6EE1; color: #000000'>&nbsp;@&nbsp;</font>
6086     * <font style='background-color: #5B6EE1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5B6EE1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5B6EE1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5B6EE1'>&nbsp;@&nbsp;</font><font style='background-color: #5B6EE1; color: #888888'>&nbsp;@&nbsp;</font>
6087     * <font style='background-color: #5B6EE1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5B6EE1; color: #ffffff'>&nbsp;@&nbsp;</font>
6088     * </pre>
6089     */
6090    public static final SColor DB_DENIM = new SColor(0x5B6EE1, "DB Denim");
6091
6092    /**
6093     * This color constant "DB Sky Blue" has RGB code {@code 0x639BFF}, red 0.3882353, green 0.60784316, blue 1.0, alpha 1, hue 0.6068375, saturation 0.61176467, and value 1.0.
6094     * It can be represented as a packed float with the constant {@code -0x1.ff36c6p126F}.
6095     * <pre>
6096     * <font style='background-color: #639BFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #639BFF; color: #000000'>&nbsp;@&nbsp;</font>
6097     * <font style='background-color: #639BFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #639BFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #639BFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #639BFF'>&nbsp;@&nbsp;</font><font style='background-color: #639BFF; color: #888888'>&nbsp;@&nbsp;</font>
6098     * <font style='background-color: #639BFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #639BFF; color: #ffffff'>&nbsp;@&nbsp;</font>
6099     * </pre>
6100     */
6101    public static final SColor DB_SKY_BLUE = new SColor(0x639BFF, "DB Sky Blue");
6102
6103    /**
6104     * This color constant "DB Seafoam" has RGB code {@code 0x5FCDE4}, red 0.37254903, green 0.8039216, blue 0.89411765, alpha 1, hue 0.5288223, saturation 0.5833334, and value 0.89411765.
6105     * It can be represented as a packed float with the constant {@code -0x1.c99abep126F}.
6106     * <pre>
6107     * <font style='background-color: #5FCDE4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5FCDE4; color: #000000'>&nbsp;@&nbsp;</font>
6108     * <font style='background-color: #5FCDE4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5FCDE4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5FCDE4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5FCDE4'>&nbsp;@&nbsp;</font><font style='background-color: #5FCDE4; color: #888888'>&nbsp;@&nbsp;</font>
6109     * <font style='background-color: #5FCDE4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5FCDE4; color: #ffffff'>&nbsp;@&nbsp;</font>
6110     * </pre>
6111     */
6112    public static final SColor DB_SEAFOAM = new SColor(0x5FCDE4, "DB Seafoam");
6113
6114    /**
6115     * This color constant "DB Platinum" has RGB code {@code 0xCBDBFC}, red 0.79607844, green 0.85882354, blue 0.9882353, alpha 1, hue 0.61224484, saturation 0.19444443, and value 0.9882353.
6116     * It can be represented as a packed float with the constant {@code -0x1.f9b796p126F}.
6117     * <pre>
6118     * <font style='background-color: #CBDBFC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CBDBFC; color: #000000'>&nbsp;@&nbsp;</font>
6119     * <font style='background-color: #CBDBFC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CBDBFC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CBDBFC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CBDBFC'>&nbsp;@&nbsp;</font><font style='background-color: #CBDBFC; color: #888888'>&nbsp;@&nbsp;</font>
6120     * <font style='background-color: #CBDBFC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CBDBFC; color: #ffffff'>&nbsp;@&nbsp;</font>
6121     * </pre>
6122     */
6123    public static final SColor DB_PLATINUM = new SColor(0xCBDBFC, "DB Platinum");
6124
6125    /**
6126     * This color constant "DB White" has RGB code {@code 0xFFFFFF}, red 1.0, green 1.0, blue 1.0, alpha 1, hue 0.0, saturation 0.0, and value 1.0.
6127     * It can be represented as a packed float with the constant {@code -0x1.fffffep126F}.
6128     * <pre>
6129     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFFF; color: #000000'>&nbsp;@&nbsp;</font>
6130     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #FFFFFF; color: #888888'>&nbsp;@&nbsp;</font>
6131     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
6132     * </pre>
6133     */
6134    public static final SColor DB_WHITE = new SColor(0xFFFFFF, "DB White");
6135
6136    /**
6137     * This color constant "DB Storm Cloud" has RGB code {@code 0x9BADB7}, red 0.60784316, green 0.6784314, blue 0.7176471, alpha 1, hue 0.5595238, saturation 0.15300545, and value 0.7176471.
6138     * It can be represented as a packed float with the constant {@code -0x1.6f5b36p126F}.
6139     * <pre>
6140     * <font style='background-color: #9BADB7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9BADB7; color: #000000'>&nbsp;@&nbsp;</font>
6141     * <font style='background-color: #9BADB7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9BADB7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9BADB7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9BADB7'>&nbsp;@&nbsp;</font><font style='background-color: #9BADB7; color: #888888'>&nbsp;@&nbsp;</font>
6142     * <font style='background-color: #9BADB7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9BADB7; color: #ffffff'>&nbsp;@&nbsp;</font>
6143     * </pre>
6144     */
6145    public static final SColor DB_STORM_CLOUD = new SColor(0x9BADB7, "DB Storm Cloud");
6146
6147    /**
6148     * This color constant "DB Elephant" has RGB code {@code 0x847E87}, red 0.5176471, green 0.49411765, blue 0.5294118, alpha 1, hue 0.7777779, saturation 0.066666715, and value 0.5294118.
6149     * It can be represented as a packed float with the constant {@code -0x1.0efd08p126F}.
6150     * <pre>
6151     * <font style='background-color: #847E87;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #847E87; color: #000000'>&nbsp;@&nbsp;</font>
6152     * <font style='background-color: #847E87;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #847E87'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #847E87'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #847E87'>&nbsp;@&nbsp;</font><font style='background-color: #847E87; color: #888888'>&nbsp;@&nbsp;</font>
6153     * <font style='background-color: #847E87;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #847E87; color: #ffffff'>&nbsp;@&nbsp;</font>
6154     * </pre>
6155     */
6156    public static final SColor DB_ELEPHANT = new SColor(0x847E87, "DB Elephant");
6157
6158    /**
6159     * This color constant "DB Graphite" has RGB code {@code 0x696A6A}, red 0.4117647, green 0.41568628, blue 0.41568628, alpha 1, hue 0.5, saturation 0.0094339615, and value 0.41568628.
6160     * It can be represented as a packed float with the constant {@code -0x1.d4d4d2p125F}.
6161     * <pre>
6162     * <font style='background-color: #696A6A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #696A6A; color: #000000'>&nbsp;@&nbsp;</font>
6163     * <font style='background-color: #696A6A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #696A6A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #696A6A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #696A6A'>&nbsp;@&nbsp;</font><font style='background-color: #696A6A; color: #888888'>&nbsp;@&nbsp;</font>
6164     * <font style='background-color: #696A6A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #696A6A; color: #ffffff'>&nbsp;@&nbsp;</font>
6165     * </pre>
6166     */
6167    public static final SColor DB_GRAPHITE = new SColor(0x696A6A, "DB Graphite");
6168
6169    /**
6170     * This color constant "DB Soot" has RGB code {@code 0x595652}, red 0.34901962, green 0.3372549, blue 0.32156864, alpha 1, hue 0.09523821, saturation 0.07865168, and value 0.34901962.
6171     * It can be represented as a packed float with the constant {@code -0x1.a4acb2p125F}.
6172     * <pre>
6173     * <font style='background-color: #595652;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #595652; color: #000000'>&nbsp;@&nbsp;</font>
6174     * <font style='background-color: #595652;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #595652'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #595652'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #595652'>&nbsp;@&nbsp;</font><font style='background-color: #595652; color: #888888'>&nbsp;@&nbsp;</font>
6175     * <font style='background-color: #595652;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #595652; color: #ffffff'>&nbsp;@&nbsp;</font>
6176     * </pre>
6177     */
6178    public static final SColor DB_SOOT = new SColor(0x595652, "DB Soot");
6179
6180    /**
6181     * This color constant "DB Eggplant" has RGB code {@code 0x76428A}, red 0.4627451, green 0.25882354, blue 0.5411765, alpha 1, hue 0.78703713, saturation 0.5217391, and value 0.5411765.
6182     * It can be represented as a packed float with the constant {@code -0x1.1484ecp126F}.
6183     * <pre>
6184     * <font style='background-color: #76428A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #76428A; color: #000000'>&nbsp;@&nbsp;</font>
6185     * <font style='background-color: #76428A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #76428A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #76428A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #76428A'>&nbsp;@&nbsp;</font><font style='background-color: #76428A; color: #888888'>&nbsp;@&nbsp;</font>
6186     * <font style='background-color: #76428A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #76428A; color: #ffffff'>&nbsp;@&nbsp;</font>
6187     * </pre>
6188     */
6189    public static final SColor DB_EGGPLANT = new SColor(0x76428A, "DB Eggplant");
6190
6191    /**
6192     * This color constant "DB Blood" has RGB code {@code 0xAC3232}, red 0.6745098, green 0.19607843, blue 0.19607843, alpha 1, hue 0.0, saturation 0.70930237, and value 0.6745098.
6193     * It can be represented as a packed float with the constant {@code -0x1.646558p125F}.
6194     * <pre>
6195     * <font style='background-color: #AC3232;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AC3232; color: #000000'>&nbsp;@&nbsp;</font>
6196     * <font style='background-color: #AC3232;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AC3232'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AC3232'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AC3232'>&nbsp;@&nbsp;</font><font style='background-color: #AC3232; color: #888888'>&nbsp;@&nbsp;</font>
6197     * <font style='background-color: #AC3232;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AC3232; color: #ffffff'>&nbsp;@&nbsp;</font>
6198     * </pre>
6199     */
6200    public static final SColor DB_BLOOD = new SColor(0xAC3232, "DB Blood");
6201
6202    /**
6203     * This color constant "DB Coral" has RGB code {@code 0xD95763}, red 0.8509804, green 0.34117648, blue 0.3882353, alpha 1, hue 0.9846154, saturation 0.5990783, and value 0.8509804.
6204     * It can be represented as a packed float with the constant {@code -0x1.c6afb2p125F}.
6205     * <pre>
6206     * <font style='background-color: #D95763;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D95763; color: #000000'>&nbsp;@&nbsp;</font>
6207     * <font style='background-color: #D95763;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D95763'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D95763'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D95763'>&nbsp;@&nbsp;</font><font style='background-color: #D95763; color: #888888'>&nbsp;@&nbsp;</font>
6208     * <font style='background-color: #D95763;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D95763; color: #ffffff'>&nbsp;@&nbsp;</font>
6209     * </pre>
6210     */
6211    public static final SColor DB_CORAL = new SColor(0xD95763, "DB Coral");
6212
6213    /**
6214     * This color constant "DB Lavender" has RGB code {@code 0xD77BBA}, red 0.84313726, green 0.48235294, blue 0.7294118, alpha 1, hue 0.8858696, saturation 0.427907, and value 0.84313726.
6215     * It can be represented as a packed float with the constant {@code -0x1.74f7aep126F}.
6216     * <pre>
6217     * <font style='background-color: #D77BBA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D77BBA; color: #000000'>&nbsp;@&nbsp;</font>
6218     * <font style='background-color: #D77BBA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D77BBA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D77BBA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D77BBA'>&nbsp;@&nbsp;</font><font style='background-color: #D77BBA; color: #888888'>&nbsp;@&nbsp;</font>
6219     * <font style='background-color: #D77BBA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D77BBA; color: #ffffff'>&nbsp;@&nbsp;</font>
6220     * </pre>
6221     */
6222    public static final SColor DB_LAVENDER = new SColor(0xD77BBA, "DB Lavender");
6223
6224    /**
6225     * This color constant "DB Army Green" has RGB code {@code 0x8F974A}, red 0.56078434, green 0.5921569, blue 0.2901961, alpha 1, hue 0.18398273, saturation 0.50993377, and value 0.5921569.
6226     * It can be represented as a packed float with the constant {@code -0x1.952f1ep125F}.
6227     * <pre>
6228     * <font style='background-color: #8F974A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F974A; color: #000000'>&nbsp;@&nbsp;</font>
6229     * <font style='background-color: #8F974A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8F974A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8F974A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8F974A'>&nbsp;@&nbsp;</font><font style='background-color: #8F974A; color: #888888'>&nbsp;@&nbsp;</font>
6230     * <font style='background-color: #8F974A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F974A; color: #ffffff'>&nbsp;@&nbsp;</font>
6231     * </pre>
6232     */
6233    public static final SColor DB_ARMY_GREEN = new SColor(0x8F974A, "DB Army Green");
6234
6235    /**
6236     * This color constant "DB Compost" has RGB code {@code 0x8A6F30}, red 0.5411765, green 0.43529412, blue 0.1882353, alpha 1, hue 0.116666794, saturation 0.65217394, and value 0.5411765.
6237     * It can be represented as a packed float with the constant {@code -0x1.60df14p125F}.
6238     * <pre>
6239     * <font style='background-color: #8A6F30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8A6F30; color: #000000'>&nbsp;@&nbsp;</font>
6240     * <font style='background-color: #8A6F30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8A6F30'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8A6F30'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8A6F30'>&nbsp;@&nbsp;</font><font style='background-color: #8A6F30; color: #888888'>&nbsp;@&nbsp;</font>
6241     * <font style='background-color: #8A6F30;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8A6F30; color: #ffffff'>&nbsp;@&nbsp;</font>
6242     * </pre>
6243     */
6244    public static final SColor DB_COMPOST = new SColor(0x8A6F30, "DB Compost");
6245
6246    /**
6247     * This color constant "CW Red" has RGB code {@code 0xEE2A2A}, red 0.93333334, green 0.16470589, blue 0.16470589, alpha 1, hue 0.0, saturation 0.8235294, and value 0.93333334.
6248     * It can be represented as a packed float with the constant {@code -0x1.5455dcp125F}.
6249     * <pre>
6250     * <font style='background-color: #EE2A2A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EE2A2A; color: #000000'>&nbsp;@&nbsp;</font>
6251     * <font style='background-color: #EE2A2A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EE2A2A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EE2A2A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EE2A2A'>&nbsp;@&nbsp;</font><font style='background-color: #EE2A2A; color: #888888'>&nbsp;@&nbsp;</font>
6252     * <font style='background-color: #EE2A2A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EE2A2A; color: #ffffff'>&nbsp;@&nbsp;</font>
6253     * </pre>
6254     */
6255    public static final SColor CW_RED = new SColor(0xEE2A2A, "CW Red");
6256
6257    /**
6258     * This color constant "CW Faded Red" has RGB code {@code 0xB76363}, red 0.7176471, green 0.3882353, blue 0.3882353, alpha 1, hue 0.0, saturation 0.45901638, and value 0.7176471.
6259     * It can be represented as a packed float with the constant {@code -0x1.c6c76ep125F}.
6260     * <pre>
6261     * <font style='background-color: #B76363;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B76363; color: #000000'>&nbsp;@&nbsp;</font>
6262     * <font style='background-color: #B76363;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B76363'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B76363'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B76363'>&nbsp;@&nbsp;</font><font style='background-color: #B76363; color: #888888'>&nbsp;@&nbsp;</font>
6263     * <font style='background-color: #B76363;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B76363; color: #ffffff'>&nbsp;@&nbsp;</font>
6264     * </pre>
6265     */
6266    public static final SColor CW_FADED_RED = new SColor(0xB76363, "CW Faded Red");
6267
6268    /**
6269     * This color constant "CW Flush Red" has RGB code {@code 0xE21414}, red 0.8862745, green 0.078431375, blue 0.078431375, alpha 1, hue 0.0, saturation 0.91150445, and value 0.8862745.
6270     * It can be represented as a packed float with the constant {@code -0x1.2829c4p125F}.
6271     * <pre>
6272     * <font style='background-color: #E21414;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E21414; color: #000000'>&nbsp;@&nbsp;</font>
6273     * <font style='background-color: #E21414;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E21414'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E21414'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E21414'>&nbsp;@&nbsp;</font><font style='background-color: #E21414; color: #888888'>&nbsp;@&nbsp;</font>
6274     * <font style='background-color: #E21414;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E21414; color: #ffffff'>&nbsp;@&nbsp;</font>
6275     * </pre>
6276     */
6277    public static final SColor CW_FLUSH_RED = new SColor(0xE21414, "CW Flush Red");
6278
6279    /**
6280     * This color constant "CW Light Red" has RGB code {@code 0xED8383}, red 0.92941177, green 0.5137255, blue 0.5137255, alpha 1, hue 0.0, saturation 0.44725737, and value 0.92941177.
6281     * It can be represented as a packed float with the constant {@code -0x1.0707dap126F}.
6282     * <pre>
6283     * <font style='background-color: #ED8383;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ED8383; color: #000000'>&nbsp;@&nbsp;</font>
6284     * <font style='background-color: #ED8383;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ED8383'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ED8383'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ED8383'>&nbsp;@&nbsp;</font><font style='background-color: #ED8383; color: #888888'>&nbsp;@&nbsp;</font>
6285     * <font style='background-color: #ED8383;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ED8383; color: #ffffff'>&nbsp;@&nbsp;</font>
6286     * </pre>
6287     */
6288    public static final SColor CW_LIGHT_RED = new SColor(0xED8383, "CW Light Red");
6289
6290    /**
6291     * This color constant "CW Pale Red" has RGB code {@code 0xE6A7A7}, red 0.9019608, green 0.654902, blue 0.654902, alpha 1, hue 0.0, saturation 0.27391303, and value 0.9019608.
6292     * It can be represented as a packed float with the constant {@code -0x1.4f4fccp126F}.
6293     * <pre>
6294     * <font style='background-color: #E6A7A7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E6A7A7; color: #000000'>&nbsp;@&nbsp;</font>
6295     * <font style='background-color: #E6A7A7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E6A7A7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E6A7A7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E6A7A7'>&nbsp;@&nbsp;</font><font style='background-color: #E6A7A7; color: #888888'>&nbsp;@&nbsp;</font>
6296     * <font style='background-color: #E6A7A7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E6A7A7; color: #ffffff'>&nbsp;@&nbsp;</font>
6297     * </pre>
6298     */
6299    public static final SColor CW_PALE_RED = new SColor(0xE6A7A7, "CW Pale Red");
6300
6301    /**
6302     * This color constant "CW Bright Red" has RGB code {@code 0xF43B3B}, red 0.95686275, green 0.23137255, blue 0.23137255, alpha 1, hue 0.0, saturation 0.7581967, and value 0.95686275.
6303     * It can be represented as a packed float with the constant {@code -0x1.7677e8p125F}.
6304     * <pre>
6305     * <font style='background-color: #F43B3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F43B3B; color: #000000'>&nbsp;@&nbsp;</font>
6306     * <font style='background-color: #F43B3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F43B3B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F43B3B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F43B3B'>&nbsp;@&nbsp;</font><font style='background-color: #F43B3B; color: #888888'>&nbsp;@&nbsp;</font>
6307     * <font style='background-color: #F43B3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F43B3B; color: #ffffff'>&nbsp;@&nbsp;</font>
6308     * </pre>
6309     */
6310    public static final SColor CW_BRIGHT_RED = new SColor(0xF43B3B, "CW Bright Red");
6311
6312    /**
6313     * This color constant "CW Dark Red" has RGB code {@code 0xA11616}, red 0.6313726, green 0.08627451, blue 0.08627451, alpha 1, hue 0.0, saturation 0.863354, and value 0.6313726.
6314     * It can be represented as a packed float with the constant {@code -0x1.2c2d42p125F}.
6315     * <pre>
6316     * <font style='background-color: #A11616;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A11616; color: #000000'>&nbsp;@&nbsp;</font>
6317     * <font style='background-color: #A11616;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A11616'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A11616'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A11616'>&nbsp;@&nbsp;</font><font style='background-color: #A11616; color: #888888'>&nbsp;@&nbsp;</font>
6318     * <font style='background-color: #A11616;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A11616; color: #ffffff'>&nbsp;@&nbsp;</font>
6319     * </pre>
6320     */
6321    public static final SColor CW_DARK_RED = new SColor(0xA11616, "CW Dark Red");
6322
6323    /**
6324     * This color constant "CW Drab Red" has RGB code {@code 0x923535}, red 0.57254905, green 0.20784314, blue 0.20784314, alpha 1, hue 0.0, saturation 0.6369863, and value 0.57254905.
6325     * It can be represented as a packed float with the constant {@code -0x1.6a6b24p125F}.
6326     * <pre>
6327     * <font style='background-color: #923535;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #923535; color: #000000'>&nbsp;@&nbsp;</font>
6328     * <font style='background-color: #923535;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #923535'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #923535'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #923535'>&nbsp;@&nbsp;</font><font style='background-color: #923535; color: #888888'>&nbsp;@&nbsp;</font>
6329     * <font style='background-color: #923535;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #923535; color: #ffffff'>&nbsp;@&nbsp;</font>
6330     * </pre>
6331     */
6332    public static final SColor CW_DRAB_RED = new SColor(0x923535, "CW Drab Red");
6333
6334    /**
6335     * This color constant "CW Rich Red" has RGB code {@code 0xBE1111}, red 0.74509805, green 0.06666667, blue 0.06666667, alpha 1, hue 0.0, saturation 0.91052634, and value 0.74509805.
6336     * It can be represented as a packed float with the constant {@code -0x1.22237cp125F}.
6337     * <pre>
6338     * <font style='background-color: #BE1111;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BE1111; color: #000000'>&nbsp;@&nbsp;</font>
6339     * <font style='background-color: #BE1111;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BE1111'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BE1111'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BE1111'>&nbsp;@&nbsp;</font><font style='background-color: #BE1111; color: #888888'>&nbsp;@&nbsp;</font>
6340     * <font style='background-color: #BE1111;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BE1111; color: #ffffff'>&nbsp;@&nbsp;</font>
6341     * </pre>
6342     */
6343    public static final SColor CW_RICH_RED = new SColor(0xBE1111, "CW Rich Red");
6344
6345    /**
6346     * This color constant "CW Orange" has RGB code {@code 0xF17C24}, red 0.94509804, green 0.4862745, blue 0.14117648, alpha 1, hue 0.071544886, saturation 0.8506224, and value 0.94509804.
6347     * It can be represented as a packed float with the constant {@code -0x1.48f9e2p125F}.
6348     * <pre>
6349     * <font style='background-color: #F17C24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F17C24; color: #000000'>&nbsp;@&nbsp;</font>
6350     * <font style='background-color: #F17C24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F17C24'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F17C24'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F17C24'>&nbsp;@&nbsp;</font><font style='background-color: #F17C24; color: #888888'>&nbsp;@&nbsp;</font>
6351     * <font style='background-color: #F17C24;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F17C24; color: #ffffff'>&nbsp;@&nbsp;</font>
6352     * </pre>
6353     */
6354    public static final SColor CW_ORANGE = new SColor(0xF17C24, "CW Orange");
6355
6356    /**
6357     * This color constant "CW Faded Orange" has RGB code {@code 0xCC9B75}, red 0.8, green 0.60784316, blue 0.45882353, alpha 1, hue 0.07279682, saturation 0.4264706, and value 0.8.
6358     * It can be represented as a packed float with the constant {@code -0x1.eb3798p125F}.
6359     * <pre>
6360     * <font style='background-color: #CC9B75;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC9B75; color: #000000'>&nbsp;@&nbsp;</font>
6361     * <font style='background-color: #CC9B75;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CC9B75'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CC9B75'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CC9B75'>&nbsp;@&nbsp;</font><font style='background-color: #CC9B75; color: #888888'>&nbsp;@&nbsp;</font>
6362     * <font style='background-color: #CC9B75;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CC9B75; color: #ffffff'>&nbsp;@&nbsp;</font>
6363     * </pre>
6364     */
6365    public static final SColor CW_FADED_ORANGE = new SColor(0xCC9B75, "CW Faded Orange");
6366
6367    /**
6368     * This color constant "CW Flush Orange" has RGB code {@code 0xE56D11}, red 0.8980392, green 0.42745098, blue 0.06666667, alpha 1, hue 0.07232714, saturation 0.9257642, and value 0.8980392.
6369     * It can be represented as a packed float with the constant {@code -0x1.22dbcap125F}.
6370     * <pre>
6371     * <font style='background-color: #E56D11;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E56D11; color: #000000'>&nbsp;@&nbsp;</font>
6372     * <font style='background-color: #E56D11;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E56D11'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E56D11'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E56D11'>&nbsp;@&nbsp;</font><font style='background-color: #E56D11; color: #888888'>&nbsp;@&nbsp;</font>
6373     * <font style='background-color: #E56D11;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E56D11; color: #ffffff'>&nbsp;@&nbsp;</font>
6374     * </pre>
6375     */
6376    public static final SColor CW_FLUSH_ORANGE = new SColor(0xE56D11, "CW Flush Orange");
6377
6378    /**
6379     * This color constant "CW Light Orange" has RGB code {@code 0xF2B383}, red 0.9490196, green 0.7019608, blue 0.5137255, alpha 1, hue 0.07207215, saturation 0.45867765, and value 0.9490196.
6380     * It can be represented as a packed float with the constant {@code -0x1.0767e4p126F}.
6381     * <pre>
6382     * <font style='background-color: #F2B383;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F2B383; color: #000000'>&nbsp;@&nbsp;</font>
6383     * <font style='background-color: #F2B383;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F2B383'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F2B383'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F2B383'>&nbsp;@&nbsp;</font><font style='background-color: #F2B383; color: #888888'>&nbsp;@&nbsp;</font>
6384     * <font style='background-color: #F2B383;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F2B383; color: #ffffff'>&nbsp;@&nbsp;</font>
6385     * </pre>
6386     */
6387    public static final SColor CW_LIGHT_ORANGE = new SColor(0xF2B383, "CW Light Orange");
6388
6389    /**
6390     * This color constant "CW Pale Orange" has RGB code {@code 0xEDC8AC}, red 0.92941177, green 0.78431374, blue 0.6745098, alpha 1, hue 0.07179499, saturation 0.2742616, and value 0.92941177.
6391     * It can be represented as a packed float with the constant {@code -0x1.5991dap126F}.
6392     * <pre>
6393     * <font style='background-color: #EDC8AC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EDC8AC; color: #000000'>&nbsp;@&nbsp;</font>
6394     * <font style='background-color: #EDC8AC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EDC8AC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EDC8AC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EDC8AC'>&nbsp;@&nbsp;</font><font style='background-color: #EDC8AC; color: #888888'>&nbsp;@&nbsp;</font>
6395     * <font style='background-color: #EDC8AC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EDC8AC; color: #ffffff'>&nbsp;@&nbsp;</font>
6396     * </pre>
6397     */
6398    public static final SColor CW_PALE_ORANGE = new SColor(0xEDC8AC, "CW Pale Orange");
6399
6400    /**
6401     * This color constant "CW Bright Orange" has RGB code {@code 0xF68A39}, red 0.9647059, green 0.5411765, blue 0.22352941, alpha 1, hue 0.07142854, saturation 0.7682927, and value 0.9647059.
6402     * It can be represented as a packed float with the constant {@code -0x1.7315ecp125F}.
6403     * <pre>
6404     * <font style='background-color: #F68A39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F68A39; color: #000000'>&nbsp;@&nbsp;</font>
6405     * <font style='background-color: #F68A39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F68A39'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F68A39'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F68A39'>&nbsp;@&nbsp;</font><font style='background-color: #F68A39; color: #888888'>&nbsp;@&nbsp;</font>
6406     * <font style='background-color: #F68A39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F68A39; color: #ffffff'>&nbsp;@&nbsp;</font>
6407     * </pre>
6408     */
6409    public static final SColor CW_BRIGHT_ORANGE = new SColor(0xF68A39, "CW Bright Orange");
6410
6411    /**
6412     * This color constant "CW Dark Orange" has RGB code {@code 0xA35113}, red 0.6392157, green 0.31764707, blue 0.07450981, alpha 1, hue 0.071759224, saturation 0.8834356, and value 0.6392157.
6413     * It can be represented as a packed float with the constant {@code -0x1.26a346p125F}.
6414     * <pre>
6415     * <font style='background-color: #A35113;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A35113; color: #000000'>&nbsp;@&nbsp;</font>
6416     * <font style='background-color: #A35113;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A35113'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A35113'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A35113'>&nbsp;@&nbsp;</font><font style='background-color: #A35113; color: #888888'>&nbsp;@&nbsp;</font>
6417     * <font style='background-color: #A35113;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A35113; color: #ffffff'>&nbsp;@&nbsp;</font>
6418     * </pre>
6419     */
6420    public static final SColor CW_DARK_ORANGE = new SColor(0xA35113, "CW Dark Orange");
6421
6422    /**
6423     * This color constant "CW Drab Orange" has RGB code {@code 0xA46B40}, red 0.6431373, green 0.41960785, blue 0.2509804, alpha 1, hue 0.07166672, saturation 0.6097561, and value 0.6431373.
6424     * It can be represented as a packed float with the constant {@code -0x1.80d748p125F}.
6425     * <pre>
6426     * <font style='background-color: #A46B40;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A46B40; color: #000000'>&nbsp;@&nbsp;</font>
6427     * <font style='background-color: #A46B40;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A46B40'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A46B40'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A46B40'>&nbsp;@&nbsp;</font><font style='background-color: #A46B40; color: #888888'>&nbsp;@&nbsp;</font>
6428     * <font style='background-color: #A46B40;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A46B40; color: #ffffff'>&nbsp;@&nbsp;</font>
6429     * </pre>
6430     */
6431    public static final SColor CW_DRAB_ORANGE = new SColor(0xA46B40, "CW Drab Orange");
6432
6433    /**
6434     * This color constant "CW Rich Orange" has RGB code {@code 0xC15B0F}, red 0.75686276, green 0.35686275, blue 0.05882353, alpha 1, hue 0.07116103, saturation 0.9222798, and value 0.75686276.
6435     * It can be represented as a packed float with the constant {@code -0x1.1eb782p125F}.
6436     * <pre>
6437     * <font style='background-color: #C15B0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C15B0F; color: #000000'>&nbsp;@&nbsp;</font>
6438     * <font style='background-color: #C15B0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C15B0F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C15B0F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C15B0F'>&nbsp;@&nbsp;</font><font style='background-color: #C15B0F; color: #888888'>&nbsp;@&nbsp;</font>
6439     * <font style='background-color: #C15B0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C15B0F; color: #ffffff'>&nbsp;@&nbsp;</font>
6440     * </pre>
6441     */
6442    public static final SColor CW_RICH_ORANGE = new SColor(0xC15B0F, "CW Rich Orange");
6443
6444    /**
6445     * This color constant "CW Brown" has RGB code {@code 0xCD8B51}, red 0.8039216, green 0.54509807, blue 0.31764707, alpha 1, hue 0.07795715, saturation 0.60487807, and value 0.8039216.
6446     * It can be represented as a packed float with the constant {@code -0x1.a3179ap125F}.
6447     * <pre>
6448     * <font style='background-color: #CD8B51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD8B51; color: #000000'>&nbsp;@&nbsp;</font>
6449     * <font style='background-color: #CD8B51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CD8B51'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CD8B51'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CD8B51'>&nbsp;@&nbsp;</font><font style='background-color: #CD8B51; color: #888888'>&nbsp;@&nbsp;</font>
6450     * <font style='background-color: #CD8B51;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CD8B51; color: #ffffff'>&nbsp;@&nbsp;</font>
6451     * </pre>
6452     */
6453    public static final SColor CW_BROWN = new SColor(0xCD8B51, "CW Brown");
6454
6455    /**
6456     * This color constant "CW Faded Brown" has RGB code {@code 0xBFA38A}, red 0.7490196, green 0.6392157, blue 0.5411765, alpha 1, hue 0.07861638, saturation 0.2774869, and value 0.7490196.
6457     * It can be represented as a packed float with the constant {@code -0x1.15477ep126F}.
6458     * <pre>
6459     * <font style='background-color: #BFA38A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BFA38A; color: #000000'>&nbsp;@&nbsp;</font>
6460     * <font style='background-color: #BFA38A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BFA38A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BFA38A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BFA38A'>&nbsp;@&nbsp;</font><font style='background-color: #BFA38A; color: #888888'>&nbsp;@&nbsp;</font>
6461     * <font style='background-color: #BFA38A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BFA38A; color: #ffffff'>&nbsp;@&nbsp;</font>
6462     * </pre>
6463     */
6464    public static final SColor CW_FADED_BROWN = new SColor(0xBFA38A, "CW Faded Brown");
6465
6466    /**
6467     * This color constant "CW Flush Brown" has RGB code {@code 0xC36F26}, red 0.7647059, green 0.43529412, blue 0.14901961, alpha 1, hue 0.07749462, saturation 0.8051282, and value 0.7647059.
6468     * It can be represented as a packed float with the constant {@code -0x1.4cdf86p125F}.
6469     * <pre>
6470     * <font style='background-color: #C36F26;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C36F26; color: #000000'>&nbsp;@&nbsp;</font>
6471     * <font style='background-color: #C36F26;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C36F26'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C36F26'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C36F26'>&nbsp;@&nbsp;</font><font style='background-color: #C36F26; color: #888888'>&nbsp;@&nbsp;</font>
6472     * <font style='background-color: #C36F26;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C36F26; color: #ffffff'>&nbsp;@&nbsp;</font>
6473     * </pre>
6474     */
6475    public static final SColor CW_FLUSH_BROWN = new SColor(0xC36F26, "CW Flush Brown");
6476
6477    /**
6478     * This color constant "CW Light Brown" has RGB code {@code 0xDEBA9B}, red 0.87058824, green 0.7294118, blue 0.60784316, alpha 1, hue 0.07711458, saturation 0.30180177, and value 0.87058824.
6479     * It can be represented as a packed float with the constant {@code -0x1.3775bcp126F}.
6480     * <pre>
6481     * <font style='background-color: #DEBA9B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DEBA9B; color: #000000'>&nbsp;@&nbsp;</font>
6482     * <font style='background-color: #DEBA9B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DEBA9B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DEBA9B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DEBA9B'>&nbsp;@&nbsp;</font><font style='background-color: #DEBA9B; color: #888888'>&nbsp;@&nbsp;</font>
6483     * <font style='background-color: #DEBA9B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DEBA9B; color: #ffffff'>&nbsp;@&nbsp;</font>
6484     * </pre>
6485     */
6486    public static final SColor CW_LIGHT_BROWN = new SColor(0xDEBA9B, "CW Light Brown");
6487
6488    /**
6489     * This color constant "CW Pale Brown" has RGB code {@code 0xE2CDBB}, red 0.8862745, green 0.8039216, blue 0.73333335, alpha 1, hue 0.07692313, saturation 0.17256635, and value 0.8862745.
6490     * It can be represented as a packed float with the constant {@code -0x1.779bc4p126F}.
6491     * <pre>
6492     * <font style='background-color: #E2CDBB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E2CDBB; color: #000000'>&nbsp;@&nbsp;</font>
6493     * <font style='background-color: #E2CDBB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E2CDBB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E2CDBB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E2CDBB'>&nbsp;@&nbsp;</font><font style='background-color: #E2CDBB; color: #888888'>&nbsp;@&nbsp;</font>
6494     * <font style='background-color: #E2CDBB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E2CDBB; color: #ffffff'>&nbsp;@&nbsp;</font>
6495     * </pre>
6496     */
6497    public static final SColor CW_PALE_BROWN = new SColor(0xE2CDBB, "CW Pale Brown");
6498
6499    /**
6500     * This color constant "CW Bright Brown" has RGB code {@code 0xDF8F47}, red 0.8745098, green 0.56078434, blue 0.2784314, alpha 1, hue 0.078947425, saturation 0.6816143, and value 0.8745098.
6501     * It can be represented as a packed float with the constant {@code -0x1.8f1fbep125F}.
6502     * <pre>
6503     * <font style='background-color: #DF8F47;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DF8F47; color: #000000'>&nbsp;@&nbsp;</font>
6504     * <font style='background-color: #DF8F47;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DF8F47'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DF8F47'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DF8F47'>&nbsp;@&nbsp;</font><font style='background-color: #DF8F47; color: #888888'>&nbsp;@&nbsp;</font>
6505     * <font style='background-color: #DF8F47;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DF8F47; color: #ffffff'>&nbsp;@&nbsp;</font>
6506     * </pre>
6507     */
6508    public static final SColor CW_BRIGHT_BROWN = new SColor(0xDF8F47, "CW Bright Brown");
6509
6510    /**
6511     * This color constant "CW Dark Brown" has RGB code {@code 0x8A582B}, red 0.5411765, green 0.34509805, blue 0.16862746, alpha 1, hue 0.078947544, saturation 0.6884058, and value 0.5411765.
6512     * It can be represented as a packed float with the constant {@code -0x1.56b114p125F}.
6513     * <pre>
6514     * <font style='background-color: #8A582B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8A582B; color: #000000'>&nbsp;@&nbsp;</font>
6515     * <font style='background-color: #8A582B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8A582B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8A582B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8A582B'>&nbsp;@&nbsp;</font><font style='background-color: #8A582B; color: #888888'>&nbsp;@&nbsp;</font>
6516     * <font style='background-color: #8A582B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8A582B; color: #ffffff'>&nbsp;@&nbsp;</font>
6517     * </pre>
6518     */
6519    public static final SColor CW_DARK_BROWN = new SColor(0x8A582B, "CW Dark Brown");
6520
6521    /**
6522     * This color constant "CW Drab Brown" has RGB code {@code 0x937358}, red 0.5764706, green 0.4509804, blue 0.34509805, alpha 1, hue 0.07627118, saturation 0.40136054, and value 0.5764706.
6523     * It can be represented as a packed float with the constant {@code -0x1.b0e726p125F}.
6524     * <pre>
6525     * <font style='background-color: #937358;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #937358; color: #000000'>&nbsp;@&nbsp;</font>
6526     * <font style='background-color: #937358;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #937358'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #937358'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #937358'>&nbsp;@&nbsp;</font><font style='background-color: #937358; color: #888888'>&nbsp;@&nbsp;</font>
6527     * <font style='background-color: #937358;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #937358; color: #ffffff'>&nbsp;@&nbsp;</font>
6528     * </pre>
6529     */
6530    public static final SColor CW_DRAB_BROWN = new SColor(0x937358, "CW Drab Brown");
6531
6532    /**
6533     * This color constant "CW Rich Brown" has RGB code {@code 0xA45D20}, red 0.6431373, green 0.3647059, blue 0.1254902, alpha 1, hue 0.07702017, saturation 0.80487806, and value 0.6431373.
6534     * It can be represented as a packed float with the constant {@code -0x1.40bb48p125F}.
6535     * <pre>
6536     * <font style='background-color: #A45D20;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A45D20; color: #000000'>&nbsp;@&nbsp;</font>
6537     * <font style='background-color: #A45D20;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A45D20'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A45D20'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A45D20'>&nbsp;@&nbsp;</font><font style='background-color: #A45D20; color: #888888'>&nbsp;@&nbsp;</font>
6538     * <font style='background-color: #A45D20;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A45D20; color: #ffffff'>&nbsp;@&nbsp;</font>
6539     * </pre>
6540     */
6541    public static final SColor CW_RICH_BROWN = new SColor(0xA45D20, "CW Rich Brown");
6542
6543    /**
6544     * This color constant "CW Apricot" has RGB code {@code 0xF9AA38}, red 0.9764706, green 0.6666667, blue 0.21960784, alpha 1, hue 0.098445654, saturation 0.7751004, and value 0.9764706.
6545     * It can be represented as a packed float with the constant {@code -0x1.7155f2p125F}.
6546     * <pre>
6547     * <font style='background-color: #F9AA38;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F9AA38; color: #000000'>&nbsp;@&nbsp;</font>
6548     * <font style='background-color: #F9AA38;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F9AA38'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F9AA38'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F9AA38'>&nbsp;@&nbsp;</font><font style='background-color: #F9AA38; color: #888888'>&nbsp;@&nbsp;</font>
6549     * <font style='background-color: #F9AA38;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F9AA38; color: #ffffff'>&nbsp;@&nbsp;</font>
6550     * </pre>
6551     */
6552    public static final SColor CW_APRICOT = new SColor(0xF9AA38, "CW Apricot");
6553
6554    /**
6555     * This color constant "CW Faded Apricot" has RGB code {@code 0xDDBC8B}, red 0.8666667, green 0.7372549, blue 0.54509807, alpha 1, hue 0.09959364, saturation 0.3710407, and value 0.8666667.
6556     * It can be represented as a packed float with the constant {@code -0x1.1779bap126F}.
6557     * <pre>
6558     * <font style='background-color: #DDBC8B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DDBC8B; color: #000000'>&nbsp;@&nbsp;</font>
6559     * <font style='background-color: #DDBC8B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DDBC8B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DDBC8B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DDBC8B'>&nbsp;@&nbsp;</font><font style='background-color: #DDBC8B; color: #888888'>&nbsp;@&nbsp;</font>
6560     * <font style='background-color: #DDBC8B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DDBC8B; color: #ffffff'>&nbsp;@&nbsp;</font>
6561     * </pre>
6562     */
6563    public static final SColor CW_FADED_APRICOT = new SColor(0xDDBC8B, "CW Faded Apricot");
6564
6565    /**
6566     * This color constant "CW Flush Apricot" has RGB code {@code 0xED971B}, red 0.92941177, green 0.5921569, blue 0.105882354, alpha 1, hue 0.09841275, saturation 0.886076, and value 0.92941177.
6567     * It can be represented as a packed float with the constant {@code -0x1.372fdap125F}.
6568     * <pre>
6569     * <font style='background-color: #ED971B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ED971B; color: #000000'>&nbsp;@&nbsp;</font>
6570     * <font style='background-color: #ED971B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ED971B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ED971B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ED971B'>&nbsp;@&nbsp;</font><font style='background-color: #ED971B; color: #888888'>&nbsp;@&nbsp;</font>
6571     * <font style='background-color: #ED971B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ED971B; color: #ffffff'>&nbsp;@&nbsp;</font>
6572     * </pre>
6573     */
6574    public static final SColor CW_FLUSH_APRICOT = new SColor(0xED971B, "CW Flush Apricot");
6575
6576    /**
6577     * This color constant "CW Light Apricot" has RGB code {@code 0xF8CD90}, red 0.972549, green 0.8039216, blue 0.5647059, alpha 1, hue 0.097756505, saturation 0.41935483, and value 0.972549.
6578     * It can be represented as a packed float with the constant {@code -0x1.219bfp126F}.
6579     * <pre>
6580     * <font style='background-color: #F8CD90;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F8CD90; color: #000000'>&nbsp;@&nbsp;</font>
6581     * <font style='background-color: #F8CD90;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F8CD90'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F8CD90'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F8CD90'>&nbsp;@&nbsp;</font><font style='background-color: #F8CD90; color: #888888'>&nbsp;@&nbsp;</font>
6582     * <font style='background-color: #F8CD90;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F8CD90; color: #ffffff'>&nbsp;@&nbsp;</font>
6583     * </pre>
6584     */
6585    public static final SColor CW_LIGHT_APRICOT = new SColor(0xF8CD90, "CW Light Apricot");
6586
6587    /**
6588     * This color constant "CW Pale Apricot" has RGB code {@code 0xF4DBB7}, red 0.95686275, green 0.85882354, blue 0.7176471, alpha 1, hue 0.09836078, saturation 0.24999999, and value 0.95686275.
6589     * It can be represented as a packed float with the constant {@code -0x1.6fb7e8p126F}.
6590     * <pre>
6591     * <font style='background-color: #F4DBB7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F4DBB7; color: #000000'>&nbsp;@&nbsp;</font>
6592     * <font style='background-color: #F4DBB7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F4DBB7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F4DBB7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F4DBB7'>&nbsp;@&nbsp;</font><font style='background-color: #F4DBB7; color: #888888'>&nbsp;@&nbsp;</font>
6593     * <font style='background-color: #F4DBB7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F4DBB7; color: #ffffff'>&nbsp;@&nbsp;</font>
6594     * </pre>
6595     */
6596    public static final SColor CW_PALE_APRICOT = new SColor(0xF4DBB7, "CW Pale Apricot");
6597
6598    /**
6599     * This color constant "CW Bright Apricot" has RGB code {@code 0xFCAE3F}, red 0.9882353, green 0.68235296, blue 0.24705882, alpha 1, hue 0.09788358, saturation 0.75, and value 0.9882353.
6600     * It can be represented as a packed float with the constant {@code -0x1.7f5df8p125F}.
6601     * <pre>
6602     * <font style='background-color: #FCAE3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FCAE3F; color: #000000'>&nbsp;@&nbsp;</font>
6603     * <font style='background-color: #FCAE3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FCAE3F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FCAE3F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FCAE3F'>&nbsp;@&nbsp;</font><font style='background-color: #FCAE3F; color: #888888'>&nbsp;@&nbsp;</font>
6604     * <font style='background-color: #FCAE3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FCAE3F; color: #ffffff'>&nbsp;@&nbsp;</font>
6605     * </pre>
6606     */
6607    public static final SColor CW_BRIGHT_APRICOT = new SColor(0xFCAE3F, "CW Bright Apricot");
6608
6609    /**
6610     * This color constant "CW Dark Apricot" has RGB code {@code 0xA8701D}, red 0.65882355, green 0.4392157, blue 0.11372549, alpha 1, hue 0.099520326, saturation 0.82738096, and value 0.65882355.
6611     * It can be represented as a packed float with the constant {@code -0x1.3ae15p125F}.
6612     * <pre>
6613     * <font style='background-color: #A8701D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A8701D; color: #000000'>&nbsp;@&nbsp;</font>
6614     * <font style='background-color: #A8701D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A8701D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A8701D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A8701D'>&nbsp;@&nbsp;</font><font style='background-color: #A8701D; color: #888888'>&nbsp;@&nbsp;</font>
6615     * <font style='background-color: #A8701D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A8701D; color: #ffffff'>&nbsp;@&nbsp;</font>
6616     * </pre>
6617     */
6618    public static final SColor CW_DARK_APRICOT = new SColor(0xA8701D, "CW Dark Apricot");
6619
6620    /**
6621     * This color constant "CW Drab Apricot" has RGB code {@code 0xB18B55}, red 0.69411767, green 0.54509807, blue 0.33333334, alpha 1, hue 0.097826004, saturation 0.519774, and value 0.69411767.
6622     * It can be represented as a packed float with the constant {@code -0x1.ab1762p125F}.
6623     * <pre>
6624     * <font style='background-color: #B18B55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B18B55; color: #000000'>&nbsp;@&nbsp;</font>
6625     * <font style='background-color: #B18B55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B18B55'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B18B55'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B18B55'>&nbsp;@&nbsp;</font><font style='background-color: #B18B55; color: #888888'>&nbsp;@&nbsp;</font>
6626     * <font style='background-color: #B18B55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B18B55; color: #ffffff'>&nbsp;@&nbsp;</font>
6627     * </pre>
6628     */
6629    public static final SColor CW_DRAB_APRICOT = new SColor(0xB18B55, "CW Drab Apricot");
6630
6631    /**
6632     * This color constant "CW Rich Apricot" has RGB code {@code 0xC77F17}, red 0.78039217, green 0.49803922, blue 0.09019608, alpha 1, hue 0.098484755, saturation 0.8844221, and value 0.78039217.
6633     * It can be represented as a packed float with the constant {@code -0x1.2eff8ep125F}.
6634     * <pre>
6635     * <font style='background-color: #C77F17;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C77F17; color: #000000'>&nbsp;@&nbsp;</font>
6636     * <font style='background-color: #C77F17;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C77F17'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C77F17'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C77F17'>&nbsp;@&nbsp;</font><font style='background-color: #C77F17; color: #888888'>&nbsp;@&nbsp;</font>
6637     * <font style='background-color: #C77F17;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C77F17; color: #ffffff'>&nbsp;@&nbsp;</font>
6638     * </pre>
6639     */
6640    public static final SColor CW_RICH_APRICOT = new SColor(0xC77F17, "CW Rich Apricot");
6641
6642    /**
6643     * This color constant "CW Gold" has RGB code {@code 0xEBCB1D}, red 0.92156863, green 0.79607844, blue 0.11372549, alpha 1, hue 0.14077675, saturation 0.87659574, and value 0.92156863.
6644     * It can be represented as a packed float with the constant {@code -0x1.3b97d6p125F}.
6645     * <pre>
6646     * <font style='background-color: #EBCB1D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EBCB1D; color: #000000'>&nbsp;@&nbsp;</font>
6647     * <font style='background-color: #EBCB1D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EBCB1D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EBCB1D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EBCB1D'>&nbsp;@&nbsp;</font><font style='background-color: #EBCB1D; color: #888888'>&nbsp;@&nbsp;</font>
6648     * <font style='background-color: #EBCB1D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EBCB1D; color: #ffffff'>&nbsp;@&nbsp;</font>
6649     * </pre>
6650     */
6651    public static final SColor CW_GOLD = new SColor(0xEBCB1D, "CW Gold");
6652
6653    /**
6654     * This color constant "CW Faded Gold" has RGB code {@code 0xDCCF85}, red 0.8627451, green 0.8117647, blue 0.52156866, alpha 1, hue 0.1417625, saturation 0.39545453, and value 0.8627451.
6655     * It can be represented as a packed float with the constant {@code -0x1.0b9fb8p126F}.
6656     * <pre>
6657     * <font style='background-color: #DCCF85;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DCCF85; color: #000000'>&nbsp;@&nbsp;</font>
6658     * <font style='background-color: #DCCF85;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DCCF85'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DCCF85'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DCCF85'>&nbsp;@&nbsp;</font><font style='background-color: #DCCF85; color: #888888'>&nbsp;@&nbsp;</font>
6659     * <font style='background-color: #DCCF85;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DCCF85; color: #ffffff'>&nbsp;@&nbsp;</font>
6660     * </pre>
6661     */
6662    public static final SColor CW_FADED_GOLD = new SColor(0xDCCF85, "CW Faded Gold");
6663
6664    /**
6665     * This color constant "CW Flush Gold" has RGB code {@code 0xE0BF0D}, red 0.8784314, green 0.7490196, blue 0.050980393, alpha 1, hue 0.14060044, saturation 0.94196427, and value 0.8784314.
6666     * It can be represented as a packed float with the constant {@code -0x1.1b7fcp125F}.
6667     * <pre>
6668     * <font style='background-color: #E0BF0D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E0BF0D; color: #000000'>&nbsp;@&nbsp;</font>
6669     * <font style='background-color: #E0BF0D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E0BF0D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E0BF0D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E0BF0D'>&nbsp;@&nbsp;</font><font style='background-color: #E0BF0D; color: #888888'>&nbsp;@&nbsp;</font>
6670     * <font style='background-color: #E0BF0D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E0BF0D; color: #ffffff'>&nbsp;@&nbsp;</font>
6671     * </pre>
6672     */
6673    public static final SColor CW_FLUSH_GOLD = new SColor(0xE0BF0D, "CW Flush Gold");
6674
6675    /**
6676     * This color constant "CW Light Gold" has RGB code {@code 0xF1E081}, red 0.94509804, green 0.8784314, blue 0.5058824, alpha 1, hue 0.1413691, saturation 0.46473026, and value 0.94509804.
6677     * It can be represented as a packed float with the constant {@code -0x1.03c1e2p126F}.
6678     * <pre>
6679     * <font style='background-color: #F1E081;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F1E081; color: #000000'>&nbsp;@&nbsp;</font>
6680     * <font style='background-color: #F1E081;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F1E081'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F1E081'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F1E081'>&nbsp;@&nbsp;</font><font style='background-color: #F1E081; color: #888888'>&nbsp;@&nbsp;</font>
6681     * <font style='background-color: #F1E081;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F1E081; color: #ffffff'>&nbsp;@&nbsp;</font>
6682     * </pre>
6683     */
6684    public static final SColor CW_LIGHT_GOLD = new SColor(0xF1E081, "CW Light Gold");
6685
6686    /**
6687     * This color constant "CW Pale Gold" has RGB code {@code 0xF1E7B0}, red 0.94509804, green 0.90588236, blue 0.6901961, alpha 1, hue 0.14102578, saturation 0.26970953, and value 0.94509804.
6688     * It can be represented as a packed float with the constant {@code -0x1.61cfe2p126F}.
6689     * <pre>
6690     * <font style='background-color: #F1E7B0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F1E7B0; color: #000000'>&nbsp;@&nbsp;</font>
6691     * <font style='background-color: #F1E7B0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F1E7B0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F1E7B0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F1E7B0'>&nbsp;@&nbsp;</font><font style='background-color: #F1E7B0; color: #888888'>&nbsp;@&nbsp;</font>
6692     * <font style='background-color: #F1E7B0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F1E7B0; color: #ffffff'>&nbsp;@&nbsp;</font>
6693     * </pre>
6694     */
6695    public static final SColor CW_PALE_GOLD = new SColor(0xF1E7B0, "CW Pale Gold");
6696
6697    /**
6698     * This color constant "CW Bright Gold" has RGB code {@code 0xF2D636}, red 0.9490196, green 0.8392157, blue 0.21176471, alpha 1, hue 0.14184391, saturation 0.7768595, and value 0.9490196.
6699     * It can be represented as a packed float with the constant {@code -0x1.6dade4p125F}.
6700     * <pre>
6701     * <font style='background-color: #F2D636;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F2D636; color: #000000'>&nbsp;@&nbsp;</font>
6702     * <font style='background-color: #F2D636;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F2D636'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F2D636'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F2D636'>&nbsp;@&nbsp;</font><font style='background-color: #F2D636; color: #888888'>&nbsp;@&nbsp;</font>
6703     * <font style='background-color: #F2D636;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F2D636; color: #ffffff'>&nbsp;@&nbsp;</font>
6704     * </pre>
6705     */
6706    public static final SColor CW_BRIGHT_GOLD = new SColor(0xF2D636, "CW Bright Gold");
6707
6708    /**
6709     * This color constant "CW Dark Gold" has RGB code {@code 0x9F880F}, red 0.62352943, green 0.53333336, blue 0.05882353, alpha 1, hue 0.14004624, saturation 0.9056604, and value 0.62352943.
6710     * It can be represented as a packed float with the constant {@code -0x1.1f113ep125F}.
6711     * <pre>
6712     * <font style='background-color: #9F880F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9F880F; color: #000000'>&nbsp;@&nbsp;</font>
6713     * <font style='background-color: #9F880F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9F880F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9F880F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9F880F'>&nbsp;@&nbsp;</font><font style='background-color: #9F880F; color: #888888'>&nbsp;@&nbsp;</font>
6714     * <font style='background-color: #9F880F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9F880F; color: #ffffff'>&nbsp;@&nbsp;</font>
6715     * </pre>
6716     */
6717    public static final SColor CW_DARK_GOLD = new SColor(0x9F880F, "CW Dark Gold");
6718
6719    /**
6720     * This color constant "CW Drab Gold" has RGB code {@code 0xAFA04C}, red 0.6862745, green 0.627451, blue 0.29803923, alpha 1, hue 0.14141417, saturation 0.5657143, and value 0.6862745.
6721     * It can be represented as a packed float with the constant {@code -0x1.99415ep125F}.
6722     * <pre>
6723     * <font style='background-color: #AFA04C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AFA04C; color: #000000'>&nbsp;@&nbsp;</font>
6724     * <font style='background-color: #AFA04C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AFA04C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AFA04C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AFA04C'>&nbsp;@&nbsp;</font><font style='background-color: #AFA04C; color: #888888'>&nbsp;@&nbsp;</font>
6725     * <font style='background-color: #AFA04C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AFA04C; color: #ffffff'>&nbsp;@&nbsp;</font>
6726     * </pre>
6727     */
6728    public static final SColor CW_DRAB_GOLD = new SColor(0xAFA04C, "CW Drab Gold");
6729
6730    /**
6731     * This color constant "CW Rich Gold" has RGB code {@code 0xBCA20B}, red 0.7372549, green 0.63529414, blue 0.043137256, alpha 1, hue 0.1421845, saturation 0.94148934, and value 0.7372549.
6732     * It can be represented as a packed float with the constant {@code -0x1.174578p125F}.
6733     * <pre>
6734     * <font style='background-color: #BCA20B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BCA20B; color: #000000'>&nbsp;@&nbsp;</font>
6735     * <font style='background-color: #BCA20B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BCA20B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BCA20B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BCA20B'>&nbsp;@&nbsp;</font><font style='background-color: #BCA20B; color: #888888'>&nbsp;@&nbsp;</font>
6736     * <font style='background-color: #BCA20B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BCA20B; color: #ffffff'>&nbsp;@&nbsp;</font>
6737     * </pre>
6738     */
6739    public static final SColor CW_RICH_GOLD = new SColor(0xBCA20B, "CW Rich Gold");
6740
6741    /**
6742     * This color constant "CW Yellow" has RGB code {@code 0xFBFA27}, red 0.9843137, green 0.98039216, blue 0.15294118, alpha 1, hue 0.16588056, saturation 0.84462154, and value 0.9843137.
6743     * It can be represented as a packed float with the constant {@code -0x1.4ff5f6p125F}.
6744     * <pre>
6745     * <font style='background-color: #FBFA27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBFA27; color: #000000'>&nbsp;@&nbsp;</font>
6746     * <font style='background-color: #FBFA27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FBFA27'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FBFA27'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FBFA27'>&nbsp;@&nbsp;</font><font style='background-color: #FBFA27; color: #888888'>&nbsp;@&nbsp;</font>
6747     * <font style='background-color: #FBFA27;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBFA27; color: #ffffff'>&nbsp;@&nbsp;</font>
6748     * </pre>
6749     */
6750    public static final SColor CW_YELLOW = new SColor(0xFBFA27, "CW Yellow");
6751
6752    /**
6753     * This color constant "CW Faded Yellow" has RGB code {@code 0xF2F197}, red 0.9490196, green 0.94509804, blue 0.5921569, alpha 1, hue 0.16483521, saturation 0.37603304, and value 0.9490196.
6754     * It can be represented as a packed float with the constant {@code -0x1.2fe3e4p126F}.
6755     * <pre>
6756     * <font style='background-color: #F2F197;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F2F197; color: #000000'>&nbsp;@&nbsp;</font>
6757     * <font style='background-color: #F2F197;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F2F197'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F2F197'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F2F197'>&nbsp;@&nbsp;</font><font style='background-color: #F2F197; color: #888888'>&nbsp;@&nbsp;</font>
6758     * <font style='background-color: #F2F197;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F2F197; color: #ffffff'>&nbsp;@&nbsp;</font>
6759     * </pre>
6760     */
6761    public static final SColor CW_FADED_YELLOW = new SColor(0xF2F197, "CW Faded Yellow");
6762
6763    /**
6764     * This color constant "CW Flush Yellow" has RGB code {@code 0xEEEE13}, red 0.93333334, green 0.93333334, blue 0.07450981, alpha 1, hue 0.16666675, saturation 0.9201681, and value 0.93333334.
6765     * It can be represented as a packed float with the constant {@code -0x1.27dddcp125F}.
6766     * <pre>
6767     * <font style='background-color: #EEEE13;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EEEE13; color: #000000'>&nbsp;@&nbsp;</font>
6768     * <font style='background-color: #EEEE13;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EEEE13'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EEEE13'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EEEE13'>&nbsp;@&nbsp;</font><font style='background-color: #EEEE13; color: #888888'>&nbsp;@&nbsp;</font>
6769     * <font style='background-color: #EEEE13;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EEEE13; color: #ffffff'>&nbsp;@&nbsp;</font>
6770     * </pre>
6771     */
6772    public static final SColor CW_FLUSH_YELLOW = new SColor(0xEEEE13, "CW Flush Yellow");
6773
6774    /**
6775     * This color constant "CW Light Yellow" has RGB code {@code 0xFCFB88}, red 0.9882353, green 0.9843137, blue 0.53333336, alpha 1, hue 0.16523004, saturation 0.46031743, and value 0.9882353.
6776     * It can be represented as a packed float with the constant {@code -0x1.11f7f8p126F}.
6777     * <pre>
6778     * <font style='background-color: #FCFB88;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FCFB88; color: #000000'>&nbsp;@&nbsp;</font>
6779     * <font style='background-color: #FCFB88;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FCFB88'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FCFB88'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FCFB88'>&nbsp;@&nbsp;</font><font style='background-color: #FCFB88; color: #888888'>&nbsp;@&nbsp;</font>
6780     * <font style='background-color: #FCFB88;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FCFB88; color: #ffffff'>&nbsp;@&nbsp;</font>
6781     * </pre>
6782     */
6783    public static final SColor CW_LIGHT_YELLOW = new SColor(0xFCFB88, "CW Light Yellow");
6784
6785    /**
6786     * This color constant "CW Pale Yellow" has RGB code {@code 0xFBFAB8}, red 0.9843137, green 0.98039216, blue 0.72156864, alpha 1, hue 0.1641792, saturation 0.26693225, and value 0.9843137.
6787     * It can be represented as a packed float with the constant {@code -0x1.71f5f6p126F}.
6788     * <pre>
6789     * <font style='background-color: #FBFAB8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBFAB8; color: #000000'>&nbsp;@&nbsp;</font>
6790     * <font style='background-color: #FBFAB8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FBFAB8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FBFAB8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FBFAB8'>&nbsp;@&nbsp;</font><font style='background-color: #FBFAB8; color: #888888'>&nbsp;@&nbsp;</font>
6791     * <font style='background-color: #FBFAB8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FBFAB8; color: #ffffff'>&nbsp;@&nbsp;</font>
6792     * </pre>
6793     */
6794    public static final SColor CW_PALE_YELLOW = new SColor(0xFBFAB8, "CW Pale Yellow");
6795
6796    /**
6797     * This color constant "CW Bright Yellow" has RGB code {@code 0xFDFC39}, red 0.99215686, green 0.9882353, blue 0.22352941, alpha 1, hue 0.16581643, saturation 0.77470356, and value 0.99215686.
6798     * It can be represented as a packed float with the constant {@code -0x1.73f9fap125F}.
6799     * <pre>
6800     * <font style='background-color: #FDFC39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FDFC39; color: #000000'>&nbsp;@&nbsp;</font>
6801     * <font style='background-color: #FDFC39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FDFC39'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FDFC39'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FDFC39'>&nbsp;@&nbsp;</font><font style='background-color: #FDFC39; color: #888888'>&nbsp;@&nbsp;</font>
6802     * <font style='background-color: #FDFC39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FDFC39; color: #ffffff'>&nbsp;@&nbsp;</font>
6803     * </pre>
6804     */
6805    public static final SColor CW_BRIGHT_YELLOW = new SColor(0xFDFC39, "CW Bright Yellow");
6806
6807    /**
6808     * This color constant "CW Dark Yellow" has RGB code {@code 0xAAA914}, red 0.6666667, green 0.6627451, blue 0.078431375, alpha 1, hue 0.16555548, saturation 0.88235295, and value 0.6666667.
6809     * It can be represented as a packed float with the constant {@code -0x1.295354p125F}.
6810     * <pre>
6811     * <font style='background-color: #AAA914;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AAA914; color: #000000'>&nbsp;@&nbsp;</font>
6812     * <font style='background-color: #AAA914;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AAA914'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AAA914'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AAA914'>&nbsp;@&nbsp;</font><font style='background-color: #AAA914; color: #888888'>&nbsp;@&nbsp;</font>
6813     * <font style='background-color: #AAA914;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AAA914; color: #ffffff'>&nbsp;@&nbsp;</font>
6814     * </pre>
6815     */
6816    public static final SColor CW_DARK_YELLOW = new SColor(0xAAA914, "CW Dark Yellow");
6817
6818    /**
6819     * This color constant "CW Drab Yellow" has RGB code {@code 0xC1C05B}, red 0.75686276, green 0.7529412, blue 0.35686275, alpha 1, hue 0.16503274, saturation 0.5284974, and value 0.75686276.
6820     * It can be represented as a packed float with the constant {@code -0x1.b78182p125F}.
6821     * <pre>
6822     * <font style='background-color: #C1C05B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C1C05B; color: #000000'>&nbsp;@&nbsp;</font>
6823     * <font style='background-color: #C1C05B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C1C05B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C1C05B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C1C05B'>&nbsp;@&nbsp;</font><font style='background-color: #C1C05B; color: #888888'>&nbsp;@&nbsp;</font>
6824     * <font style='background-color: #C1C05B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C1C05B; color: #ffffff'>&nbsp;@&nbsp;</font>
6825     * </pre>
6826     */
6827    public static final SColor CW_DRAB_YELLOW = new SColor(0xC1C05B, "CW Drab Yellow");
6828
6829    /**
6830     * This color constant "CW Rich Yellow" has RGB code {@code 0xC9C80F}, red 0.7882353, green 0.78431374, blue 0.05882353, alpha 1, hue 0.16577053, saturation 0.92537314, and value 0.7882353.
6831     * It can be represented as a packed float with the constant {@code -0x1.1f9192p125F}.
6832     * <pre>
6833     * <font style='background-color: #C9C80F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C9C80F; color: #000000'>&nbsp;@&nbsp;</font>
6834     * <font style='background-color: #C9C80F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C9C80F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C9C80F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C9C80F'>&nbsp;@&nbsp;</font><font style='background-color: #C9C80F; color: #888888'>&nbsp;@&nbsp;</font>
6835     * <font style='background-color: #C9C80F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C9C80F; color: #ffffff'>&nbsp;@&nbsp;</font>
6836     * </pre>
6837     */
6838    public static final SColor CW_RICH_YELLOW = new SColor(0xC9C80F, "CW Rich Yellow");
6839
6840    /**
6841     * This color constant "CW Chartreuse" has RGB code {@code 0xC7F12F}, red 0.78039217, green 0.94509804, blue 0.18431373, alpha 1, hue 0.20274901, saturation 0.80497926, and value 0.94509804.
6842     * It can be represented as a packed float with the constant {@code -0x1.5fe38ep125F}.
6843     * <pre>
6844     * <font style='background-color: #C7F12F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C7F12F; color: #000000'>&nbsp;@&nbsp;</font>
6845     * <font style='background-color: #C7F12F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C7F12F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C7F12F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C7F12F'>&nbsp;@&nbsp;</font><font style='background-color: #C7F12F; color: #888888'>&nbsp;@&nbsp;</font>
6846     * <font style='background-color: #C7F12F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C7F12F; color: #ffffff'>&nbsp;@&nbsp;</font>
6847     * </pre>
6848     */
6849    public static final SColor CW_CHARTREUSE = new SColor(0xC7F12F, "CW Chartreuse");
6850
6851    /**
6852     * This color constant "CW Faded Chartreuse" has RGB code {@code 0xD4E693}, red 0.83137256, green 0.9019608, blue 0.5764706, alpha 1, hue 0.20281124, saturation 0.36086953, and value 0.9019608.
6853     * It can be represented as a packed float with the constant {@code -0x1.27cda8p126F}.
6854     * <pre>
6855     * <font style='background-color: #D4E693;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D4E693; color: #000000'>&nbsp;@&nbsp;</font>
6856     * <font style='background-color: #D4E693;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D4E693'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D4E693'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D4E693'>&nbsp;@&nbsp;</font><font style='background-color: #D4E693; color: #888888'>&nbsp;@&nbsp;</font>
6857     * <font style='background-color: #D4E693;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D4E693; color: #ffffff'>&nbsp;@&nbsp;</font>
6858     * </pre>
6859     */
6860    public static final SColor CW_FADED_CHARTREUSE = new SColor(0xD4E693, "CW Faded Chartreuse");
6861
6862    /**
6863     * This color constant "CW Flush Chartreuse" has RGB code {@code 0xB8E516}, red 0.72156864, green 0.8980392, blue 0.08627451, alpha 1, hue 0.2028985, saturation 0.9039301, and value 0.8980392.
6864     * It can be represented as a packed float with the constant {@code -0x1.2dcb7p125F}.
6865     * <pre>
6866     * <font style='background-color: #B8E516;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B8E516; color: #000000'>&nbsp;@&nbsp;</font>
6867     * <font style='background-color: #B8E516;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B8E516'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B8E516'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B8E516'>&nbsp;@&nbsp;</font><font style='background-color: #B8E516; color: #888888'>&nbsp;@&nbsp;</font>
6868     * <font style='background-color: #B8E516;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B8E516; color: #ffffff'>&nbsp;@&nbsp;</font>
6869     * </pre>
6870     */
6871    public static final SColor CW_FLUSH_CHARTREUSE = new SColor(0xB8E516, "CW Flush Chartreuse");
6872
6873    /**
6874     * This color constant "CW Light Chartreuse" has RGB code {@code 0xDFF58C}, red 0.8745098, green 0.9607843, blue 0.54901963, alpha 1, hue 0.2015872, saturation 0.4285714, and value 0.9607843.
6875     * It can be represented as a packed float with the constant {@code -0x1.19ebbep126F}.
6876     * <pre>
6877     * <font style='background-color: #DFF58C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DFF58C; color: #000000'>&nbsp;@&nbsp;</font>
6878     * <font style='background-color: #DFF58C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DFF58C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DFF58C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DFF58C'>&nbsp;@&nbsp;</font><font style='background-color: #DFF58C; color: #888888'>&nbsp;@&nbsp;</font>
6879     * <font style='background-color: #DFF58C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DFF58C; color: #ffffff'>&nbsp;@&nbsp;</font>
6880     * </pre>
6881     */
6882    public static final SColor CW_LIGHT_CHARTREUSE = new SColor(0xDFF58C, "CW Light Chartreuse");
6883
6884    /**
6885     * This color constant "CW Pale Chartreuse" has RGB code {@code 0xE8F5B8}, red 0.9098039, green 0.9607843, blue 0.72156864, alpha 1, hue 0.20218587, saturation 0.24897958, and value 0.9607843.
6886     * It can be represented as a packed float with the constant {@code -0x1.71ebdp126F}.
6887     * <pre>
6888     * <font style='background-color: #E8F5B8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E8F5B8; color: #000000'>&nbsp;@&nbsp;</font>
6889     * <font style='background-color: #E8F5B8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E8F5B8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E8F5B8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E8F5B8'>&nbsp;@&nbsp;</font><font style='background-color: #E8F5B8; color: #888888'>&nbsp;@&nbsp;</font>
6890     * <font style='background-color: #E8F5B8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E8F5B8; color: #ffffff'>&nbsp;@&nbsp;</font>
6891     * </pre>
6892     */
6893    public static final SColor CW_PALE_CHARTREUSE = new SColor(0xE8F5B8, "CW Pale Chartreuse");
6894
6895    /**
6896     * This color constant "CW Bright Chartreuse" has RGB code {@code 0xCEF63C}, red 0.80784315, green 0.9647059, blue 0.23529412, alpha 1, hue 0.20250905, saturation 0.75609756, and value 0.9647059.
6897     * It can be represented as a packed float with the constant {@code -0x1.79ed9cp125F}.
6898     * <pre>
6899     * <font style='background-color: #CEF63C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CEF63C; color: #000000'>&nbsp;@&nbsp;</font>
6900     * <font style='background-color: #CEF63C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CEF63C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CEF63C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CEF63C'>&nbsp;@&nbsp;</font><font style='background-color: #CEF63C; color: #888888'>&nbsp;@&nbsp;</font>
6901     * <font style='background-color: #CEF63C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CEF63C; color: #ffffff'>&nbsp;@&nbsp;</font>
6902     * </pre>
6903     */
6904    public static final SColor CW_BRIGHT_CHARTREUSE = new SColor(0xCEF63C, "CW Bright Chartreuse");
6905
6906    /**
6907     * This color constant "CW Dark Chartreuse" has RGB code {@code 0x85A318}, red 0.52156866, green 0.6392157, blue 0.09411765, alpha 1, hue 0.20263803, saturation 0.85276073, and value 0.6392157.
6908     * It can be represented as a packed float with the constant {@code -0x1.31470ap125F}.
6909     * <pre>
6910     * <font style='background-color: #85A318;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #85A318; color: #000000'>&nbsp;@&nbsp;</font>
6911     * <font style='background-color: #85A318;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #85A318'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #85A318'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #85A318'>&nbsp;@&nbsp;</font><font style='background-color: #85A318; color: #888888'>&nbsp;@&nbsp;</font>
6912     * <font style='background-color: #85A318;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #85A318; color: #ffffff'>&nbsp;@&nbsp;</font>
6913     * </pre>
6914     */
6915    public static final SColor CW_DARK_CHARTREUSE = new SColor(0x85A318, "CW Dark Chartreuse");
6916
6917    /**
6918     * This color constant "CW Drab Chartreuse" has RGB code {@code 0xA2B658}, red 0.63529414, green 0.7137255, blue 0.34509805, alpha 1, hue 0.20212781, saturation 0.5164835, and value 0.7137255.
6919     * It can be represented as a packed float with the constant {@code -0x1.b16d44p125F}.
6920     * <pre>
6921     * <font style='background-color: #A2B658;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A2B658; color: #000000'>&nbsp;@&nbsp;</font>
6922     * <font style='background-color: #A2B658;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A2B658'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A2B658'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A2B658'>&nbsp;@&nbsp;</font><font style='background-color: #A2B658; color: #888888'>&nbsp;@&nbsp;</font>
6923     * <font style='background-color: #A2B658;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A2B658; color: #ffffff'>&nbsp;@&nbsp;</font>
6924     * </pre>
6925     */
6926    public static final SColor CW_DRAB_CHARTREUSE = new SColor(0xA2B658, "CW Drab Chartreuse");
6927
6928    /**
6929     * This color constant "CW Rich Chartreuse" has RGB code {@code 0x9BC112}, red 0.60784316, green 0.75686276, blue 0.07058824, alpha 1, hue 0.20285714, saturation 0.9067358, and value 0.75686276.
6930     * It can be represented as a packed float with the constant {@code -0x1.258336p125F}.
6931     * <pre>
6932     * <font style='background-color: #9BC112;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9BC112; color: #000000'>&nbsp;@&nbsp;</font>
6933     * <font style='background-color: #9BC112;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9BC112'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9BC112'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9BC112'>&nbsp;@&nbsp;</font><font style='background-color: #9BC112; color: #888888'>&nbsp;@&nbsp;</font>
6934     * <font style='background-color: #9BC112;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9BC112; color: #ffffff'>&nbsp;@&nbsp;</font>
6935     * </pre>
6936     */
6937    public static final SColor CW_RICH_CHARTREUSE = new SColor(0x9BC112, "CW Rich Chartreuse");
6938
6939    /**
6940     * This color constant "CW Lime" has RGB code {@code 0x9DDD11}, red 0.6156863, green 0.8666667, blue 0.06666667, alpha 1, hue 0.21895432, saturation 0.9230769, and value 0.8666667.
6941     * It can be represented as a packed float with the constant {@code -0x1.23bb3ap125F}.
6942     * <pre>
6943     * <font style='background-color: #9DDD11;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9DDD11; color: #000000'>&nbsp;@&nbsp;</font>
6944     * <font style='background-color: #9DDD11;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9DDD11'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9DDD11'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9DDD11'>&nbsp;@&nbsp;</font><font style='background-color: #9DDD11; color: #888888'>&nbsp;@&nbsp;</font>
6945     * <font style='background-color: #9DDD11;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9DDD11; color: #ffffff'>&nbsp;@&nbsp;</font>
6946     * </pre>
6947     */
6948    public static final SColor CW_LIME = new SColor(0x9DDD11, "CW Lime");
6949
6950    /**
6951     * This color constant "CW Faded Lime" has RGB code {@code 0xB5D079}, red 0.70980394, green 0.8156863, blue 0.4745098, alpha 1, hue 0.21839082, saturation 0.41826925, and value 0.8156863.
6952     * It can be represented as a packed float with the constant {@code -0x1.f3a16ap125F}.
6953     * <pre>
6954     * <font style='background-color: #B5D079;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B5D079; color: #000000'>&nbsp;@&nbsp;</font>
6955     * <font style='background-color: #B5D079;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B5D079'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B5D079'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B5D079'>&nbsp;@&nbsp;</font><font style='background-color: #B5D079; color: #888888'>&nbsp;@&nbsp;</font>
6956     * <font style='background-color: #B5D079;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B5D079; color: #ffffff'>&nbsp;@&nbsp;</font>
6957     * </pre>
6958     */
6959    public static final SColor CW_FADED_LIME = new SColor(0xB5D079, "CW Faded Lime");
6960
6961    /**
6962     * This color constant "CW Flush Lime" has RGB code {@code 0x93D208}, red 0.5764706, green 0.8235294, blue 0.03137255, alpha 1, hue 0.21864676, saturation 0.96190476, and value 0.8235294.
6963     * It can be represented as a packed float with the constant {@code -0x1.11a526p125F}.
6964     * <pre>
6965     * <font style='background-color: #93D208;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #93D208; color: #000000'>&nbsp;@&nbsp;</font>
6966     * <font style='background-color: #93D208;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #93D208'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #93D208'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #93D208'>&nbsp;@&nbsp;</font><font style='background-color: #93D208; color: #888888'>&nbsp;@&nbsp;</font>
6967     * <font style='background-color: #93D208;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #93D208; color: #ffffff'>&nbsp;@&nbsp;</font>
6968     * </pre>
6969     */
6970    public static final SColor CW_FLUSH_LIME = new SColor(0x93D208, "CW Flush Lime");
6971
6972    /**
6973     * This color constant "CW Light Lime" has RGB code {@code 0xC6E97A}, red 0.7764706, green 0.9137255, blue 0.47843137, alpha 1, hue 0.21921921, saturation 0.47639486, and value 0.9137255.
6974     * It can be represented as a packed float with the constant {@code -0x1.f5d38cp125F}.
6975     * <pre>
6976     * <font style='background-color: #C6E97A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C6E97A; color: #000000'>&nbsp;@&nbsp;</font>
6977     * <font style='background-color: #C6E97A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C6E97A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C6E97A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C6E97A'>&nbsp;@&nbsp;</font><font style='background-color: #C6E97A; color: #888888'>&nbsp;@&nbsp;</font>
6978     * <font style='background-color: #C6E97A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C6E97A; color: #ffffff'>&nbsp;@&nbsp;</font>
6979     * </pre>
6980     */
6981    public static final SColor CW_LIGHT_LIME = new SColor(0xC6E97A, "CW Light Lime");
6982
6983    /**
6984     * This color constant "CW Pale Lime" has RGB code {@code 0xD6EBAA}, red 0.8392157, green 0.92156863, blue 0.6666667, alpha 1, hue 0.22051287, saturation 0.27659574, and value 0.92156863.
6985     * It can be represented as a packed float with the constant {@code -0x1.55d7acp126F}.
6986     * <pre>
6987     * <font style='background-color: #D6EBAA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D6EBAA; color: #000000'>&nbsp;@&nbsp;</font>
6988     * <font style='background-color: #D6EBAA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D6EBAA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D6EBAA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D6EBAA'>&nbsp;@&nbsp;</font><font style='background-color: #D6EBAA; color: #888888'>&nbsp;@&nbsp;</font>
6989     * <font style='background-color: #D6EBAA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D6EBAA; color: #ffffff'>&nbsp;@&nbsp;</font>
6990     * </pre>
6991     */
6992    public static final SColor CW_PALE_LIME = new SColor(0xD6EBAA, "CW Pale Lime");
6993
6994    /**
6995     * This color constant "CW Bright Lime" has RGB code {@code 0xB1E932}, red 0.69411767, green 0.9137255, blue 0.19607843, alpha 1, hue 0.21766865, saturation 0.7854077, and value 0.9137255.
6996     * It can be represented as a packed float with the constant {@code -0x1.65d362p125F}.
6997     * <pre>
6998     * <font style='background-color: #B1E932;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B1E932; color: #000000'>&nbsp;@&nbsp;</font>
6999     * <font style='background-color: #B1E932;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B1E932'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B1E932'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B1E932'>&nbsp;@&nbsp;</font><font style='background-color: #B1E932; color: #888888'>&nbsp;@&nbsp;</font>
7000     * <font style='background-color: #B1E932;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B1E932; color: #ffffff'>&nbsp;@&nbsp;</font>
7001     * </pre>
7002     */
7003    public static final SColor CW_BRIGHT_LIME = new SColor(0xB1E932, "CW Bright Lime");
7004
7005    /**
7006     * This color constant "CW Dark Lime" has RGB code {@code 0x699508}, red 0.4117647, green 0.58431375, blue 0.03137255, alpha 1, hue 0.21867621, saturation 0.94630873, and value 0.58431375.
7007     * It can be represented as a packed float with the constant {@code -0x1.112ad2p125F}.
7008     * <pre>
7009     * <font style='background-color: #699508;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #699508; color: #000000'>&nbsp;@&nbsp;</font>
7010     * <font style='background-color: #699508;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #699508'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #699508'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #699508'>&nbsp;@&nbsp;</font><font style='background-color: #699508; color: #888888'>&nbsp;@&nbsp;</font>
7011     * <font style='background-color: #699508;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #699508; color: #ffffff'>&nbsp;@&nbsp;</font>
7012     * </pre>
7013     */
7014    public static final SColor CW_DARK_LIME = new SColor(0x699508, "CW Dark Lime");
7015
7016    /**
7017     * This color constant "CW Drab Lime" has RGB code {@code 0x85A441}, red 0.52156866, green 0.6431373, blue 0.25490198, alpha 1, hue 0.21885514, saturation 0.6036585, and value 0.6431373.
7018     * It can be represented as a packed float with the constant {@code -0x1.83490ap125F}.
7019     * <pre>
7020     * <font style='background-color: #85A441;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #85A441; color: #000000'>&nbsp;@&nbsp;</font>
7021     * <font style='background-color: #85A441;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #85A441'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #85A441'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #85A441'>&nbsp;@&nbsp;</font><font style='background-color: #85A441; color: #888888'>&nbsp;@&nbsp;</font>
7022     * <font style='background-color: #85A441;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #85A441; color: #ffffff'>&nbsp;@&nbsp;</font>
7023     * </pre>
7024     */
7025    public static final SColor CW_DRAB_LIME = new SColor(0x85A441, "CW Drab Lime");
7026
7027    /**
7028     * This color constant "CW Rich Lime" has RGB code {@code 0x7CB106}, red 0.4862745, green 0.69411767, blue 0.023529412, alpha 1, hue 0.21832359, saturation 0.9661017, and value 0.69411767.
7029     * It can be represented as a packed float with the constant {@code -0x1.0d62f8p125F}.
7030     * <pre>
7031     * <font style='background-color: #7CB106;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7CB106; color: #000000'>&nbsp;@&nbsp;</font>
7032     * <font style='background-color: #7CB106;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7CB106'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7CB106'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7CB106'>&nbsp;@&nbsp;</font><font style='background-color: #7CB106; color: #888888'>&nbsp;@&nbsp;</font>
7033     * <font style='background-color: #7CB106;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7CB106; color: #ffffff'>&nbsp;@&nbsp;</font>
7034     * </pre>
7035     */
7036    public static final SColor CW_RICH_LIME = new SColor(0x7CB106, "CW Rich Lime");
7037
7038    /**
7039     * This color constant "CW Honeydew" has RGB code {@code 0xA5F655}, red 0.64705884, green 0.9647059, blue 0.33333334, alpha 1, hue 0.25051773, saturation 0.6544716, and value 0.9647059.
7040     * It can be represented as a packed float with the constant {@code -0x1.abed4ap125F}.
7041     * <pre>
7042     * <font style='background-color: #A5F655;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A5F655; color: #000000'>&nbsp;@&nbsp;</font>
7043     * <font style='background-color: #A5F655;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A5F655'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A5F655'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A5F655'>&nbsp;@&nbsp;</font><font style='background-color: #A5F655; color: #888888'>&nbsp;@&nbsp;</font>
7044     * <font style='background-color: #A5F655;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A5F655; color: #ffffff'>&nbsp;@&nbsp;</font>
7045     * </pre>
7046     */
7047    public static final SColor CW_HONEYDEW = new SColor(0xA5F655, "CW Honeydew");
7048
7049    /**
7050     * This color constant "CW Faded Honeydew" has RGB code {@code 0xC4E6A1}, red 0.76862746, green 0.9019608, blue 0.6313726, alpha 1, hue 0.24879217, saturation 0.29999998, and value 0.9019608.
7051     * It can be represented as a packed float with the constant {@code -0x1.43cd88p126F}.
7052     * <pre>
7053     * <font style='background-color: #C4E6A1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C4E6A1; color: #000000'>&nbsp;@&nbsp;</font>
7054     * <font style='background-color: #C4E6A1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C4E6A1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C4E6A1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C4E6A1'>&nbsp;@&nbsp;</font><font style='background-color: #C4E6A1; color: #888888'>&nbsp;@&nbsp;</font>
7055     * <font style='background-color: #C4E6A1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C4E6A1; color: #ffffff'>&nbsp;@&nbsp;</font>
7056     * </pre>
7057     */
7058    public static final SColor CW_FADED_HONEYDEW = new SColor(0xC4E6A1, "CW Faded Honeydew");
7059
7060    /**
7061     * This color constant "CW Flush Honeydew" has RGB code {@code 0x89EA28}, red 0.5372549, green 0.91764706, blue 0.15686275, alpha 1, hue 0.25, saturation 0.82905984, and value 0.91764706.
7062     * It can be represented as a packed float with the constant {@code -0x1.51d512p125F}.
7063     * <pre>
7064     * <font style='background-color: #89EA28;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #89EA28; color: #000000'>&nbsp;@&nbsp;</font>
7065     * <font style='background-color: #89EA28;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #89EA28'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #89EA28'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #89EA28'>&nbsp;@&nbsp;</font><font style='background-color: #89EA28; color: #888888'>&nbsp;@&nbsp;</font>
7066     * <font style='background-color: #89EA28;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #89EA28; color: #ffffff'>&nbsp;@&nbsp;</font>
7067     * </pre>
7068     */
7069    public static final SColor CW_FLUSH_HONEYDEW = new SColor(0x89EA28, "CW Flush Honeydew");
7070
7071    /**
7072     * This color constant "CW Light Honeydew" has RGB code {@code 0xCCF8A0}, red 0.8, green 0.972549, blue 0.627451, alpha 1, hue 0.25, saturation 0.3548387, and value 0.972549.
7073     * It can be represented as a packed float with the constant {@code -0x1.41f198p126F}.
7074     * <pre>
7075     * <font style='background-color: #CCF8A0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CCF8A0; color: #000000'>&nbsp;@&nbsp;</font>
7076     * <font style='background-color: #CCF8A0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CCF8A0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CCF8A0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CCF8A0'>&nbsp;@&nbsp;</font><font style='background-color: #CCF8A0; color: #888888'>&nbsp;@&nbsp;</font>
7077     * <font style='background-color: #CCF8A0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CCF8A0; color: #ffffff'>&nbsp;@&nbsp;</font>
7078     * </pre>
7079     */
7080    public static final SColor CW_LIGHT_HONEYDEW = new SColor(0xCCF8A0, "CW Light Honeydew");
7081
7082    /**
7083     * This color constant "CW Pale Honeydew" has RGB code {@code 0xDCF6C3}, red 0.8627451, green 0.9647059, blue 0.7647059, alpha 1, hue 0.25163388, saturation 0.20731705, and value 0.9647059.
7084     * It can be represented as a packed float with the constant {@code -0x1.87edb8p126F}.
7085     * <pre>
7086     * <font style='background-color: #DCF6C3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DCF6C3; color: #000000'>&nbsp;@&nbsp;</font>
7087     * <font style='background-color: #DCF6C3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DCF6C3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DCF6C3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DCF6C3'>&nbsp;@&nbsp;</font><font style='background-color: #DCF6C3; color: #888888'>&nbsp;@&nbsp;</font>
7088     * <font style='background-color: #DCF6C3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DCF6C3; color: #ffffff'>&nbsp;@&nbsp;</font>
7089     * </pre>
7090     */
7091    public static final SColor CW_PALE_HONEYDEW = new SColor(0xDCF6C3, "CW Pale Honeydew");
7092
7093    /**
7094     * This color constant "CW Bright Honeydew" has RGB code {@code 0xA1FA48}, red 0.6313726, green 0.98039216, blue 0.28235295, alpha 1, hue 0.25, saturation 0.71199995, and value 0.98039216.
7095     * It can be represented as a packed float with the constant {@code -0x1.91f542p125F}.
7096     * <pre>
7097     * <font style='background-color: #A1FA48;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A1FA48; color: #000000'>&nbsp;@&nbsp;</font>
7098     * <font style='background-color: #A1FA48;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A1FA48'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A1FA48'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A1FA48'>&nbsp;@&nbsp;</font><font style='background-color: #A1FA48; color: #888888'>&nbsp;@&nbsp;</font>
7099     * <font style='background-color: #A1FA48;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A1FA48; color: #ffffff'>&nbsp;@&nbsp;</font>
7100     * </pre>
7101     */
7102    public static final SColor CW_BRIGHT_HONEYDEW = new SColor(0xA1FA48, "CW Bright Honeydew");
7103
7104    /**
7105     * This color constant "CW Dark Honeydew" has RGB code {@code 0x69A62D}, red 0.4117647, green 0.6509804, blue 0.1764706, alpha 1, hue 0.2506888, saturation 0.7289157, and value 0.6509804.
7106     * It can be represented as a packed float with the constant {@code -0x1.5b4cd2p125F}.
7107     * <pre>
7108     * <font style='background-color: #69A62D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #69A62D; color: #000000'>&nbsp;@&nbsp;</font>
7109     * <font style='background-color: #69A62D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #69A62D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #69A62D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #69A62D'>&nbsp;@&nbsp;</font><font style='background-color: #69A62D; color: #888888'>&nbsp;@&nbsp;</font>
7110     * <font style='background-color: #69A62D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #69A62D; color: #ffffff'>&nbsp;@&nbsp;</font>
7111     * </pre>
7112     */
7113    public static final SColor CW_DARK_HONEYDEW = new SColor(0x69A62D, "CW Dark Honeydew");
7114
7115    /**
7116     * This color constant "CW Drab Honeydew" has RGB code {@code 0x90B76A}, red 0.5647059, green 0.7176471, blue 0.41568628, alpha 1, hue 0.2510823, saturation 0.42076504, and value 0.7176471.
7117     * It can be represented as a packed float with the constant {@code -0x1.d56f2p125F}.
7118     * <pre>
7119     * <font style='background-color: #90B76A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #90B76A; color: #000000'>&nbsp;@&nbsp;</font>
7120     * <font style='background-color: #90B76A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #90B76A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #90B76A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #90B76A'>&nbsp;@&nbsp;</font><font style='background-color: #90B76A; color: #888888'>&nbsp;@&nbsp;</font>
7121     * <font style='background-color: #90B76A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #90B76A; color: #ffffff'>&nbsp;@&nbsp;</font>
7122     * </pre>
7123     */
7124    public static final SColor CW_DRAB_HONEYDEW = new SColor(0x90B76A, "CW Drab Honeydew");
7125
7126    /**
7127     * This color constant "CW Rich Honeydew" has RGB code {@code 0x73C522}, red 0.4509804, green 0.77254903, blue 0.13333334, alpha 1, hue 0.2505113, saturation 0.8274112, and value 0.77254903.
7128     * It can be represented as a packed float with the constant {@code -0x1.458ae6p125F}.
7129     * <pre>
7130     * <font style='background-color: #73C522;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73C522; color: #000000'>&nbsp;@&nbsp;</font>
7131     * <font style='background-color: #73C522;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #73C522'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #73C522'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #73C522'>&nbsp;@&nbsp;</font><font style='background-color: #73C522; color: #888888'>&nbsp;@&nbsp;</font>
7132     * <font style='background-color: #73C522;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73C522; color: #ffffff'>&nbsp;@&nbsp;</font>
7133     * </pre>
7134     */
7135    public static final SColor CW_RICH_HONEYDEW = new SColor(0x73C522, "CW Rich Honeydew");
7136
7137    /**
7138     * This color constant "CW Green" has RGB code {@code 0x3EE628}, red 0.24313726, green 0.9019608, blue 0.15686275, alpha 1, hue 0.31403518, saturation 0.82608694, and value 0.9019608.
7139     * It can be represented as a packed float with the constant {@code -0x1.51cc7cp125F}.
7140     * <pre>
7141     * <font style='background-color: #3EE628;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3EE628; color: #000000'>&nbsp;@&nbsp;</font>
7142     * <font style='background-color: #3EE628;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3EE628'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3EE628'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3EE628'>&nbsp;@&nbsp;</font><font style='background-color: #3EE628; color: #888888'>&nbsp;@&nbsp;</font>
7143     * <font style='background-color: #3EE628;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3EE628; color: #ffffff'>&nbsp;@&nbsp;</font>
7144     * </pre>
7145     */
7146    public static final SColor CW_GREEN = new SColor(0x3EE628, "CW Green");
7147
7148    /**
7149     * This color constant "CW Faded Green" has RGB code {@code 0x84CC7A}, red 0.5176471, green 0.8, blue 0.47843137, alpha 1, hue 0.3130082, saturation 0.4019608, and value 0.8.
7150     * It can be represented as a packed float with the constant {@code -0x1.f59908p125F}.
7151     * <pre>
7152     * <font style='background-color: #84CC7A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #84CC7A; color: #000000'>&nbsp;@&nbsp;</font>
7153     * <font style='background-color: #84CC7A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #84CC7A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #84CC7A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #84CC7A'>&nbsp;@&nbsp;</font><font style='background-color: #84CC7A; color: #888888'>&nbsp;@&nbsp;</font>
7154     * <font style='background-color: #84CC7A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #84CC7A; color: #ffffff'>&nbsp;@&nbsp;</font>
7155     * </pre>
7156     */
7157    public static final SColor CW_FADED_GREEN = new SColor(0x84CC7A, "CW Faded Green");
7158
7159    /**
7160     * This color constant "CW Flush Green" has RGB code {@code 0x2ADB13}, red 0.16470589, green 0.85882354, blue 0.07450981, alpha 1, hue 0.31416655, saturation 0.91324204, and value 0.85882354.
7161     * It can be represented as a packed float with the constant {@code -0x1.27b654p125F}.
7162     * <pre>
7163     * <font style='background-color: #2ADB13;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2ADB13; color: #000000'>&nbsp;@&nbsp;</font>
7164     * <font style='background-color: #2ADB13;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2ADB13'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2ADB13'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2ADB13'>&nbsp;@&nbsp;</font><font style='background-color: #2ADB13; color: #888888'>&nbsp;@&nbsp;</font>
7165     * <font style='background-color: #2ADB13;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2ADB13; color: #ffffff'>&nbsp;@&nbsp;</font>
7166     * </pre>
7167     */
7168    public static final SColor CW_FLUSH_GREEN = new SColor(0x2ADB13, "CW Flush Green");
7169
7170    /**
7171     * This color constant "CW Light Green" has RGB code {@code 0x91EC85}, red 0.5686275, green 0.9254902, blue 0.52156866, alpha 1, hue 0.31391573, saturation 0.43644065, and value 0.9254902.
7172     * It can be represented as a packed float with the constant {@code -0x1.0bd922p126F}.
7173     * <pre>
7174     * <font style='background-color: #91EC85;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #91EC85; color: #000000'>&nbsp;@&nbsp;</font>
7175     * <font style='background-color: #91EC85;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #91EC85'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #91EC85'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #91EC85'>&nbsp;@&nbsp;</font><font style='background-color: #91EC85; color: #888888'>&nbsp;@&nbsp;</font>
7176     * <font style='background-color: #91EC85;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #91EC85; color: #ffffff'>&nbsp;@&nbsp;</font>
7177     * </pre>
7178     */
7179    public static final SColor CW_LIGHT_GREEN = new SColor(0x91EC85, "CW Light Green");
7180
7181    /**
7182     * This color constant "CW Pale Green" has RGB code {@code 0xB5EBAE}, red 0.70980394, green 0.92156863, blue 0.68235296, alpha 1, hue 0.31420755, saturation 0.25957444, and value 0.92156863.
7183     * It can be represented as a packed float with the constant {@code -0x1.5dd76ap126F}.
7184     * <pre>
7185     * <font style='background-color: #B5EBAE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B5EBAE; color: #000000'>&nbsp;@&nbsp;</font>
7186     * <font style='background-color: #B5EBAE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B5EBAE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B5EBAE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B5EBAE'>&nbsp;@&nbsp;</font><font style='background-color: #B5EBAE; color: #888888'>&nbsp;@&nbsp;</font>
7187     * <font style='background-color: #B5EBAE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B5EBAE; color: #ffffff'>&nbsp;@&nbsp;</font>
7188     * </pre>
7189     */
7190    public static final SColor CW_PALE_GREEN = new SColor(0xB5EBAE, "CW Pale Green");
7191
7192    /**
7193     * This color constant "CW Bright Green" has RGB code {@code 0x4FEF39}, red 0.30980393, green 0.9372549, blue 0.22352941, alpha 1, hue 0.31318688, saturation 0.7615063, and value 0.9372549.
7194     * It can be represented as a packed float with the constant {@code -0x1.73de9ep125F}.
7195     * <pre>
7196     * <font style='background-color: #4FEF39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4FEF39; color: #000000'>&nbsp;@&nbsp;</font>
7197     * <font style='background-color: #4FEF39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4FEF39'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4FEF39'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4FEF39'>&nbsp;@&nbsp;</font><font style='background-color: #4FEF39; color: #888888'>&nbsp;@&nbsp;</font>
7198     * <font style='background-color: #4FEF39;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4FEF39; color: #ffffff'>&nbsp;@&nbsp;</font>
7199     * </pre>
7200     */
7201    public static final SColor CW_BRIGHT_GREEN = new SColor(0x4FEF39, "CW Bright Green");
7202
7203    /**
7204     * This color constant "CW Dark Green" has RGB code {@code 0x259B15}, red 0.14509805, green 0.60784316, blue 0.08235294, alpha 1, hue 0.3134328, saturation 0.86451614, and value 0.60784316.
7205     * It can be represented as a packed float with the constant {@code -0x1.2b364ap125F}.
7206     * <pre>
7207     * <font style='background-color: #259B15;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #259B15; color: #000000'>&nbsp;@&nbsp;</font>
7208     * <font style='background-color: #259B15;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #259B15'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #259B15'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #259B15'>&nbsp;@&nbsp;</font><font style='background-color: #259B15; color: #888888'>&nbsp;@&nbsp;</font>
7209     * <font style='background-color: #259B15;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #259B15; color: #ffffff'>&nbsp;@&nbsp;</font>
7210     * </pre>
7211     */
7212    public static final SColor CW_DARK_GREEN = new SColor(0x259B15, "CW Dark Green");
7213
7214    /**
7215     * This color constant "CW Drab Green" has RGB code {@code 0x50A145}, red 0.3137255, green 0.6313726, blue 0.27058825, alpha 1, hue 0.31340587, saturation 0.57142854, and value 0.6313726.
7216     * It can be represented as a packed float with the constant {@code -0x1.8b42ap125F}.
7217     * <pre>
7218     * <font style='background-color: #50A145;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #50A145; color: #000000'>&nbsp;@&nbsp;</font>
7219     * <font style='background-color: #50A145;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #50A145'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #50A145'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #50A145'>&nbsp;@&nbsp;</font><font style='background-color: #50A145; color: #888888'>&nbsp;@&nbsp;</font>
7220     * <font style='background-color: #50A145;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #50A145; color: #ffffff'>&nbsp;@&nbsp;</font>
7221     * </pre>
7222     */
7223    public static final SColor CW_DRAB_GREEN = new SColor(0x50A145, "CW Drab Green");
7224
7225    /**
7226     * This color constant "CW Rich Green" has RGB code {@code 0x23B810}, red 0.13725491, green 0.72156864, blue 0.0627451, alpha 1, hue 0.31448424, saturation 0.9130435, and value 0.72156864.
7227     * It can be represented as a packed float with the constant {@code -0x1.217046p125F}.
7228     * <pre>
7229     * <font style='background-color: #23B810;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #23B810; color: #000000'>&nbsp;@&nbsp;</font>
7230     * <font style='background-color: #23B810;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #23B810'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #23B810'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #23B810'>&nbsp;@&nbsp;</font><font style='background-color: #23B810; color: #888888'>&nbsp;@&nbsp;</font>
7231     * <font style='background-color: #23B810;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #23B810; color: #ffffff'>&nbsp;@&nbsp;</font>
7232     * </pre>
7233     */
7234    public static final SColor CW_RICH_GREEN = new SColor(0x23B810, "CW Rich Green");
7235
7236    /**
7237     * This color constant "CW Jade" has RGB code {@code 0x45E269}, red 0.27058825, green 0.8862745, blue 0.4117647, alpha 1, hue 0.37154984, saturation 0.6946903, and value 0.8862745.
7238     * It can be represented as a packed float with the constant {@code -0x1.d3c48ap125F}.
7239     * <pre>
7240     * <font style='background-color: #45E269;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #45E269; color: #000000'>&nbsp;@&nbsp;</font>
7241     * <font style='background-color: #45E269;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #45E269'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #45E269'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #45E269'>&nbsp;@&nbsp;</font><font style='background-color: #45E269; color: #888888'>&nbsp;@&nbsp;</font>
7242     * <font style='background-color: #45E269;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #45E269; color: #ffffff'>&nbsp;@&nbsp;</font>
7243     * </pre>
7244     */
7245    public static final SColor CW_JADE = new SColor(0x45E269, "CW Jade");
7246
7247    /**
7248     * This color constant "CW Faded Jade" has RGB code {@code 0x8ACD99}, red 0.5411765, green 0.8039216, blue 0.6, alpha 1, hue 0.37064672, saturation 0.32682925, and value 0.8039216.
7249     * It can be represented as a packed float with the constant {@code -0x1.339b14p126F}.
7250     * <pre>
7251     * <font style='background-color: #8ACD99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8ACD99; color: #000000'>&nbsp;@&nbsp;</font>
7252     * <font style='background-color: #8ACD99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8ACD99'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8ACD99'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8ACD99'>&nbsp;@&nbsp;</font><font style='background-color: #8ACD99; color: #888888'>&nbsp;@&nbsp;</font>
7253     * <font style='background-color: #8ACD99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8ACD99; color: #ffffff'>&nbsp;@&nbsp;</font>
7254     * </pre>
7255     */
7256    public static final SColor CW_FADED_JADE = new SColor(0x8ACD99, "CW Faded Jade");
7257
7258    /**
7259     * This color constant "CW Flush Jade" has RGB code {@code 0x21D74B}, red 0.12941177, green 0.84313726, blue 0.29411766, alpha 1, hue 0.37179494, saturation 0.84651166, and value 0.84313726.
7260     * It can be represented as a packed float with the constant {@code -0x1.97ae42p125F}.
7261     * <pre>
7262     * <font style='background-color: #21D74B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #21D74B; color: #000000'>&nbsp;@&nbsp;</font>
7263     * <font style='background-color: #21D74B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #21D74B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #21D74B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #21D74B'>&nbsp;@&nbsp;</font><font style='background-color: #21D74B; color: #888888'>&nbsp;@&nbsp;</font>
7264     * <font style='background-color: #21D74B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #21D74B; color: #ffffff'>&nbsp;@&nbsp;</font>
7265     * </pre>
7266     */
7267    public static final SColor CW_FLUSH_JADE = new SColor(0x21D74B, "CW Flush Jade");
7268
7269    /**
7270     * This color constant "CW Light Jade" has RGB code {@code 0x95EAA9}, red 0.58431375, green 0.91764706, blue 0.6627451, alpha 1, hue 0.37254906, saturation 0.36324784, and value 0.91764706.
7271     * It can be represented as a packed float with the constant {@code -0x1.53d52ap126F}.
7272     * <pre>
7273     * <font style='background-color: #95EAA9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #95EAA9; color: #000000'>&nbsp;@&nbsp;</font>
7274     * <font style='background-color: #95EAA9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #95EAA9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #95EAA9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #95EAA9'>&nbsp;@&nbsp;</font><font style='background-color: #95EAA9; color: #888888'>&nbsp;@&nbsp;</font>
7275     * <font style='background-color: #95EAA9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #95EAA9; color: #ffffff'>&nbsp;@&nbsp;</font>
7276     * </pre>
7277     */
7278    public static final SColor CW_LIGHT_JADE = new SColor(0x95EAA9, "CW Light Jade");
7279
7280    /**
7281     * This color constant "CW Pale Jade" has RGB code {@code 0xB8EAC4}, red 0.72156864, green 0.91764706, blue 0.76862746, alpha 1, hue 0.37333333, saturation 0.2136752, and value 0.91764706.
7282     * It can be represented as a packed float with the constant {@code -0x1.89d57p126F}.
7283     * <pre>
7284     * <font style='background-color: #B8EAC4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B8EAC4; color: #000000'>&nbsp;@&nbsp;</font>
7285     * <font style='background-color: #B8EAC4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B8EAC4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B8EAC4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B8EAC4'>&nbsp;@&nbsp;</font><font style='background-color: #B8EAC4; color: #888888'>&nbsp;@&nbsp;</font>
7286     * <font style='background-color: #B8EAC4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B8EAC4; color: #ffffff'>&nbsp;@&nbsp;</font>
7287     * </pre>
7288     */
7289    public static final SColor CW_PALE_JADE = new SColor(0xB8EAC4, "CW Pale Jade");
7290
7291    /**
7292     * This color constant "CW Bright Jade" has RGB code {@code 0x43EC6B}, red 0.2627451, green 0.9254902, blue 0.41960785, alpha 1, hue 0.37278104, saturation 0.7161017, and value 0.9254902.
7293     * It can be represented as a packed float with the constant {@code -0x1.d7d886p125F}.
7294     * <pre>
7295     * <font style='background-color: #43EC6B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #43EC6B; color: #000000'>&nbsp;@&nbsp;</font>
7296     * <font style='background-color: #43EC6B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #43EC6B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #43EC6B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #43EC6B'>&nbsp;@&nbsp;</font><font style='background-color: #43EC6B; color: #888888'>&nbsp;@&nbsp;</font>
7297     * <font style='background-color: #43EC6B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #43EC6B; color: #ffffff'>&nbsp;@&nbsp;</font>
7298     * </pre>
7299     */
7300    public static final SColor CW_BRIGHT_JADE = new SColor(0x43EC6B, "CW Bright Jade");
7301
7302    /**
7303     * This color constant "CW Dark Jade" has RGB code {@code 0x249940}, red 0.14117648, green 0.6, blue 0.2509804, alpha 1, hue 0.37321937, saturation 0.7647059, and value 0.6.
7304     * It can be represented as a packed float with the constant {@code -0x1.813248p125F}.
7305     * <pre>
7306     * <font style='background-color: #249940;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #249940; color: #000000'>&nbsp;@&nbsp;</font>
7307     * <font style='background-color: #249940;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #249940'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #249940'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #249940'>&nbsp;@&nbsp;</font><font style='background-color: #249940; color: #888888'>&nbsp;@&nbsp;</font>
7308     * <font style='background-color: #249940;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #249940; color: #ffffff'>&nbsp;@&nbsp;</font>
7309     * </pre>
7310     */
7311    public static final SColor CW_DARK_JADE = new SColor(0x249940, "CW Dark Jade");
7312
7313    /**
7314     * This color constant "CW Drab Jade" has RGB code {@code 0x56A267}, red 0.3372549, green 0.63529414, blue 0.40392157, alpha 1, hue 0.37061405, saturation 0.4691358, and value 0.63529414.
7315     * It can be represented as a packed float with the constant {@code -0x1.cf44acp125F}.
7316     * <pre>
7317     * <font style='background-color: #56A267;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #56A267; color: #000000'>&nbsp;@&nbsp;</font>
7318     * <font style='background-color: #56A267;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #56A267'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #56A267'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #56A267'>&nbsp;@&nbsp;</font><font style='background-color: #56A267; color: #888888'>&nbsp;@&nbsp;</font>
7319     * <font style='background-color: #56A267;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #56A267; color: #ffffff'>&nbsp;@&nbsp;</font>
7320     * </pre>
7321     */
7322    public static final SColor CW_DRAB_JADE = new SColor(0x56A267, "CW Drab Jade");
7323
7324    /**
7325     * This color constant "CW Rich Jade" has RGB code {@code 0x1BB53F}, red 0.105882354, green 0.70980394, blue 0.24705882, alpha 1, hue 0.37229443, saturation 0.85082877, and value 0.70980394.
7326     * It can be represented as a packed float with the constant {@code -0x1.7f6a36p125F}.
7327     * <pre>
7328     * <font style='background-color: #1BB53F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1BB53F; color: #000000'>&nbsp;@&nbsp;</font>
7329     * <font style='background-color: #1BB53F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1BB53F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1BB53F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1BB53F'>&nbsp;@&nbsp;</font><font style='background-color: #1BB53F; color: #888888'>&nbsp;@&nbsp;</font>
7330     * <font style='background-color: #1BB53F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1BB53F; color: #ffffff'>&nbsp;@&nbsp;</font>
7331     * </pre>
7332     */
7333    public static final SColor CW_RICH_JADE = new SColor(0x1BB53F, "CW Rich Jade");
7334
7335    /**
7336     * This color constant "CW Seafoam" has RGB code {@code 0x37F4B0}, red 0.21568628, green 0.95686275, blue 0.6901961, alpha 1, hue 0.44003534, saturation 0.7745902, and value 0.95686275.
7337     * It can be represented as a packed float with the constant {@code -0x1.61e86ep126F}.
7338     * <pre>
7339     * <font style='background-color: #37F4B0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #37F4B0; color: #000000'>&nbsp;@&nbsp;</font>
7340     * <font style='background-color: #37F4B0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #37F4B0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #37F4B0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #37F4B0'>&nbsp;@&nbsp;</font><font style='background-color: #37F4B0; color: #888888'>&nbsp;@&nbsp;</font>
7341     * <font style='background-color: #37F4B0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #37F4B0; color: #ffffff'>&nbsp;@&nbsp;</font>
7342     * </pre>
7343     */
7344    public static final SColor CW_SEAFOAM = new SColor(0x37F4B0, "CW Seafoam");
7345
7346    /**
7347     * This color constant "CW Faded Seafoam" has RGB code {@code 0x8ADABD}, red 0.5411765, green 0.85490197, blue 0.7411765, alpha 1, hue 0.4395833, saturation 0.36697245, and value 0.85490197.
7348     * It can be represented as a packed float with the constant {@code -0x1.7bb514p126F}.
7349     * <pre>
7350     * <font style='background-color: #8ADABD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8ADABD; color: #000000'>&nbsp;@&nbsp;</font>
7351     * <font style='background-color: #8ADABD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8ADABD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8ADABD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8ADABD'>&nbsp;@&nbsp;</font><font style='background-color: #8ADABD; color: #888888'>&nbsp;@&nbsp;</font>
7352     * <font style='background-color: #8ADABD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8ADABD; color: #ffffff'>&nbsp;@&nbsp;</font>
7353     * </pre>
7354     */
7355    public static final SColor CW_FADED_SEAFOAM = new SColor(0x8ADABD, "CW Faded Seafoam");
7356
7357    /**
7358     * This color constant "CW Flush Seafoam" has RGB code {@code 0x1AE89E}, red 0.101960786, green 0.9098039, blue 0.61960787, alpha 1, hue 0.44012952, saturation 0.88793105, and value 0.9098039.
7359     * It can be represented as a packed float with the constant {@code -0x1.3dd034p126F}.
7360     * <pre>
7361     * <font style='background-color: #1AE89E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1AE89E; color: #000000'>&nbsp;@&nbsp;</font>
7362     * <font style='background-color: #1AE89E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1AE89E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1AE89E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1AE89E'>&nbsp;@&nbsp;</font><font style='background-color: #1AE89E; color: #888888'>&nbsp;@&nbsp;</font>
7363     * <font style='background-color: #1AE89E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1AE89E; color: #ffffff'>&nbsp;@&nbsp;</font>
7364     * </pre>
7365     */
7366    public static final SColor CW_FLUSH_SEAFOAM = new SColor(0x1AE89E, "CW Flush Seafoam");
7367
7368    /**
7369     * This color constant "CW Light Seafoam" has RGB code {@code 0x8FF6D1}, red 0.56078434, green 0.9647059, blue 0.81960785, alpha 1, hue 0.44012952, saturation 0.41869918, and value 0.9647059.
7370     * It can be represented as a packed float with the constant {@code -0x1.a3ed1ep126F}.
7371     * <pre>
7372     * <font style='background-color: #8FF6D1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8FF6D1; color: #000000'>&nbsp;@&nbsp;</font>
7373     * <font style='background-color: #8FF6D1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8FF6D1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8FF6D1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8FF6D1'>&nbsp;@&nbsp;</font><font style='background-color: #8FF6D1; color: #888888'>&nbsp;@&nbsp;</font>
7374     * <font style='background-color: #8FF6D1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8FF6D1; color: #ffffff'>&nbsp;@&nbsp;</font>
7375     * </pre>
7376     */
7377    public static final SColor CW_LIGHT_SEAFOAM = new SColor(0x8FF6D1, "CW Light Seafoam");
7378
7379    /**
7380     * This color constant "CW Pale Seafoam" has RGB code {@code 0xB6F3DD}, red 0.7137255, green 0.9529412, blue 0.8666667, alpha 1, hue 0.43989062, saturation 0.25102878, and value 0.9529412.
7381     * It can be represented as a packed float with the constant {@code -0x1.bbe76cp126F}.
7382     * <pre>
7383     * <font style='background-color: #B6F3DD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B6F3DD; color: #000000'>&nbsp;@&nbsp;</font>
7384     * <font style='background-color: #B6F3DD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B6F3DD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B6F3DD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B6F3DD'>&nbsp;@&nbsp;</font><font style='background-color: #B6F3DD; color: #888888'>&nbsp;@&nbsp;</font>
7385     * <font style='background-color: #B6F3DD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B6F3DD; color: #ffffff'>&nbsp;@&nbsp;</font>
7386     * </pre>
7387     */
7388    public static final SColor CW_PALE_SEAFOAM = new SColor(0xB6F3DD, "CW Pale Seafoam");
7389
7390    /**
7391     * This color constant "CW Bright Seafoam" has RGB code {@code 0x3FF8B6}, red 0.24705882, green 0.972549, blue 0.7137255, alpha 1, hue 0.44054055, saturation 0.74596775, and value 0.972549.
7392     * It can be represented as a packed float with the constant {@code -0x1.6df07ep126F}.
7393     * <pre>
7394     * <font style='background-color: #3FF8B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3FF8B6; color: #000000'>&nbsp;@&nbsp;</font>
7395     * <font style='background-color: #3FF8B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3FF8B6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3FF8B6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3FF8B6'>&nbsp;@&nbsp;</font><font style='background-color: #3FF8B6; color: #888888'>&nbsp;@&nbsp;</font>
7396     * <font style='background-color: #3FF8B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3FF8B6; color: #ffffff'>&nbsp;@&nbsp;</font>
7397     * </pre>
7398     */
7399    public static final SColor CW_BRIGHT_SEAFOAM = new SColor(0x3FF8B6, "CW Bright Seafoam");
7400
7401    /**
7402     * This color constant "CW Dark Seafoam" has RGB code {@code 0x1DA574}, red 0.11372549, green 0.64705884, blue 0.45490196, alpha 1, hue 0.43995094, saturation 0.8242424, and value 0.64705884.
7403     * It can be represented as a packed float with the constant {@code -0x1.e94a3ap125F}.
7404     * <pre>
7405     * <font style='background-color: #1DA574;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1DA574; color: #000000'>&nbsp;@&nbsp;</font>
7406     * <font style='background-color: #1DA574;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1DA574'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1DA574'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1DA574'>&nbsp;@&nbsp;</font><font style='background-color: #1DA574; color: #888888'>&nbsp;@&nbsp;</font>
7407     * <font style='background-color: #1DA574;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1DA574; color: #ffffff'>&nbsp;@&nbsp;</font>
7408     * </pre>
7409     */
7410    public static final SColor CW_DARK_SEAFOAM = new SColor(0x1DA574, "CW Dark Seafoam");
7411
7412    /**
7413     * This color constant "CW Drab Seafoam" has RGB code {@code 0x54AF8E}, red 0.32941177, green 0.6862745, blue 0.5568628, alpha 1, hue 0.4395604, saturation 0.52, and value 0.6862745.
7414     * It can be represented as a packed float with the constant {@code -0x1.1d5ea8p126F}.
7415     * <pre>
7416     * <font style='background-color: #54AF8E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #54AF8E; color: #000000'>&nbsp;@&nbsp;</font>
7417     * <font style='background-color: #54AF8E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #54AF8E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #54AF8E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #54AF8E'>&nbsp;@&nbsp;</font><font style='background-color: #54AF8E; color: #888888'>&nbsp;@&nbsp;</font>
7418     * <font style='background-color: #54AF8E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #54AF8E; color: #ffffff'>&nbsp;@&nbsp;</font>
7419     * </pre>
7420     */
7421    public static final SColor CW_DRAB_SEAFOAM = new SColor(0x54AF8E, "CW Drab Seafoam");
7422
7423    /**
7424     * This color constant "CW Rich Seafoam" has RGB code {@code 0x16C385}, red 0.08627451, green 0.7647059, blue 0.52156866, alpha 1, hue 0.4402697, saturation 0.8871795, and value 0.7647059.
7425     * It can be represented as a packed float with the constant {@code -0x1.0b862cp126F}.
7426     * <pre>
7427     * <font style='background-color: #16C385;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #16C385; color: #000000'>&nbsp;@&nbsp;</font>
7428     * <font style='background-color: #16C385;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #16C385'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #16C385'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #16C385'>&nbsp;@&nbsp;</font><font style='background-color: #16C385; color: #888888'>&nbsp;@&nbsp;</font>
7429     * <font style='background-color: #16C385;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #16C385; color: #ffffff'>&nbsp;@&nbsp;</font>
7430     * </pre>
7431     */
7432    public static final SColor CW_RICH_SEAFOAM = new SColor(0x16C385, "CW Rich Seafoam");
7433
7434    /**
7435     * This color constant "CW Cyan" has RGB code {@code 0x17E9E3}, red 0.09019608, green 0.9137255, blue 0.8901961, alpha 1, hue 0.49523807, saturation 0.90128756, and value 0.9137255.
7436     * It can be represented as a packed float with the constant {@code -0x1.c7d22ep126F}.
7437     * <pre>
7438     * <font style='background-color: #17E9E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #17E9E3; color: #000000'>&nbsp;@&nbsp;</font>
7439     * <font style='background-color: #17E9E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #17E9E3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #17E9E3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #17E9E3'>&nbsp;@&nbsp;</font><font style='background-color: #17E9E3; color: #888888'>&nbsp;@&nbsp;</font>
7440     * <font style='background-color: #17E9E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #17E9E3; color: #ffffff'>&nbsp;@&nbsp;</font>
7441     * </pre>
7442     */
7443    public static final SColor CW_CYAN = new SColor(0x17E9E3, "CW Cyan");
7444
7445    /**
7446     * This color constant "CW Faded Cyan" has RGB code {@code 0x78D2D0}, red 0.47058824, green 0.8235294, blue 0.8156863, alpha 1, hue 0.4962963, saturation 0.42857143, and value 0.8235294.
7447     * It can be represented as a packed float with the constant {@code -0x1.a1a4fp126F}.
7448     * <pre>
7449     * <font style='background-color: #78D2D0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #78D2D0; color: #000000'>&nbsp;@&nbsp;</font>
7450     * <font style='background-color: #78D2D0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #78D2D0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #78D2D0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #78D2D0'>&nbsp;@&nbsp;</font><font style='background-color: #78D2D0; color: #888888'>&nbsp;@&nbsp;</font>
7451     * <font style='background-color: #78D2D0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #78D2D0; color: #ffffff'>&nbsp;@&nbsp;</font>
7452     * </pre>
7453     */
7454    public static final SColor CW_FADED_CYAN = new SColor(0x78D2D0, "CW Faded Cyan");
7455
7456    /**
7457     * This color constant "CW Flush Cyan" has RGB code {@code 0x0ADED8}, red 0.039215688, green 0.87058824, blue 0.84705883, alpha 1, hue 0.495283, saturation 0.954955, and value 0.87058824.
7458     * It can be represented as a packed float with the constant {@code -0x1.b1bc14p126F}.
7459     * <pre>
7460     * <font style='background-color: #0ADED8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0ADED8; color: #000000'>&nbsp;@&nbsp;</font>
7461     * <font style='background-color: #0ADED8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0ADED8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0ADED8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0ADED8'>&nbsp;@&nbsp;</font><font style='background-color: #0ADED8; color: #888888'>&nbsp;@&nbsp;</font>
7462     * <font style='background-color: #0ADED8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0ADED8; color: #ffffff'>&nbsp;@&nbsp;</font>
7463     * </pre>
7464     */
7465    public static final SColor CW_FLUSH_CYAN = new SColor(0x0ADED8, "CW Flush Cyan");
7466
7467    /**
7468     * This color constant "CW Light Cyan" has RGB code {@code 0x7DEFEC}, red 0.49019608, green 0.9372549, blue 0.9254902, alpha 1, hue 0.49561405, saturation 0.47698745, and value 0.9372549.
7469     * It can be represented as a packed float with the constant {@code -0x1.d9defap126F}.
7470     * <pre>
7471     * <font style='background-color: #7DEFEC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7DEFEC; color: #000000'>&nbsp;@&nbsp;</font>
7472     * <font style='background-color: #7DEFEC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7DEFEC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7DEFEC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7DEFEC'>&nbsp;@&nbsp;</font><font style='background-color: #7DEFEC; color: #888888'>&nbsp;@&nbsp;</font>
7473     * <font style='background-color: #7DEFEC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7DEFEC; color: #ffffff'>&nbsp;@&nbsp;</font>
7474     * </pre>
7475     */
7476    public static final SColor CW_LIGHT_CYAN = new SColor(0x7DEFEC, "CW Light Cyan");
7477
7478    /**
7479     * This color constant "CW Pale Cyan" has RGB code {@code 0xABEEEC}, red 0.67058825, green 0.93333334, blue 0.9254902, alpha 1, hue 0.49502492, saturation 0.2815126, and value 0.93333334.
7480     * It can be represented as a packed float with the constant {@code -0x1.d9dd56p126F}.
7481     * <pre>
7482     * <font style='background-color: #ABEEEC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABEEEC; color: #000000'>&nbsp;@&nbsp;</font>
7483     * <font style='background-color: #ABEEEC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ABEEEC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ABEEEC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ABEEEC'>&nbsp;@&nbsp;</font><font style='background-color: #ABEEEC; color: #888888'>&nbsp;@&nbsp;</font>
7484     * <font style='background-color: #ABEEEC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABEEEC; color: #ffffff'>&nbsp;@&nbsp;</font>
7485     * </pre>
7486     */
7487    public static final SColor CW_PALE_CYAN = new SColor(0xABEEEC, "CW Pale Cyan");
7488
7489    /**
7490     * This color constant "CW Bright Cyan" has RGB code {@code 0x34F1EC}, red 0.20392157, green 0.94509804, blue 0.9254902, alpha 1, hue 0.4955908, saturation 0.7842324, and value 0.94509804.
7491     * It can be represented as a packed float with the constant {@code -0x1.d9e268p126F}.
7492     * <pre>
7493     * <font style='background-color: #34F1EC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #34F1EC; color: #000000'>&nbsp;@&nbsp;</font>
7494     * <font style='background-color: #34F1EC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #34F1EC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #34F1EC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #34F1EC'>&nbsp;@&nbsp;</font><font style='background-color: #34F1EC; color: #888888'>&nbsp;@&nbsp;</font>
7495     * <font style='background-color: #34F1EC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #34F1EC; color: #ffffff'>&nbsp;@&nbsp;</font>
7496     * </pre>
7497     */
7498    public static final SColor CW_BRIGHT_CYAN = new SColor(0x34F1EC, "CW Bright Cyan");
7499
7500    /**
7501     * This color constant "CW Dark Cyan" has RGB code {@code 0x0D9D99}, red 0.050980393, green 0.6156863, blue 0.6, alpha 1, hue 0.4953704, saturation 0.91719747, and value 0.6156863.
7502     * It can be represented as a packed float with the constant {@code -0x1.333a1ap126F}.
7503     * <pre>
7504     * <font style='background-color: #0D9D99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0D9D99; color: #000000'>&nbsp;@&nbsp;</font>
7505     * <font style='background-color: #0D9D99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0D9D99'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0D9D99'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0D9D99'>&nbsp;@&nbsp;</font><font style='background-color: #0D9D99; color: #888888'>&nbsp;@&nbsp;</font>
7506     * <font style='background-color: #0D9D99;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0D9D99; color: #ffffff'>&nbsp;@&nbsp;</font>
7507     * </pre>
7508     */
7509    public static final SColor CW_DARK_CYAN = new SColor(0x0D9D99, "CW Dark Cyan");
7510
7511    /**
7512     * This color constant "CW Drab Cyan" has RGB code {@code 0x41A7A4}, red 0.25490198, green 0.654902, blue 0.6431373, alpha 1, hue 0.4950981, saturation 0.61077845, and value 0.654902.
7513     * It can be represented as a packed float with the constant {@code -0x1.494e82p126F}.
7514     * <pre>
7515     * <font style='background-color: #41A7A4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #41A7A4; color: #000000'>&nbsp;@&nbsp;</font>
7516     * <font style='background-color: #41A7A4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #41A7A4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #41A7A4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #41A7A4'>&nbsp;@&nbsp;</font><font style='background-color: #41A7A4; color: #888888'>&nbsp;@&nbsp;</font>
7517     * <font style='background-color: #41A7A4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #41A7A4; color: #ffffff'>&nbsp;@&nbsp;</font>
7518     * </pre>
7519     */
7520    public static final SColor CW_DRAB_CYAN = new SColor(0x41A7A4, "CW Drab Cyan");
7521
7522    /**
7523     * This color constant "CW Rich Cyan" has RGB code {@code 0x09BAB6}, red 0.03529412, green 0.7294118, blue 0.7137255, alpha 1, hue 0.49623346, saturation 0.9516129, and value 0.7294118.
7524     * It can be represented as a packed float with the constant {@code -0x1.6d7412p126F}.
7525     * <pre>
7526     * <font style='background-color: #09BAB6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #09BAB6; color: #000000'>&nbsp;@&nbsp;</font>
7527     * <font style='background-color: #09BAB6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #09BAB6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #09BAB6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #09BAB6'>&nbsp;@&nbsp;</font><font style='background-color: #09BAB6; color: #888888'>&nbsp;@&nbsp;</font>
7528     * <font style='background-color: #09BAB6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #09BAB6; color: #ffffff'>&nbsp;@&nbsp;</font>
7529     * </pre>
7530     */
7531    public static final SColor CW_RICH_CYAN = new SColor(0x09BAB6, "CW Rich Cyan");
7532
7533    /**
7534     * This color constant "CW Azure" has RGB code {@code 0x33C0E4}, red 0.2, green 0.7529412, blue 0.89411765, alpha 1, hue 0.5338985, saturation 0.7763158, and value 0.89411765.
7535     * It can be represented as a packed float with the constant {@code -0x1.c98066p126F}.
7536     * <pre>
7537     * <font style='background-color: #33C0E4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #33C0E4; color: #000000'>&nbsp;@&nbsp;</font>
7538     * <font style='background-color: #33C0E4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #33C0E4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #33C0E4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #33C0E4'>&nbsp;@&nbsp;</font><font style='background-color: #33C0E4; color: #888888'>&nbsp;@&nbsp;</font>
7539     * <font style='background-color: #33C0E4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #33C0E4; color: #ffffff'>&nbsp;@&nbsp;</font>
7540     * </pre>
7541     */
7542    public static final SColor CW_AZURE = new SColor(0x33C0E4, "CW Azure");
7543
7544    /**
7545     * This color constant "CW Faded Azure" has RGB code {@code 0x7CB9C8}, red 0.4862745, green 0.7254902, blue 0.78431374, alpha 1, hue 0.53289497, saturation 0.38, and value 0.78431374.
7546     * It can be represented as a packed float with the constant {@code -0x1.9172f8p126F}.
7547     * <pre>
7548     * <font style='background-color: #7CB9C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7CB9C8; color: #000000'>&nbsp;@&nbsp;</font>
7549     * <font style='background-color: #7CB9C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7CB9C8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7CB9C8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7CB9C8'>&nbsp;@&nbsp;</font><font style='background-color: #7CB9C8; color: #888888'>&nbsp;@&nbsp;</font>
7550     * <font style='background-color: #7CB9C8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7CB9C8; color: #ffffff'>&nbsp;@&nbsp;</font>
7551     * </pre>
7552     */
7553    public static final SColor CW_FADED_AZURE = new SColor(0x7CB9C8, "CW Faded Azure");
7554
7555    /**
7556     * This color constant "CW Flush Azure" has RGB code {@code 0x18B2D9}, red 0.09411765, green 0.69803923, blue 0.8509804, alpha 1, hue 0.53367877, saturation 0.88940096, and value 0.8509804.
7557     * It can be represented as a packed float with the constant {@code -0x1.b3643p126F}.
7558     * <pre>
7559     * <font style='background-color: #18B2D9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #18B2D9; color: #000000'>&nbsp;@&nbsp;</font>
7560     * <font style='background-color: #18B2D9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #18B2D9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #18B2D9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #18B2D9'>&nbsp;@&nbsp;</font><font style='background-color: #18B2D9; color: #888888'>&nbsp;@&nbsp;</font>
7561     * <font style='background-color: #18B2D9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #18B2D9; color: #ffffff'>&nbsp;@&nbsp;</font>
7562     * </pre>
7563     */
7564    public static final SColor CW_FLUSH_AZURE = new SColor(0x18B2D9, "CW Flush Azure");
7565
7566    /**
7567     * This color constant "CW Light Azure" has RGB code {@code 0x8BD8EB}, red 0.54509807, green 0.84705883, blue 0.92156863, alpha 1, hue 0.53298616, saturation 0.40851063, and value 0.92156863.
7568     * It can be represented as a packed float with the constant {@code -0x1.d7b116p126F}.
7569     * <pre>
7570     * <font style='background-color: #8BD8EB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8BD8EB; color: #000000'>&nbsp;@&nbsp;</font>
7571     * <font style='background-color: #8BD8EB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8BD8EB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8BD8EB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8BD8EB'>&nbsp;@&nbsp;</font><font style='background-color: #8BD8EB; color: #888888'>&nbsp;@&nbsp;</font>
7572     * <font style='background-color: #8BD8EB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8BD8EB; color: #ffffff'>&nbsp;@&nbsp;</font>
7573     * </pre>
7574     */
7575    public static final SColor CW_LIGHT_AZURE = new SColor(0x8BD8EB, "CW Light Azure");
7576
7577    /**
7578     * This color constant "CW Pale Azure" has RGB code {@code 0xB2DFEA}, red 0.69803923, green 0.8745098, blue 0.91764706, alpha 1, hue 0.532738, saturation 0.23931623, and value 0.91764706.
7579     * It can be represented as a packed float with the constant {@code -0x1.d5bf64p126F}.
7580     * <pre>
7581     * <font style='background-color: #B2DFEA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B2DFEA; color: #000000'>&nbsp;@&nbsp;</font>
7582     * <font style='background-color: #B2DFEA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B2DFEA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B2DFEA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B2DFEA'>&nbsp;@&nbsp;</font><font style='background-color: #B2DFEA; color: #888888'>&nbsp;@&nbsp;</font>
7583     * <font style='background-color: #B2DFEA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B2DFEA; color: #ffffff'>&nbsp;@&nbsp;</font>
7584     * </pre>
7585     */
7586    public static final SColor CW_PALE_AZURE = new SColor(0xB2DFEA, "CW Pale Azure");
7587
7588    /**
7589     * This color constant "CW Bright Azure" has RGB code {@code 0x3DCAEE}, red 0.23921569, green 0.7921569, blue 0.93333334, alpha 1, hue 0.5338985, saturation 0.7436975, and value 0.93333334.
7590     * It can be represented as a packed float with the constant {@code -0x1.dd947ap126F}.
7591     * <pre>
7592     * <font style='background-color: #3DCAEE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3DCAEE; color: #000000'>&nbsp;@&nbsp;</font>
7593     * <font style='background-color: #3DCAEE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3DCAEE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3DCAEE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3DCAEE'>&nbsp;@&nbsp;</font><font style='background-color: #3DCAEE; color: #888888'>&nbsp;@&nbsp;</font>
7594     * <font style='background-color: #3DCAEE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3DCAEE; color: #ffffff'>&nbsp;@&nbsp;</font>
7595     * </pre>
7596     */
7597    public static final SColor CW_BRIGHT_AZURE = new SColor(0x3DCAEE, "CW Bright Azure");
7598
7599    /**
7600     * This color constant "CW Dark Azure" has RGB code {@code 0x1B819A}, red 0.105882354, green 0.5058824, blue 0.6039216, alpha 1, hue 0.53280866, saturation 0.8246753, and value 0.6039216.
7601     * It can be represented as a packed float with the constant {@code -0x1.350236p126F}.
7602     * <pre>
7603     * <font style='background-color: #1B819A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1B819A; color: #000000'>&nbsp;@&nbsp;</font>
7604     * <font style='background-color: #1B819A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1B819A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1B819A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1B819A'>&nbsp;@&nbsp;</font><font style='background-color: #1B819A; color: #888888'>&nbsp;@&nbsp;</font>
7605     * <font style='background-color: #1B819A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1B819A; color: #ffffff'>&nbsp;@&nbsp;</font>
7606     * </pre>
7607     */
7608    public static final SColor CW_DARK_AZURE = new SColor(0x1B819A, "CW Dark Azure");
7609
7610    /**
7611     * This color constant "CW Drab Azure" has RGB code {@code 0x498D9F}, red 0.28627452, green 0.5529412, blue 0.62352943, alpha 1, hue 0.53488386, saturation 0.5408805, and value 0.62352943.
7612     * It can be represented as a packed float with the constant {@code -0x1.3f1a92p126F}.
7613     * <pre>
7614     * <font style='background-color: #498D9F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #498D9F; color: #000000'>&nbsp;@&nbsp;</font>
7615     * <font style='background-color: #498D9F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #498D9F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #498D9F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #498D9F'>&nbsp;@&nbsp;</font><font style='background-color: #498D9F; color: #888888'>&nbsp;@&nbsp;</font>
7616     * <font style='background-color: #498D9F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #498D9F; color: #ffffff'>&nbsp;@&nbsp;</font>
7617     * </pre>
7618     */
7619    public static final SColor CW_DRAB_AZURE = new SColor(0x498D9F, "CW Drab Azure");
7620
7621    /**
7622     * This color constant "CW Rich Azure" has RGB code {@code 0x1596B6}, red 0.08235294, green 0.5882353, blue 0.7137255, alpha 1, hue 0.5331265, saturation 0.8846154, and value 0.7137255.
7623     * It can be represented as a packed float with the constant {@code -0x1.6d2c2ap126F}.
7624     * <pre>
7625     * <font style='background-color: #1596B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1596B6; color: #000000'>&nbsp;@&nbsp;</font>
7626     * <font style='background-color: #1596B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1596B6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1596B6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1596B6'>&nbsp;@&nbsp;</font><font style='background-color: #1596B6; color: #888888'>&nbsp;@&nbsp;</font>
7627     * <font style='background-color: #1596B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1596B6; color: #ffffff'>&nbsp;@&nbsp;</font>
7628     * </pre>
7629     */
7630    public static final SColor CW_RICH_AZURE = new SColor(0x1596B6, "CW Rich Azure");
7631
7632    /**
7633     * This color constant "CW Blue" has RGB code {@code 0x267CE9}, red 0.14901961, green 0.4862745, blue 0.9137255, alpha 1, hue 0.5931623, saturation 0.8369099, and value 0.9137255.
7634     * It can be represented as a packed float with the constant {@code -0x1.d2f84cp126F}.
7635     * <pre>
7636     * <font style='background-color: #267CE9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #267CE9; color: #000000'>&nbsp;@&nbsp;</font>
7637     * <font style='background-color: #267CE9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #267CE9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #267CE9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #267CE9'>&nbsp;@&nbsp;</font><font style='background-color: #267CE9; color: #888888'>&nbsp;@&nbsp;</font>
7638     * <font style='background-color: #267CE9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #267CE9; color: #ffffff'>&nbsp;@&nbsp;</font>
7639     * </pre>
7640     */
7641    public static final SColor CW_BLUE = new SColor(0x267CE9, "CW Blue");
7642
7643    /**
7644     * This color constant "CW Faded Blue" has RGB code {@code 0x658AB9}, red 0.39607844, green 0.5411765, blue 0.7254902, alpha 1, hue 0.59325397, saturation 0.45405406, and value 0.7254902.
7645     * It can be represented as a packed float with the constant {@code -0x1.7314cap126F}.
7646     * <pre>
7647     * <font style='background-color: #658AB9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #658AB9; color: #000000'>&nbsp;@&nbsp;</font>
7648     * <font style='background-color: #658AB9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #658AB9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #658AB9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #658AB9'>&nbsp;@&nbsp;</font><font style='background-color: #658AB9; color: #888888'>&nbsp;@&nbsp;</font>
7649     * <font style='background-color: #658AB9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #658AB9; color: #ffffff'>&nbsp;@&nbsp;</font>
7650     * </pre>
7651     */
7652    public static final SColor CW_FADED_BLUE = new SColor(0x658AB9, "CW Faded Blue");
7653
7654    /**
7655     * This color constant "CW Flush Blue" has RGB code {@code 0x136CDE}, red 0.07450981, green 0.42352942, blue 0.87058824, alpha 1, hue 0.593596, saturation 0.9144144, and value 0.87058824.
7656     * It can be represented as a packed float with the constant {@code -0x1.bcd826p126F}.
7657     * <pre>
7658     * <font style='background-color: #136CDE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #136CDE; color: #000000'>&nbsp;@&nbsp;</font>
7659     * <font style='background-color: #136CDE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #136CDE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #136CDE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #136CDE'>&nbsp;@&nbsp;</font><font style='background-color: #136CDE; color: #888888'>&nbsp;@&nbsp;</font>
7660     * <font style='background-color: #136CDE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #136CDE; color: #ffffff'>&nbsp;@&nbsp;</font>
7661     * </pre>
7662     */
7663    public static final SColor CW_FLUSH_BLUE = new SColor(0x136CDE, "CW Flush Blue");
7664
7665    /**
7666     * This color constant "CW Light Blue" has RGB code {@code 0x81B0EB}, red 0.5058824, green 0.6901961, blue 0.92156863, alpha 1, hue 0.59276724, saturation 0.4510638, and value 0.92156863.
7667     * It can be represented as a packed float with the constant {@code -0x1.d76102p126F}.
7668     * <pre>
7669     * <font style='background-color: #81B0EB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #81B0EB; color: #000000'>&nbsp;@&nbsp;</font>
7670     * <font style='background-color: #81B0EB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #81B0EB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #81B0EB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #81B0EB'>&nbsp;@&nbsp;</font><font style='background-color: #81B0EB; color: #888888'>&nbsp;@&nbsp;</font>
7671     * <font style='background-color: #81B0EB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #81B0EB; color: #ffffff'>&nbsp;@&nbsp;</font>
7672     * </pre>
7673     */
7674    public static final SColor CW_LIGHT_BLUE = new SColor(0x81B0EB, "CW Light Blue");
7675
7676    /**
7677     * This color constant "CW Pale Blue" has RGB code {@code 0xA7C3E6}, red 0.654902, green 0.7647059, blue 0.9019608, alpha 1, hue 0.5925925, saturation 0.27391303, and value 0.9019608.
7678     * It can be represented as a packed float with the constant {@code -0x1.cd874ep126F}.
7679     * <pre>
7680     * <font style='background-color: #A7C3E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A7C3E6; color: #000000'>&nbsp;@&nbsp;</font>
7681     * <font style='background-color: #A7C3E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A7C3E6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A7C3E6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A7C3E6'>&nbsp;@&nbsp;</font><font style='background-color: #A7C3E6; color: #888888'>&nbsp;@&nbsp;</font>
7682     * <font style='background-color: #A7C3E6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A7C3E6; color: #ffffff'>&nbsp;@&nbsp;</font>
7683     * </pre>
7684     */
7685    public static final SColor CW_PALE_BLUE = new SColor(0xA7C3E6, "CW Pale Blue");
7686
7687    /**
7688     * This color constant "CW Bright Blue" has RGB code {@code 0x398AF1}, red 0.22352941, green 0.5411765, blue 0.94509804, alpha 1, hue 0.5932971, saturation 0.7634855, and value 0.94509804.
7689     * It can be represented as a packed float with the constant {@code -0x1.e31472p126F}.
7690     * <pre>
7691     * <font style='background-color: #398AF1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #398AF1; color: #000000'>&nbsp;@&nbsp;</font>
7692     * <font style='background-color: #398AF1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #398AF1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #398AF1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #398AF1'>&nbsp;@&nbsp;</font><font style='background-color: #398AF1; color: #888888'>&nbsp;@&nbsp;</font>
7693     * <font style='background-color: #398AF1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #398AF1; color: #ffffff'>&nbsp;@&nbsp;</font>
7694     * </pre>
7695     */
7696    public static final SColor CW_BRIGHT_BLUE = new SColor(0x398AF1, "CW Bright Blue");
7697
7698    /**
7699     * This color constant "CW Dark Blue" has RGB code {@code 0x15519D}, red 0.08235294, green 0.31764707, blue 0.6156863, alpha 1, hue 0.5931374, saturation 0.86624205, and value 0.6156863.
7700     * It can be represented as a packed float with the constant {@code -0x1.3aa22ap126F}.
7701     * <pre>
7702     * <font style='background-color: #15519D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #15519D; color: #000000'>&nbsp;@&nbsp;</font>
7703     * <font style='background-color: #15519D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #15519D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #15519D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #15519D'>&nbsp;@&nbsp;</font><font style='background-color: #15519D; color: #888888'>&nbsp;@&nbsp;</font>
7704     * <font style='background-color: #15519D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #15519D; color: #ffffff'>&nbsp;@&nbsp;</font>
7705     * </pre>
7706     */
7707    public static final SColor CW_DARK_BLUE = new SColor(0x15519D, "CW Dark Blue");
7708
7709    /**
7710     * This color constant "CW Drab Blue" has RGB code {@code 0x355E93}, red 0.20784314, green 0.36862746, blue 0.5764706, alpha 1, hue 0.5939715, saturation 0.6394558, and value 0.5764706.
7711     * It can be represented as a packed float with the constant {@code -0x1.26bc6ap126F}.
7712     * <pre>
7713     * <font style='background-color: #355E93;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #355E93; color: #000000'>&nbsp;@&nbsp;</font>
7714     * <font style='background-color: #355E93;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #355E93'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #355E93'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #355E93'>&nbsp;@&nbsp;</font><font style='background-color: #355E93; color: #888888'>&nbsp;@&nbsp;</font>
7715     * <font style='background-color: #355E93;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #355E93; color: #ffffff'>&nbsp;@&nbsp;</font>
7716     * </pre>
7717     */
7718    public static final SColor CW_DRAB_BLUE = new SColor(0x355E93, "CW Drab Blue");
7719
7720    /**
7721     * This color constant "CW Rich Blue" has RGB code {@code 0x0F5ABB}, red 0.05882353, green 0.3529412, blue 0.73333335, alpha 1, hue 0.59399235, saturation 0.9197861, and value 0.73333335.
7722     * It can be represented as a packed float with the constant {@code -0x1.76b41ep126F}.
7723     * <pre>
7724     * <font style='background-color: #0F5ABB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0F5ABB; color: #000000'>&nbsp;@&nbsp;</font>
7725     * <font style='background-color: #0F5ABB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0F5ABB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0F5ABB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0F5ABB'>&nbsp;@&nbsp;</font><font style='background-color: #0F5ABB; color: #888888'>&nbsp;@&nbsp;</font>
7726     * <font style='background-color: #0F5ABB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0F5ABB; color: #ffffff'>&nbsp;@&nbsp;</font>
7727     * </pre>
7728     */
7729    public static final SColor CW_RICH_BLUE = new SColor(0x0F5ABB, "CW Rich Blue");
7730
7731    /**
7732     * This color constant "CW Sapphire" has RGB code {@code 0x3244E8}, red 0.19607843, green 0.26666668, blue 0.9098039, alpha 1, hue 0.6501833, saturation 0.7844828, and value 0.9098039.
7733     * It can be represented as a packed float with the constant {@code -0x1.d08864p126F}.
7734     * <pre>
7735     * <font style='background-color: #3244E8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3244E8; color: #000000'>&nbsp;@&nbsp;</font>
7736     * <font style='background-color: #3244E8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3244E8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3244E8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3244E8'>&nbsp;@&nbsp;</font><font style='background-color: #3244E8; color: #888888'>&nbsp;@&nbsp;</font>
7737     * <font style='background-color: #3244E8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3244E8; color: #ffffff'>&nbsp;@&nbsp;</font>
7738     * </pre>
7739     */
7740    public static final SColor CW_SAPPHIRE = new SColor(0x3244E8, "CW Sapphire");
7741
7742    /**
7743     * This color constant "CW Faded Sapphire" has RGB code {@code 0x5E65AC}, red 0.36862746, green 0.39607844, blue 0.6745098, alpha 1, hue 0.65170944, saturation 0.45348838, and value 0.6745098.
7744     * It can be represented as a packed float with the constant {@code -0x1.58cabcp126F}.
7745     * <pre>
7746     * <font style='background-color: #5E65AC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5E65AC; color: #000000'>&nbsp;@&nbsp;</font>
7747     * <font style='background-color: #5E65AC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5E65AC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5E65AC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5E65AC'>&nbsp;@&nbsp;</font><font style='background-color: #5E65AC; color: #888888'>&nbsp;@&nbsp;</font>
7748     * <font style='background-color: #5E65AC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5E65AC; color: #ffffff'>&nbsp;@&nbsp;</font>
7749     * </pre>
7750     */
7751    public static final SColor CW_FADED_SAPPHIRE = new SColor(0x5E65AC, "CW Faded Sapphire");
7752
7753    /**
7754     * This color constant "CW Flush Sapphire" has RGB code {@code 0x172BDD}, red 0.09019608, green 0.16862746, blue 0.8666667, alpha 1, hue 0.64983153, saturation 0.8959276, and value 0.8666667.
7755     * It can be represented as a packed float with the constant {@code -0x1.ba562ep126F}.
7756     * <pre>
7757     * <font style='background-color: #172BDD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #172BDD; color: #000000'>&nbsp;@&nbsp;</font>
7758     * <font style='background-color: #172BDD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #172BDD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #172BDD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #172BDD'>&nbsp;@&nbsp;</font><font style='background-color: #172BDD; color: #888888'>&nbsp;@&nbsp;</font>
7759     * <font style='background-color: #172BDD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #172BDD; color: #ffffff'>&nbsp;@&nbsp;</font>
7760     * </pre>
7761     */
7762    public static final SColor CW_FLUSH_SAPPHIRE = new SColor(0x172BDD, "CW Flush Sapphire");
7763
7764    /**
7765     * This color constant "CW Light Sapphire" has RGB code {@code 0x8690E9}, red 0.5254902, green 0.5647059, blue 0.9137255, alpha 1, hue 0.64983153, saturation 0.42489266, and value 0.9137255.
7766     * It can be represented as a packed float with the constant {@code -0x1.d3210cp126F}.
7767     * <pre>
7768     * <font style='background-color: #8690E9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8690E9; color: #000000'>&nbsp;@&nbsp;</font>
7769     * <font style='background-color: #8690E9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8690E9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8690E9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8690E9'>&nbsp;@&nbsp;</font><font style='background-color: #8690E9; color: #888888'>&nbsp;@&nbsp;</font>
7770     * <font style='background-color: #8690E9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8690E9; color: #ffffff'>&nbsp;@&nbsp;</font>
7771     * </pre>
7772     */
7773    public static final SColor CW_LIGHT_SAPPHIRE = new SColor(0x8690E9, "CW Light Sapphire");
7774
7775    /**
7776     * This color constant "CW Pale Sapphire" has RGB code {@code 0xA7ADE1}, red 0.654902, green 0.6784314, blue 0.88235295, alpha 1, hue 0.64942527, saturation 0.25777775, and value 0.88235295.
7777     * It can be represented as a packed float with the constant {@code -0x1.c35b4ep126F}.
7778     * <pre>
7779     * <font style='background-color: #A7ADE1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A7ADE1; color: #000000'>&nbsp;@&nbsp;</font>
7780     * <font style='background-color: #A7ADE1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A7ADE1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A7ADE1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A7ADE1'>&nbsp;@&nbsp;</font><font style='background-color: #A7ADE1; color: #888888'>&nbsp;@&nbsp;</font>
7781     * <font style='background-color: #A7ADE1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A7ADE1; color: #ffffff'>&nbsp;@&nbsp;</font>
7782     * </pre>
7783     */
7784    public static final SColor CW_PALE_SAPPHIRE = new SColor(0xA7ADE1, "CW Pale Sapphire");
7785
7786    /**
7787     * This color constant "CW Bright Sapphire" has RGB code {@code 0x3D4DF0}, red 0.23921569, green 0.3019608, blue 0.9411765, alpha 1, hue 0.6517693, saturation 0.74583334, and value 0.9411765.
7788     * It can be represented as a packed float with the constant {@code -0x1.e09a7ap126F}.
7789     * <pre>
7790     * <font style='background-color: #3D4DF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D4DF0; color: #000000'>&nbsp;@&nbsp;</font>
7791     * <font style='background-color: #3D4DF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3D4DF0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3D4DF0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3D4DF0'>&nbsp;@&nbsp;</font><font style='background-color: #3D4DF0; color: #888888'>&nbsp;@&nbsp;</font>
7792     * <font style='background-color: #3D4DF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D4DF0; color: #ffffff'>&nbsp;@&nbsp;</font>
7793     * </pre>
7794     */
7795    public static final SColor CW_BRIGHT_SAPPHIRE = new SColor(0x3D4DF0, "CW Bright Sapphire");
7796
7797    /**
7798     * This color constant "CW Dark Sapphire" has RGB code {@code 0x1A289D}, red 0.101960786, green 0.15686275, blue 0.6156863, alpha 1, hue 0.6488551, saturation 0.83439493, and value 0.6156863.
7799     * It can be represented as a packed float with the constant {@code -0x1.3a5034p126F}.
7800     * <pre>
7801     * <font style='background-color: #1A289D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1A289D; color: #000000'>&nbsp;@&nbsp;</font>
7802     * <font style='background-color: #1A289D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1A289D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1A289D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1A289D'>&nbsp;@&nbsp;</font><font style='background-color: #1A289D; color: #888888'>&nbsp;@&nbsp;</font>
7803     * <font style='background-color: #1A289D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1A289D; color: #ffffff'>&nbsp;@&nbsp;</font>
7804     * </pre>
7805     */
7806    public static final SColor CW_DARK_SAPPHIRE = new SColor(0x1A289D, "CW Dark Sapphire");
7807
7808    /**
7809     * This color constant "CW Drab Sapphire" has RGB code {@code 0x323A8A}, red 0.19607843, green 0.22745098, blue 0.5411765, alpha 1, hue 0.65151525, saturation 0.6376812, and value 0.5411765.
7810     * It can be represented as a packed float with the constant {@code -0x1.147464p126F}.
7811     * <pre>
7812     * <font style='background-color: #323A8A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #323A8A; color: #000000'>&nbsp;@&nbsp;</font>
7813     * <font style='background-color: #323A8A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #323A8A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #323A8A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #323A8A'>&nbsp;@&nbsp;</font><font style='background-color: #323A8A; color: #888888'>&nbsp;@&nbsp;</font>
7814     * <font style='background-color: #323A8A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #323A8A; color: #ffffff'>&nbsp;@&nbsp;</font>
7815     * </pre>
7816     */
7817    public static final SColor CW_DRAB_SAPPHIRE = new SColor(0x323A8A, "CW Drab Sapphire");
7818
7819    /**
7820     * This color constant "CW Rich Sapphire" has RGB code {@code 0x1424BA}, red 0.078431375, green 0.14117648, blue 0.7294118, alpha 1, hue 0.65060246, saturation 0.8924731, and value 0.7294118.
7821     * It can be represented as a packed float with the constant {@code -0x1.744828p126F}.
7822     * <pre>
7823     * <font style='background-color: #1424BA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1424BA; color: #000000'>&nbsp;@&nbsp;</font>
7824     * <font style='background-color: #1424BA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1424BA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1424BA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1424BA'>&nbsp;@&nbsp;</font><font style='background-color: #1424BA; color: #888888'>&nbsp;@&nbsp;</font>
7825     * <font style='background-color: #1424BA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1424BA; color: #ffffff'>&nbsp;@&nbsp;</font>
7826     * </pre>
7827     */
7828    public static final SColor CW_RICH_SAPPHIRE = new SColor(0x1424BA, "CW Rich Sapphire");
7829
7830    /**
7831     * This color constant "CW Indigo" has RGB code {@code 0x5313DF}, red 0.3254902, green 0.07450981, blue 0.8745098, alpha 1, hue 0.71895444, saturation 0.9147982, and value 0.8745098.
7832     * It can be represented as a packed float with the constant {@code -0x1.be26a6p126F}.
7833     * <pre>
7834     * <font style='background-color: #5313DF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5313DF; color: #000000'>&nbsp;@&nbsp;</font>
7835     * <font style='background-color: #5313DF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5313DF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5313DF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5313DF'>&nbsp;@&nbsp;</font><font style='background-color: #5313DF; color: #888888'>&nbsp;@&nbsp;</font>
7836     * <font style='background-color: #5313DF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5313DF; color: #ffffff'>&nbsp;@&nbsp;</font>
7837     * </pre>
7838     */
7839    public static final SColor CW_INDIGO = new SColor(0x5313DF, "CW Indigo");
7840
7841    /**
7842     * This color constant "CW Faded Indigo" has RGB code {@code 0x63489F}, red 0.3882353, green 0.28235295, blue 0.62352943, alpha 1, hue 0.71839094, saturation 0.5471698, and value 0.62352943.
7843     * It can be represented as a packed float with the constant {@code -0x1.3e90c6p126F}.
7844     * <pre>
7845     * <font style='background-color: #63489F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #63489F; color: #000000'>&nbsp;@&nbsp;</font>
7846     * <font style='background-color: #63489F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #63489F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #63489F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #63489F'>&nbsp;@&nbsp;</font><font style='background-color: #63489F; color: #888888'>&nbsp;@&nbsp;</font>
7847     * <font style='background-color: #63489F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #63489F; color: #ffffff'>&nbsp;@&nbsp;</font>
7848     * </pre>
7849     */
7850    public static final SColor CW_FADED_INDIGO = new SColor(0x63489F, "CW Faded Indigo");
7851
7852    /**
7853     * This color constant "CW Flush Indigo" has RGB code {@code 0x4909D4}, red 0.28627452, green 0.03529412, blue 0.83137256, alpha 1, hue 0.71921206, saturation 0.9575472, and value 0.83137256.
7854     * It can be represented as a packed float with the constant {@code -0x1.a81292p126F}.
7855     * <pre>
7856     * <font style='background-color: #4909D4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4909D4; color: #000000'>&nbsp;@&nbsp;</font>
7857     * <font style='background-color: #4909D4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4909D4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4909D4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4909D4'>&nbsp;@&nbsp;</font><font style='background-color: #4909D4; color: #888888'>&nbsp;@&nbsp;</font>
7858     * <font style='background-color: #4909D4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4909D4; color: #ffffff'>&nbsp;@&nbsp;</font>
7859     * </pre>
7860     */
7861    public static final SColor CW_FLUSH_INDIGO = new SColor(0x4909D4, "CW Flush Indigo");
7862
7863    /**
7864     * This color constant "CW Light Indigo" has RGB code {@code 0x9774E2}, red 0.5921569, green 0.45490196, blue 0.8862745, alpha 1, hue 0.7196971, saturation 0.48672566, and value 0.8862745.
7865     * It can be represented as a packed float with the constant {@code -0x1.c4e92ep126F}.
7866     * <pre>
7867     * <font style='background-color: #9774E2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9774E2; color: #000000'>&nbsp;@&nbsp;</font>
7868     * <font style='background-color: #9774E2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9774E2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9774E2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9774E2'>&nbsp;@&nbsp;</font><font style='background-color: #9774E2; color: #888888'>&nbsp;@&nbsp;</font>
7869     * <font style='background-color: #9774E2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9774E2; color: #ffffff'>&nbsp;@&nbsp;</font>
7870     * </pre>
7871     */
7872    public static final SColor CW_LIGHT_INDIGO = new SColor(0x9774E2, "CW Light Indigo");
7873
7874    /**
7875     * This color constant "CW Pale Indigo" has RGB code {@code 0xAF9BDB}, red 0.6862745, green 0.60784316, blue 0.85882354, alpha 1, hue 0.71875024, saturation 0.29223743, and value 0.85882354.
7876     * It can be represented as a packed float with the constant {@code -0x1.b7375ep126F}.
7877     * <pre>
7878     * <font style='background-color: #AF9BDB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AF9BDB; color: #000000'>&nbsp;@&nbsp;</font>
7879     * <font style='background-color: #AF9BDB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AF9BDB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AF9BDB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AF9BDB'>&nbsp;@&nbsp;</font><font style='background-color: #AF9BDB; color: #888888'>&nbsp;@&nbsp;</font>
7880     * <font style='background-color: #AF9BDB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AF9BDB; color: #ffffff'>&nbsp;@&nbsp;</font>
7881     * </pre>
7882     */
7883    public static final SColor CW_PALE_INDIGO = new SColor(0xAF9BDB, "CW Pale Indigo");
7884
7885    /**
7886     * This color constant "CW Bright Indigo" has RGB code {@code 0x6C33EA}, red 0.42352942, green 0.2, blue 0.91764706, alpha 1, hue 0.7185794, saturation 0.7820513, and value 0.91764706.
7887     * It can be represented as a packed float with the constant {@code -0x1.d466d8p126F}.
7888     * <pre>
7889     * <font style='background-color: #6C33EA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6C33EA; color: #000000'>&nbsp;@&nbsp;</font>
7890     * <font style='background-color: #6C33EA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6C33EA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6C33EA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6C33EA'>&nbsp;@&nbsp;</font><font style='background-color: #6C33EA; color: #888888'>&nbsp;@&nbsp;</font>
7891     * <font style='background-color: #6C33EA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6C33EA; color: #ffffff'>&nbsp;@&nbsp;</font>
7892     * </pre>
7893     */
7894    public static final SColor CW_BRIGHT_INDIGO = new SColor(0x6C33EA, "CW Bright Indigo");
7895
7896    /**
7897     * This color constant "CW Dark Indigo" has RGB code {@code 0x360997}, red 0.21176471, green 0.03529412, blue 0.5921569, alpha 1, hue 0.71948373, saturation 0.9403974, and value 0.5921569.
7898     * It can be represented as a packed float with the constant {@code -0x1.2e126cp126F}.
7899     * <pre>
7900     * <font style='background-color: #360997;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #360997; color: #000000'>&nbsp;@&nbsp;</font>
7901     * <font style='background-color: #360997;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #360997'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #360997'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #360997'>&nbsp;@&nbsp;</font><font style='background-color: #360997; color: #888888'>&nbsp;@&nbsp;</font>
7902     * <font style='background-color: #360997;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #360997; color: #ffffff'>&nbsp;@&nbsp;</font>
7903     * </pre>
7904     */
7905    public static final SColor CW_DARK_INDIGO = new SColor(0x360997, "CW Dark Indigo");
7906
7907    /**
7908     * This color constant "CW Drab Indigo" has RGB code {@code 0x3B1D7E}, red 0.23137255, green 0.11372549, blue 0.49411765, alpha 1, hue 0.7182132, saturation 0.7698413, and value 0.49411765.
7909     * It can be represented as a packed float with the constant {@code -0x1.fc3a76p125F}.
7910     * <pre>
7911     * <font style='background-color: #3B1D7E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B1D7E; color: #000000'>&nbsp;@&nbsp;</font>
7912     * <font style='background-color: #3B1D7E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3B1D7E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3B1D7E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3B1D7E'>&nbsp;@&nbsp;</font><font style='background-color: #3B1D7E; color: #888888'>&nbsp;@&nbsp;</font>
7913     * <font style='background-color: #3B1D7E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B1D7E; color: #ffffff'>&nbsp;@&nbsp;</font>
7914     * </pre>
7915     */
7916    public static final SColor CW_DRAB_INDIGO = new SColor(0x3B1D7E, "CW Drab Indigo");
7917
7918    /**
7919     * This color constant "CW Rich Indigo" has RGB code {@code 0x3D07B3}, red 0.23921569, green 0.02745098, blue 0.7019608, alpha 1, hue 0.7189925, saturation 0.96089387, and value 0.7019608.
7920     * It can be represented as a packed float with the constant {@code -0x1.660e7ap126F}.
7921     * <pre>
7922     * <font style='background-color: #3D07B3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D07B3; color: #000000'>&nbsp;@&nbsp;</font>
7923     * <font style='background-color: #3D07B3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3D07B3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3D07B3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3D07B3'>&nbsp;@&nbsp;</font><font style='background-color: #3D07B3; color: #888888'>&nbsp;@&nbsp;</font>
7924     * <font style='background-color: #3D07B3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3D07B3; color: #ffffff'>&nbsp;@&nbsp;</font>
7925     * </pre>
7926     */
7927    public static final SColor CW_RICH_INDIGO = new SColor(0x3D07B3, "CW Rich Indigo");
7928
7929    /**
7930     * This color constant "CW Violet" has RGB code {@code 0x902BE7}, red 0.5647059, green 0.16862746, blue 0.90588236, alpha 1, hue 0.7562058, saturation 0.81385285, and value 0.90588236.
7931     * It can be represented as a packed float with the constant {@code -0x1.ce572p126F}.
7932     * <pre>
7933     * <font style='background-color: #902BE7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #902BE7; color: #000000'>&nbsp;@&nbsp;</font>
7934     * <font style='background-color: #902BE7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #902BE7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #902BE7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #902BE7'>&nbsp;@&nbsp;</font><font style='background-color: #902BE7; color: #888888'>&nbsp;@&nbsp;</font>
7935     * <font style='background-color: #902BE7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #902BE7; color: #ffffff'>&nbsp;@&nbsp;</font>
7936     * </pre>
7937     */
7938    public static final SColor CW_VIOLET = new SColor(0x902BE7, "CW Violet");
7939
7940    /**
7941     * This color constant "CW Faded Violet" has RGB code {@code 0x8C61B1}, red 0.54901963, green 0.38039216, blue 0.69411767, alpha 1, hue 0.75625014, saturation 0.4519774, and value 0.69411767.
7942     * It can be represented as a packed float with the constant {@code -0x1.62c318p126F}.
7943     * <pre>
7944     * <font style='background-color: #8C61B1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C61B1; color: #000000'>&nbsp;@&nbsp;</font>
7945     * <font style='background-color: #8C61B1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8C61B1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8C61B1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8C61B1'>&nbsp;@&nbsp;</font><font style='background-color: #8C61B1; color: #888888'>&nbsp;@&nbsp;</font>
7946     * <font style='background-color: #8C61B1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C61B1; color: #ffffff'>&nbsp;@&nbsp;</font>
7947     * </pre>
7948     */
7949    public static final SColor CW_FADED_VIOLET = new SColor(0x8C61B1, "CW Faded Violet");
7950
7951    /**
7952     * This color constant "CW Flush Violet" has RGB code {@code 0x7F14DC}, red 0.49803922, green 0.078431375, blue 0.8627451, alpha 1, hue 0.7558335, saturation 0.90909094, and value 0.8627451.
7953     * It can be represented as a packed float with the constant {@code -0x1.b828fep126F}.
7954     * <pre>
7955     * <font style='background-color: #7F14DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F14DC; color: #000000'>&nbsp;@&nbsp;</font>
7956     * <font style='background-color: #7F14DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7F14DC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7F14DC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7F14DC'>&nbsp;@&nbsp;</font><font style='background-color: #7F14DC; color: #888888'>&nbsp;@&nbsp;</font>
7957     * <font style='background-color: #7F14DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F14DC; color: #ffffff'>&nbsp;@&nbsp;</font>
7958     * </pre>
7959     */
7960    public static final SColor CW_FLUSH_VIOLET = new SColor(0x7F14DC, "CW Flush Violet");
7961
7962    /**
7963     * This color constant "CW Light Violet" has RGB code {@code 0xBA83E9}, red 0.7294118, green 0.5137255, blue 0.9137255, alpha 1, hue 0.7565361, saturation 0.43776822, and value 0.9137255.
7964     * It can be represented as a packed float with the constant {@code -0x1.d30774p126F}.
7965     * <pre>
7966     * <font style='background-color: #BA83E9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BA83E9; color: #000000'>&nbsp;@&nbsp;</font>
7967     * <font style='background-color: #BA83E9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BA83E9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BA83E9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BA83E9'>&nbsp;@&nbsp;</font><font style='background-color: #BA83E9; color: #888888'>&nbsp;@&nbsp;</font>
7968     * <font style='background-color: #BA83E9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BA83E9; color: #ffffff'>&nbsp;@&nbsp;</font>
7969     * </pre>
7970     */
7971    public static final SColor CW_LIGHT_VIOLET = new SColor(0xBA83E9, "CW Light Violet");
7972
7973    /**
7974     * This color constant "CW Pale Violet" has RGB code {@code 0xC6A7E2}, red 0.7764706, green 0.654902, blue 0.8862745, alpha 1, hue 0.7542374, saturation 0.26106194, and value 0.8862745.
7975     * It can be represented as a packed float with the constant {@code -0x1.c54f8cp126F}.
7976     * <pre>
7977     * <font style='background-color: #C6A7E2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C6A7E2; color: #000000'>&nbsp;@&nbsp;</font>
7978     * <font style='background-color: #C6A7E2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C6A7E2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C6A7E2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C6A7E2'>&nbsp;@&nbsp;</font><font style='background-color: #C6A7E2; color: #888888'>&nbsp;@&nbsp;</font>
7979     * <font style='background-color: #C6A7E2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C6A7E2; color: #ffffff'>&nbsp;@&nbsp;</font>
7980     * </pre>
7981     */
7982    public static final SColor CW_PALE_VIOLET = new SColor(0xC6A7E2, "CW Pale Violet");
7983
7984    /**
7985     * This color constant "CW Bright Violet" has RGB code {@code 0x9C3AF0}, red 0.6117647, green 0.22745098, blue 0.9411765, alpha 1, hue 0.75641036, saturation 0.7583333, and value 0.9411765.
7986     * It can be represented as a packed float with the constant {@code -0x1.e07538p126F}.
7987     * <pre>
7988     * <font style='background-color: #9C3AF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9C3AF0; color: #000000'>&nbsp;@&nbsp;</font>
7989     * <font style='background-color: #9C3AF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9C3AF0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9C3AF0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9C3AF0'>&nbsp;@&nbsp;</font><font style='background-color: #9C3AF0; color: #888888'>&nbsp;@&nbsp;</font>
7990     * <font style='background-color: #9C3AF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9C3AF0; color: #ffffff'>&nbsp;@&nbsp;</font>
7991     * </pre>
7992     */
7993    public static final SColor CW_BRIGHT_VIOLET = new SColor(0x9C3AF0, "CW Bright Violet");
7994
7995    /**
7996     * This color constant "CW Dark Violet" has RGB code {@code 0x5E179C}, red 0.36862746, green 0.09019608, blue 0.6117647, alpha 1, hue 0.7556393, saturation 0.8525641, and value 0.6117647.
7997     * It can be represented as a packed float with the constant {@code -0x1.382ebcp126F}.
7998     * <pre>
7999     * <font style='background-color: #5E179C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5E179C; color: #000000'>&nbsp;@&nbsp;</font>
8000     * <font style='background-color: #5E179C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5E179C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5E179C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5E179C'>&nbsp;@&nbsp;</font><font style='background-color: #5E179C; color: #888888'>&nbsp;@&nbsp;</font>
8001     * <font style='background-color: #5E179C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5E179C; color: #ffffff'>&nbsp;@&nbsp;</font>
8002     * </pre>
8003     */
8004    public static final SColor CW_DARK_VIOLET = new SColor(0x5E179C, "CW Dark Violet");
8005
8006    /**
8007     * This color constant "CW Drab Violet" has RGB code {@code 0x63328D}, red 0.3882353, green 0.19607843, blue 0.5529412, alpha 1, hue 0.75641036, saturation 0.6453901, and value 0.5529412.
8008     * It can be represented as a packed float with the constant {@code -0x1.1a64c6p126F}.
8009     * <pre>
8010     * <font style='background-color: #63328D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #63328D; color: #000000'>&nbsp;@&nbsp;</font>
8011     * <font style='background-color: #63328D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #63328D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #63328D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #63328D'>&nbsp;@&nbsp;</font><font style='background-color: #63328D; color: #888888'>&nbsp;@&nbsp;</font>
8012     * <font style='background-color: #63328D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #63328D; color: #ffffff'>&nbsp;@&nbsp;</font>
8013     * </pre>
8014     */
8015    public static final SColor CW_DRAB_VIOLET = new SColor(0x63328D, "CW Drab Violet");
8016
8017    /**
8018     * This color constant "CW Rich Violet" has RGB code {@code 0x6B11B9}, red 0.41960785, green 0.06666667, blue 0.7254902, alpha 1, hue 0.7559526, saturation 0.9081081, and value 0.7254902.
8019     * It can be represented as a packed float with the constant {@code -0x1.7222d6p126F}.
8020     * <pre>
8021     * <font style='background-color: #6B11B9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6B11B9; color: #000000'>&nbsp;@&nbsp;</font>
8022     * <font style='background-color: #6B11B9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6B11B9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6B11B9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6B11B9'>&nbsp;@&nbsp;</font><font style='background-color: #6B11B9; color: #888888'>&nbsp;@&nbsp;</font>
8023     * <font style='background-color: #6B11B9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6B11B9; color: #ffffff'>&nbsp;@&nbsp;</font>
8024     * </pre>
8025     */
8026    public static final SColor CW_RICH_VIOLET = new SColor(0x6B11B9, "CW Rich Violet");
8027
8028    /**
8029     * This color constant "CW Purple" has RGB code {@code 0xC934E9}, red 0.7882353, green 0.20392157, blue 0.9137255, alpha 1, hue 0.8038676, saturation 0.77682406, and value 0.9137255.
8030     * It can be represented as a packed float with the constant {@code -0x1.d26992p126F}.
8031     * <pre>
8032     * <font style='background-color: #C934E9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C934E9; color: #000000'>&nbsp;@&nbsp;</font>
8033     * <font style='background-color: #C934E9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C934E9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C934E9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C934E9'>&nbsp;@&nbsp;</font><font style='background-color: #C934E9; color: #888888'>&nbsp;@&nbsp;</font>
8034     * <font style='background-color: #C934E9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C934E9; color: #ffffff'>&nbsp;@&nbsp;</font>
8035     * </pre>
8036     */
8037    public static final SColor CW_PURPLE = new SColor(0xC934E9, "CW Purple");
8038
8039    /**
8040     * This color constant "CW Faded Purple" has RGB code {@code 0xAE6EBC}, red 0.68235296, green 0.43137255, blue 0.7372549, alpha 1, hue 0.803419, saturation 0.41489363, and value 0.7372549.
8041     * It can be represented as a packed float with the constant {@code -0x1.78dd5cp126F}.
8042     * <pre>
8043     * <font style='background-color: #AE6EBC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AE6EBC; color: #000000'>&nbsp;@&nbsp;</font>
8044     * <font style='background-color: #AE6EBC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AE6EBC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AE6EBC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AE6EBC'>&nbsp;@&nbsp;</font><font style='background-color: #AE6EBC; color: #888888'>&nbsp;@&nbsp;</font>
8045     * <font style='background-color: #AE6EBC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AE6EBC; color: #ffffff'>&nbsp;@&nbsp;</font>
8046     * </pre>
8047     */
8048    public static final SColor CW_FADED_PURPLE = new SColor(0xAE6EBC, "CW Faded Purple");
8049
8050    /**
8051     * This color constant "CW Flush Purple" has RGB code {@code 0xBB18DE}, red 0.73333335, green 0.09411765, blue 0.87058824, alpha 1, hue 0.8038722, saturation 0.8918919, and value 0.87058824.
8052     * It can be represented as a packed float with the constant {@code -0x1.bc3176p126F}.
8053     * <pre>
8054     * <font style='background-color: #BB18DE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BB18DE; color: #000000'>&nbsp;@&nbsp;</font>
8055     * <font style='background-color: #BB18DE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BB18DE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BB18DE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BB18DE'>&nbsp;@&nbsp;</font><font style='background-color: #BB18DE; color: #888888'>&nbsp;@&nbsp;</font>
8056     * <font style='background-color: #BB18DE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BB18DE; color: #ffffff'>&nbsp;@&nbsp;</font>
8057     * </pre>
8058     */
8059    public static final SColor CW_FLUSH_PURPLE = new SColor(0xBB18DE, "CW Flush Purple");
8060
8061    /**
8062     * This color constant "CW Light Purple" has RGB code {@code 0xDA89EC}, red 0.85490197, green 0.5372549, blue 0.9254902, alpha 1, hue 0.8030305, saturation 0.4194915, and value 0.9254902.
8063     * It can be represented as a packed float with the constant {@code -0x1.d913b4p126F}.
8064     * <pre>
8065     * <font style='background-color: #DA89EC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA89EC; color: #000000'>&nbsp;@&nbsp;</font>
8066     * <font style='background-color: #DA89EC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DA89EC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DA89EC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DA89EC'>&nbsp;@&nbsp;</font><font style='background-color: #DA89EC; color: #888888'>&nbsp;@&nbsp;</font>
8067     * <font style='background-color: #DA89EC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA89EC; color: #ffffff'>&nbsp;@&nbsp;</font>
8068     * </pre>
8069     */
8070    public static final SColor CW_LIGHT_PURPLE = new SColor(0xDA89EC, "CW Light Purple");
8071
8072    /**
8073     * This color constant "CW Pale Purple" has RGB code {@code 0xDCADE7}, red 0.8627451, green 0.6784314, blue 0.90588236, alpha 1, hue 0.8017243, saturation 0.25108224, and value 0.90588236.
8074     * It can be represented as a packed float with the constant {@code -0x1.cf5bb8p126F}.
8075     * <pre>
8076     * <font style='background-color: #DCADE7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DCADE7; color: #000000'>&nbsp;@&nbsp;</font>
8077     * <font style='background-color: #DCADE7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DCADE7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DCADE7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DCADE7'>&nbsp;@&nbsp;</font><font style='background-color: #DCADE7; color: #888888'>&nbsp;@&nbsp;</font>
8078     * <font style='background-color: #DCADE7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DCADE7; color: #ffffff'>&nbsp;@&nbsp;</font>
8079     * </pre>
8080     */
8081    public static final SColor CW_PALE_PURPLE = new SColor(0xDCADE7, "CW Pale Purple");
8082
8083    /**
8084     * This color constant "CW Bright Purple" has RGB code {@code 0xD13DF1}, red 0.81960785, green 0.23921569, blue 0.94509804, alpha 1, hue 0.8037038, saturation 0.746888, and value 0.94509804.
8085     * It can be represented as a packed float with the constant {@code -0x1.e27ba2p126F}.
8086     * <pre>
8087     * <font style='background-color: #D13DF1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D13DF1; color: #000000'>&nbsp;@&nbsp;</font>
8088     * <font style='background-color: #D13DF1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D13DF1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D13DF1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D13DF1'>&nbsp;@&nbsp;</font><font style='background-color: #D13DF1; color: #888888'>&nbsp;@&nbsp;</font>
8089     * <font style='background-color: #D13DF1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D13DF1; color: #ffffff'>&nbsp;@&nbsp;</font>
8090     * </pre>
8091     */
8092    public static final SColor CW_BRIGHT_PURPLE = new SColor(0xD13DF1, "CW Bright Purple");
8093
8094    /**
8095     * This color constant "CW Dark Purple" has RGB code {@code 0x871C9D}, red 0.5294118, green 0.10980392, blue 0.6156863, alpha 1, hue 0.8049097, saturation 0.82165605, and value 0.6156863.
8096     * It can be represented as a packed float with the constant {@code -0x1.3a390ep126F}.
8097     * <pre>
8098     * <font style='background-color: #871C9D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #871C9D; color: #000000'>&nbsp;@&nbsp;</font>
8099     * <font style='background-color: #871C9D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #871C9D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #871C9D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #871C9D'>&nbsp;@&nbsp;</font><font style='background-color: #871C9D; color: #888888'>&nbsp;@&nbsp;</font>
8100     * <font style='background-color: #871C9D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #871C9D; color: #ffffff'>&nbsp;@&nbsp;</font>
8101     * </pre>
8102     */
8103    public static final SColor CW_DARK_PURPLE = new SColor(0x871C9D, "CW Dark Purple");
8104
8105    /**
8106     * This color constant "CW Drab Purple" has RGB code {@code 0x863F95}, red 0.5254902, green 0.24705882, blue 0.58431375, alpha 1, hue 0.8042637, saturation 0.5771813, and value 0.58431375.
8107     * It can be represented as a packed float with the constant {@code -0x1.2a7f0cp126F}.
8108     * <pre>
8109     * <font style='background-color: #863F95;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #863F95; color: #000000'>&nbsp;@&nbsp;</font>
8110     * <font style='background-color: #863F95;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #863F95'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #863F95'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #863F95'>&nbsp;@&nbsp;</font><font style='background-color: #863F95; color: #888888'>&nbsp;@&nbsp;</font>
8111     * <font style='background-color: #863F95;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #863F95; color: #ffffff'>&nbsp;@&nbsp;</font>
8112     * </pre>
8113     */
8114    public static final SColor CW_DRAB_PURPLE = new SColor(0x863F95, "CW Drab Purple");
8115
8116    /**
8117     * This color constant "CW Rich Purple" has RGB code {@code 0x9E15BA}, red 0.61960787, green 0.08235294, blue 0.7294118, alpha 1, hue 0.8050506, saturation 0.88709676, and value 0.7294118.
8118     * It can be represented as a packed float with the constant {@code -0x1.742b3cp126F}.
8119     * <pre>
8120     * <font style='background-color: #9E15BA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9E15BA; color: #000000'>&nbsp;@&nbsp;</font>
8121     * <font style='background-color: #9E15BA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9E15BA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9E15BA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9E15BA'>&nbsp;@&nbsp;</font><font style='background-color: #9E15BA; color: #888888'>&nbsp;@&nbsp;</font>
8122     * <font style='background-color: #9E15BA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9E15BA; color: #ffffff'>&nbsp;@&nbsp;</font>
8123     * </pre>
8124     */
8125    public static final SColor CW_RICH_PURPLE = new SColor(0x9E15BA, "CW Rich Purple");
8126
8127    /**
8128     * This color constant "CW Magenta" has RGB code {@code 0xE71FBC}, red 0.90588236, green 0.12156863, blue 0.7372549, alpha 1, hue 0.8691667, saturation 0.86580086, and value 0.90588236.
8129     * It can be represented as a packed float with the constant {@code -0x1.783fcep126F}.
8130     * <pre>
8131     * <font style='background-color: #E71FBC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E71FBC; color: #000000'>&nbsp;@&nbsp;</font>
8132     * <font style='background-color: #E71FBC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E71FBC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E71FBC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E71FBC'>&nbsp;@&nbsp;</font><font style='background-color: #E71FBC; color: #888888'>&nbsp;@&nbsp;</font>
8133     * <font style='background-color: #E71FBC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E71FBC; color: #ffffff'>&nbsp;@&nbsp;</font>
8134     * </pre>
8135     */
8136    public static final SColor CW_MAGENTA = new SColor(0xE71FBC, "CW Magenta");
8137
8138    /**
8139     * This color constant "CW Faded Magenta" has RGB code {@code 0xB761A4}, red 0.7176471, green 0.38039216, blue 0.6431373, alpha 1, hue 0.8701551, saturation 0.46994537, and value 0.7176471.
8140     * It can be represented as a packed float with the constant {@code -0x1.48c36ep126F}.
8141     * <pre>
8142     * <font style='background-color: #B761A4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B761A4; color: #000000'>&nbsp;@&nbsp;</font>
8143     * <font style='background-color: #B761A4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B761A4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B761A4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B761A4'>&nbsp;@&nbsp;</font><font style='background-color: #B761A4; color: #888888'>&nbsp;@&nbsp;</font>
8144     * <font style='background-color: #B761A4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B761A4; color: #ffffff'>&nbsp;@&nbsp;</font>
8145     * </pre>
8146     */
8147    public static final SColor CW_FADED_MAGENTA = new SColor(0xB761A4, "CW Faded Magenta");
8148
8149    /**
8150     * This color constant "CW Flush Magenta" has RGB code {@code 0xDC0EB0}, red 0.8627451, green 0.05490196, blue 0.6901961, alpha 1, hue 0.86893207, saturation 0.93636364, and value 0.8627451.
8151     * It can be represented as a packed float with the constant {@code -0x1.601db8p126F}.
8152     * <pre>
8153     * <font style='background-color: #DC0EB0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DC0EB0; color: #000000'>&nbsp;@&nbsp;</font>
8154     * <font style='background-color: #DC0EB0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DC0EB0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DC0EB0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DC0EB0'>&nbsp;@&nbsp;</font><font style='background-color: #DC0EB0; color: #888888'>&nbsp;@&nbsp;</font>
8155     * <font style='background-color: #DC0EB0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DC0EB0; color: #ffffff'>&nbsp;@&nbsp;</font>
8156     * </pre>
8157     */
8158    public static final SColor CW_FLUSH_MAGENTA = new SColor(0xDC0EB0, "CW Flush Magenta");
8159
8160    /**
8161     * This color constant "CW Light Magenta" has RGB code {@code 0xEA7ED2}, red 0.91764706, green 0.49411765, blue 0.8235294, alpha 1, hue 0.8703703, saturation 0.46153846, and value 0.91764706.
8162     * It can be represented as a packed float with the constant {@code -0x1.a4fdd4p126F}.
8163     * <pre>
8164     * <font style='background-color: #EA7ED2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EA7ED2; color: #000000'>&nbsp;@&nbsp;</font>
8165     * <font style='background-color: #EA7ED2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EA7ED2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EA7ED2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EA7ED2'>&nbsp;@&nbsp;</font><font style='background-color: #EA7ED2; color: #888888'>&nbsp;@&nbsp;</font>
8166     * <font style='background-color: #EA7ED2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EA7ED2; color: #ffffff'>&nbsp;@&nbsp;</font>
8167     * </pre>
8168     */
8169    public static final SColor CW_LIGHT_MAGENTA = new SColor(0xEA7ED2, "CW Light Magenta");
8170
8171    /**
8172     * This color constant "CW Pale Magenta" has RGB code {@code 0xE4A5D6}, red 0.89411765, green 0.64705884, blue 0.8392157, alpha 1, hue 0.8703703, saturation 0.27631578, and value 0.89411765.
8173     * It can be represented as a packed float with the constant {@code -0x1.ad4bc8p126F}.
8174     * <pre>
8175     * <font style='background-color: #E4A5D6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E4A5D6; color: #000000'>&nbsp;@&nbsp;</font>
8176     * <font style='background-color: #E4A5D6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E4A5D6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E4A5D6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E4A5D6'>&nbsp;@&nbsp;</font><font style='background-color: #E4A5D6; color: #888888'>&nbsp;@&nbsp;</font>
8177     * <font style='background-color: #E4A5D6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E4A5D6; color: #ffffff'>&nbsp;@&nbsp;</font>
8178     * </pre>
8179     */
8180    public static final SColor CW_PALE_MAGENTA = new SColor(0xE4A5D6, "CW Pale Magenta");
8181
8182    /**
8183     * This color constant "CW Bright Magenta" has RGB code {@code 0xF036C9}, red 0.9411765, green 0.21176471, blue 0.7882353, alpha 1, hue 0.8682796, saturation 0.77500004, and value 0.9411765.
8184     * It can be represented as a packed float with the constant {@code -0x1.926dep126F}.
8185     * <pre>
8186     * <font style='background-color: #F036C9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F036C9; color: #000000'>&nbsp;@&nbsp;</font>
8187     * <font style='background-color: #F036C9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F036C9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F036C9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F036C9'>&nbsp;@&nbsp;</font><font style='background-color: #F036C9; color: #888888'>&nbsp;@&nbsp;</font>
8188     * <font style='background-color: #F036C9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F036C9; color: #ffffff'>&nbsp;@&nbsp;</font>
8189     * </pre>
8190     */
8191    public static final SColor CW_BRIGHT_MAGENTA = new SColor(0xF036C9, "CW Bright Magenta");
8192
8193    /**
8194     * This color constant "CW Dark Magenta" has RGB code {@code 0x9C117E}, red 0.6117647, green 0.06666667, blue 0.49411765, alpha 1, hue 0.86930454, saturation 0.89102566, and value 0.6117647.
8195     * It can be represented as a packed float with the constant {@code -0x1.fc2338p125F}.
8196     * <pre>
8197     * <font style='background-color: #9C117E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9C117E; color: #000000'>&nbsp;@&nbsp;</font>
8198     * <font style='background-color: #9C117E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9C117E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9C117E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9C117E'>&nbsp;@&nbsp;</font><font style='background-color: #9C117E; color: #888888'>&nbsp;@&nbsp;</font>
8199     * <font style='background-color: #9C117E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9C117E; color: #ffffff'>&nbsp;@&nbsp;</font>
8200     * </pre>
8201     */
8202    public static final SColor CW_DARK_MAGENTA = new SColor(0x9C117E, "CW Dark Magenta");
8203
8204    /**
8205     * This color constant "CW Drab Magenta" has RGB code {@code 0x91307C}, red 0.5686275, green 0.1882353, blue 0.4862745, alpha 1, hue 0.8694159, saturation 0.6689656, and value 0.5686275.
8206     * It can be represented as a packed float with the constant {@code -0x1.f86122p125F}.
8207     * <pre>
8208     * <font style='background-color: #91307C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #91307C; color: #000000'>&nbsp;@&nbsp;</font>
8209     * <font style='background-color: #91307C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #91307C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #91307C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #91307C'>&nbsp;@&nbsp;</font><font style='background-color: #91307C; color: #888888'>&nbsp;@&nbsp;</font>
8210     * <font style='background-color: #91307C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #91307C; color: #ffffff'>&nbsp;@&nbsp;</font>
8211     * </pre>
8212     */
8213    public static final SColor CW_DRAB_MAGENTA = new SColor(0x91307C, "CW Drab Magenta");
8214
8215    /**
8216     * This color constant "CW Rich Magenta" has RGB code {@code 0xB90D94}, red 0.7254902, green 0.050980393, blue 0.5803922, alpha 1, hue 0.86918604, saturation 0.92972976, and value 0.7254902.
8217     * It can be represented as a packed float with the constant {@code -0x1.281b72p126F}.
8218     * <pre>
8219     * <font style='background-color: #B90D94;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B90D94; color: #000000'>&nbsp;@&nbsp;</font>
8220     * <font style='background-color: #B90D94;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B90D94'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B90D94'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B90D94'>&nbsp;@&nbsp;</font><font style='background-color: #B90D94; color: #888888'>&nbsp;@&nbsp;</font>
8221     * <font style='background-color: #B90D94;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B90D94; color: #ffffff'>&nbsp;@&nbsp;</font>
8222     * </pre>
8223     */
8224    public static final SColor CW_RICH_MAGENTA = new SColor(0xB90D94, "CW Rich Magenta");
8225
8226    /**
8227     * This color constant "CW Rose" has RGB code {@code 0xE41A71}, red 0.89411765, green 0.101960786, blue 0.44313726, alpha 1, hue 0.9282177, saturation 0.88596493, and value 0.89411765.
8228     * It can be represented as a packed float with the constant {@code -0x1.e235c8p125F}.
8229     * <pre>
8230     * <font style='background-color: #E41A71;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E41A71; color: #000000'>&nbsp;@&nbsp;</font>
8231     * <font style='background-color: #E41A71;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E41A71'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E41A71'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E41A71'>&nbsp;@&nbsp;</font><font style='background-color: #E41A71; color: #888888'>&nbsp;@&nbsp;</font>
8232     * <font style='background-color: #E41A71;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E41A71; color: #ffffff'>&nbsp;@&nbsp;</font>
8233     * </pre>
8234     */
8235    public static final SColor CW_ROSE = new SColor(0xE41A71, "CW Rose");
8236
8237    /**
8238     * This color constant "CW Faded Rose" has RGB code {@code 0xB05A7F}, red 0.6901961, green 0.3529412, blue 0.49803922, alpha 1, hue 0.92829454, saturation 0.48863637, and value 0.6901961.
8239     * It can be represented as a packed float with the constant {@code -0x1.feb56p125F}.
8240     * <pre>
8241     * <font style='background-color: #B05A7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B05A7F; color: #000000'>&nbsp;@&nbsp;</font>
8242     * <font style='background-color: #B05A7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B05A7F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B05A7F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B05A7F'>&nbsp;@&nbsp;</font><font style='background-color: #B05A7F; color: #888888'>&nbsp;@&nbsp;</font>
8243     * <font style='background-color: #B05A7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B05A7F; color: #ffffff'>&nbsp;@&nbsp;</font>
8244     * </pre>
8245     */
8246    public static final SColor CW_FADED_ROSE = new SColor(0xB05A7F, "CW Faded Rose");
8247
8248    /**
8249     * This color constant "CW Flush Rose" has RGB code {@code 0xD90D64}, red 0.8509804, green 0.050980393, blue 0.39215687, alpha 1, hue 0.9289215, saturation 0.94009215, and value 0.8509804.
8250     * It can be represented as a packed float with the constant {@code -0x1.c81bb2p125F}.
8251     * <pre>
8252     * <font style='background-color: #D90D64;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D90D64; color: #000000'>&nbsp;@&nbsp;</font>
8253     * <font style='background-color: #D90D64;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D90D64'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D90D64'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D90D64'>&nbsp;@&nbsp;</font><font style='background-color: #D90D64; color: #888888'>&nbsp;@&nbsp;</font>
8254     * <font style='background-color: #D90D64;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D90D64; color: #ffffff'>&nbsp;@&nbsp;</font>
8255     * </pre>
8256     */
8257    public static final SColor CW_FLUSH_ROSE = new SColor(0xD90D64, "CW Flush Rose");
8258
8259    /**
8260     * This color constant "CW Light Rose" has RGB code {@code 0xE87AA9}, red 0.9098039, green 0.47843137, blue 0.6627451, alpha 1, hue 0.9287879, saturation 0.47413793, and value 0.9098039.
8261     * It can be represented as a packed float with the constant {@code -0x1.52f5dp126F}.
8262     * <pre>
8263     * <font style='background-color: #E87AA9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E87AA9; color: #000000'>&nbsp;@&nbsp;</font>
8264     * <font style='background-color: #E87AA9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E87AA9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E87AA9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E87AA9'>&nbsp;@&nbsp;</font><font style='background-color: #E87AA9; color: #888888'>&nbsp;@&nbsp;</font>
8265     * <font style='background-color: #E87AA9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E87AA9; color: #ffffff'>&nbsp;@&nbsp;</font>
8266     * </pre>
8267     */
8268    public static final SColor CW_LIGHT_ROSE = new SColor(0xE87AA9, "CW Light Rose");
8269
8270    /**
8271     * This color constant "CW Pale Rose" has RGB code {@code 0xE2A2BD}, red 0.8862745, green 0.63529414, blue 0.7411765, alpha 1, hue 0.92968756, saturation 0.2831858, and value 0.8862745.
8272     * It can be represented as a packed float with the constant {@code -0x1.7b45c4p126F}.
8273     * <pre>
8274     * <font style='background-color: #E2A2BD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E2A2BD; color: #000000'>&nbsp;@&nbsp;</font>
8275     * <font style='background-color: #E2A2BD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E2A2BD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E2A2BD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E2A2BD'>&nbsp;@&nbsp;</font><font style='background-color: #E2A2BD; color: #888888'>&nbsp;@&nbsp;</font>
8276     * <font style='background-color: #E2A2BD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E2A2BD; color: #ffffff'>&nbsp;@&nbsp;</font>
8277     * </pre>
8278     */
8279    public static final SColor CW_PALE_ROSE = new SColor(0xE2A2BD, "CW Pale Rose");
8280
8281    /**
8282     * This color constant "CW Bright Rose" has RGB code {@code 0xEE3585}, red 0.93333334, green 0.20784314, blue 0.52156866, alpha 1, hue 0.927928, saturation 0.77731097, and value 0.93333334.
8283     * It can be represented as a packed float with the constant {@code -0x1.0a6bdcp126F}.
8284     * <pre>
8285     * <font style='background-color: #EE3585;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EE3585; color: #000000'>&nbsp;@&nbsp;</font>
8286     * <font style='background-color: #EE3585;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EE3585'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EE3585'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EE3585'>&nbsp;@&nbsp;</font><font style='background-color: #EE3585; color: #888888'>&nbsp;@&nbsp;</font>
8287     * <font style='background-color: #EE3585;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EE3585; color: #ffffff'>&nbsp;@&nbsp;</font>
8288     * </pre>
8289     */
8290    public static final SColor CW_BRIGHT_ROSE = new SColor(0xEE3585, "CW Bright Rose");
8291
8292    /**
8293     * This color constant "CW Dark Rose" has RGB code {@code 0x9A0D4A}, red 0.6039216, green 0.050980393, blue 0.2901961, alpha 1, hue 0.927896, saturation 0.91558444, and value 0.6039216.
8294     * It can be represented as a packed float with the constant {@code -0x1.941b34p125F}.
8295     * <pre>
8296     * <font style='background-color: #9A0D4A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9A0D4A; color: #000000'>&nbsp;@&nbsp;</font>
8297     * <font style='background-color: #9A0D4A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9A0D4A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9A0D4A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9A0D4A'>&nbsp;@&nbsp;</font><font style='background-color: #9A0D4A; color: #888888'>&nbsp;@&nbsp;</font>
8298     * <font style='background-color: #9A0D4A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9A0D4A; color: #ffffff'>&nbsp;@&nbsp;</font>
8299     * </pre>
8300     */
8301    public static final SColor CW_DARK_ROSE = new SColor(0x9A0D4A, "CW Dark Rose");
8302
8303    /**
8304     * This color constant "CW Drab Rose" has RGB code {@code 0x8C2B55}, red 0.54901963, green 0.16862746, blue 0.33333334, alpha 1, hue 0.9278351, saturation 0.6928572, and value 0.54901963.
8305     * It can be represented as a packed float with the constant {@code -0x1.aa5718p125F}.
8306     * <pre>
8307     * <font style='background-color: #8C2B55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C2B55; color: #000000'>&nbsp;@&nbsp;</font>
8308     * <font style='background-color: #8C2B55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8C2B55'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8C2B55'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8C2B55'>&nbsp;@&nbsp;</font><font style='background-color: #8C2B55; color: #888888'>&nbsp;@&nbsp;</font>
8309     * <font style='background-color: #8C2B55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C2B55; color: #ffffff'>&nbsp;@&nbsp;</font>
8310     * </pre>
8311     */
8312    public static final SColor CW_DRAB_ROSE = new SColor(0x8C2B55, "CW Drab Rose");
8313
8314    /**
8315     * This color constant "CW Rich Rose" has RGB code {@code 0xB60B54}, red 0.7137255, green 0.043137256, blue 0.32941177, alpha 1, hue 0.92884994, saturation 0.9395605, and value 0.7137255.
8316     * It can be represented as a packed float with the constant {@code -0x1.a8176cp125F}.
8317     * <pre>
8318     * <font style='background-color: #B60B54;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B60B54; color: #000000'>&nbsp;@&nbsp;</font>
8319     * <font style='background-color: #B60B54;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B60B54'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B60B54'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B60B54'>&nbsp;@&nbsp;</font><font style='background-color: #B60B54; color: #888888'>&nbsp;@&nbsp;</font>
8320     * <font style='background-color: #B60B54;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B60B54; color: #ffffff'>&nbsp;@&nbsp;</font>
8321     * </pre>
8322     */
8323    public static final SColor CW_RICH_ROSE = new SColor(0xB60B54, "CW Rich Rose");
8324
8325    /**
8326     * This color constant "CW Black" has RGB code {@code 0x000000}, red 0.0, green 0.0, blue 0.0, alpha 1, hue 0.0, saturation 0.0, and value 0.0.
8327     * It can be represented as a packed float with the constant {@code -0x1.0p125F}.
8328     * <pre>
8329     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;@&nbsp;</font>
8330     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #000000; color: #888888'>&nbsp;@&nbsp;</font>
8331     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ffffff'>&nbsp;@&nbsp;</font>
8332     * </pre>
8333     */
8334    public static final SColor CW_BLACK = new SColor(0x000000, "CW Black");
8335
8336    /**
8337     * This color constant "CW Almost Black" has RGB code {@code 0x1F1F1F}, red 0.12156863, green 0.12156863, blue 0.12156863, alpha 1, hue 0.0, saturation 0.0, and value 0.12156863.
8338     * It can be represented as a packed float with the constant {@code -0x1.3e3e3ep125F}.
8339     * <pre>
8340     * <font style='background-color: #1F1F1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1F1F1F; color: #000000'>&nbsp;@&nbsp;</font>
8341     * <font style='background-color: #1F1F1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1F1F1F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1F1F1F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1F1F1F'>&nbsp;@&nbsp;</font><font style='background-color: #1F1F1F; color: #888888'>&nbsp;@&nbsp;</font>
8342     * <font style='background-color: #1F1F1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1F1F1F; color: #ffffff'>&nbsp;@&nbsp;</font>
8343     * </pre>
8344     */
8345    public static final SColor CW_ALMOST_BLACK = new SColor(0x1F1F1F, "CW Almost Black");
8346
8347    /**
8348     * This color constant "CW Gray Black" has RGB code {@code 0x3F3F3F}, red 0.24705882, green 0.24705882, blue 0.24705882, alpha 1, hue 0.0, saturation 0.0, and value 0.24705882.
8349     * It can be represented as a packed float with the constant {@code -0x1.7e7e7ep125F}.
8350     * <pre>
8351     * <font style='background-color: #3F3F3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3F3F3F; color: #000000'>&nbsp;@&nbsp;</font>
8352     * <font style='background-color: #3F3F3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3F3F3F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3F3F3F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3F3F3F'>&nbsp;@&nbsp;</font><font style='background-color: #3F3F3F; color: #888888'>&nbsp;@&nbsp;</font>
8353     * <font style='background-color: #3F3F3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3F3F3F; color: #ffffff'>&nbsp;@&nbsp;</font>
8354     * </pre>
8355     */
8356    public static final SColor CW_GRAY_BLACK = new SColor(0x3F3F3F, "CW Gray Black");
8357
8358    /**
8359     * This color constant "CW Dark Gray" has RGB code {@code 0x5F5F5F}, red 0.37254903, green 0.37254903, blue 0.37254903, alpha 1, hue 0.0, saturation 0.0, and value 0.37254903.
8360     * It can be represented as a packed float with the constant {@code -0x1.bebebep125F}.
8361     * <pre>
8362     * <font style='background-color: #5F5F5F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5F5F5F; color: #000000'>&nbsp;@&nbsp;</font>
8363     * <font style='background-color: #5F5F5F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5F5F5F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5F5F5F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5F5F5F'>&nbsp;@&nbsp;</font><font style='background-color: #5F5F5F; color: #888888'>&nbsp;@&nbsp;</font>
8364     * <font style='background-color: #5F5F5F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5F5F5F; color: #ffffff'>&nbsp;@&nbsp;</font>
8365     * </pre>
8366     */
8367    public static final SColor CW_DARK_GRAY = new SColor(0x5F5F5F, "CW Dark Gray");
8368
8369    /**
8370     * This color constant "CW Gray" has RGB code {@code 0x7F7F7F}, red 0.49803922, green 0.49803922, blue 0.49803922, alpha 1, hue 0.0, saturation 0.0, and value 0.49803922.
8371     * It can be represented as a packed float with the constant {@code -0x1.fefefep125F}.
8372     * <pre>
8373     * <font style='background-color: #7F7F7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F7F7F; color: #000000'>&nbsp;@&nbsp;</font>
8374     * <font style='background-color: #7F7F7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7F7F7F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7F7F7F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7F7F7F'>&nbsp;@&nbsp;</font><font style='background-color: #7F7F7F; color: #888888'>&nbsp;@&nbsp;</font>
8375     * <font style='background-color: #7F7F7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F7F7F; color: #ffffff'>&nbsp;@&nbsp;</font>
8376     * </pre>
8377     */
8378    public static final SColor CW_GRAY = new SColor(0x7F7F7F, "CW Gray");
8379
8380    /**
8381     * This color constant "CW Light Gray" has RGB code {@code 0x9F9F9F}, red 0.62352943, green 0.62352943, blue 0.62352943, alpha 1, hue 0.0, saturation 0.0, and value 0.62352943.
8382     * It can be represented as a packed float with the constant {@code -0x1.3f3f3ep126F}.
8383     * <pre>
8384     * <font style='background-color: #9F9F9F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9F9F9F; color: #000000'>&nbsp;@&nbsp;</font>
8385     * <font style='background-color: #9F9F9F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9F9F9F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9F9F9F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9F9F9F'>&nbsp;@&nbsp;</font><font style='background-color: #9F9F9F; color: #888888'>&nbsp;@&nbsp;</font>
8386     * <font style='background-color: #9F9F9F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9F9F9F; color: #ffffff'>&nbsp;@&nbsp;</font>
8387     * </pre>
8388     */
8389    public static final SColor CW_LIGHT_GRAY = new SColor(0x9F9F9F, "CW Light Gray");
8390
8391    /**
8392     * This color constant "CW Gray White" has RGB code {@code 0xBFBFBF}, red 0.7490196, green 0.7490196, blue 0.7490196, alpha 1, hue 0.0, saturation 0.0, and value 0.7490196.
8393     * It can be represented as a packed float with the constant {@code -0x1.7f7f7ep126F}.
8394     * <pre>
8395     * <font style='background-color: #BFBFBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BFBFBF; color: #000000'>&nbsp;@&nbsp;</font>
8396     * <font style='background-color: #BFBFBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BFBFBF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BFBFBF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BFBFBF'>&nbsp;@&nbsp;</font><font style='background-color: #BFBFBF; color: #888888'>&nbsp;@&nbsp;</font>
8397     * <font style='background-color: #BFBFBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BFBFBF; color: #ffffff'>&nbsp;@&nbsp;</font>
8398     * </pre>
8399     */
8400    public static final SColor CW_GRAY_WHITE = new SColor(0xBFBFBF, "CW Gray White");
8401
8402    /**
8403     * This color constant "CW Almost White" has RGB code {@code 0xDFDFDF}, red 0.8745098, green 0.8745098, blue 0.8745098, alpha 1, hue 0.0, saturation 0.0, and value 0.8745098.
8404     * It can be represented as a packed float with the constant {@code -0x1.bfbfbep126F}.
8405     * <pre>
8406     * <font style='background-color: #DFDFDF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DFDFDF; color: #000000'>&nbsp;@&nbsp;</font>
8407     * <font style='background-color: #DFDFDF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DFDFDF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DFDFDF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DFDFDF'>&nbsp;@&nbsp;</font><font style='background-color: #DFDFDF; color: #888888'>&nbsp;@&nbsp;</font>
8408     * <font style='background-color: #DFDFDF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DFDFDF; color: #ffffff'>&nbsp;@&nbsp;</font>
8409     * </pre>
8410     */
8411    public static final SColor CW_ALMOST_WHITE = new SColor(0xDFDFDF, "CW Almost White");
8412
8413    /**
8414     * This color constant "CW White" has RGB code {@code 0xFFFFFF}, red 1.0, green 1.0, blue 1.0, alpha 1, hue 0.0, saturation 0.0, and value 1.0.
8415     * It can be represented as a packed float with the constant {@code -0x1.fffffep126F}.
8416     * <pre>
8417     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFFF; color: #000000'>&nbsp;@&nbsp;</font>
8418     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #FFFFFF; color: #888888'>&nbsp;@&nbsp;</font>
8419     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
8420     * </pre>
8421     */
8422    public static final SColor CW_WHITE = new SColor(0xFFFFFF, "CW White");
8423
8424    /**
8425     * This color constant "Aurora Transparent" has RGB code {@code 0x000000}, red 0.0, green 0.0, blue 0.0, alpha 0, hue 0.0, saturation 0.0, and value 0.0.
8426     * It can be represented as a packed float with the constant {@code 0x0.0p0F}.
8427     * <pre>
8428     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;@&nbsp;</font>
8429     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;@&nbsp;</font><font style='background-color: #000000; color: #888888'>&nbsp;@&nbsp;</font>
8430     * <font style='background-color: #000000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ffffff'>&nbsp;@&nbsp;</font>
8431     * </pre>
8432     */
8433    public static final SColor AURORA_TRANSPARENT = new SColor(0, 0, 0, 0, "Aurora Transparent");
8434
8435    /**
8436     * This color constant "Aurora Pitch Black" has RGB code {@code 0x010101}, red 0.003921569, green 0.003921569, blue 0.003921569, alpha 1, hue 0.0, saturation 0.0, and value 0.003921569.
8437     * It can be represented as a packed float with the constant {@code -0x1.020202p125F}.
8438     * <pre>
8439     * <font style='background-color: #010101;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #010101; color: #000000'>&nbsp;@&nbsp;</font>
8440     * <font style='background-color: #010101;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #010101'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #010101'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #010101'>&nbsp;@&nbsp;</font><font style='background-color: #010101; color: #888888'>&nbsp;@&nbsp;</font>
8441     * <font style='background-color: #010101;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #010101; color: #ffffff'>&nbsp;@&nbsp;</font>
8442     * </pre>
8443     */
8444    public static final SColor AURORA_PITCH_BLACK = new SColor(0x010101, "Aurora Pitch Black");
8445
8446    /**
8447     * This color constant "Aurora Coal Black" has RGB code {@code 0x131313}, red 0.07450981, green 0.07450981, blue 0.07450981, alpha 1, hue 0.0, saturation 0.0, and value 0.07450981.
8448     * It can be represented as a packed float with the constant {@code -0x1.262626p125F}.
8449     * <pre>
8450     * <font style='background-color: #131313;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #131313; color: #000000'>&nbsp;@&nbsp;</font>
8451     * <font style='background-color: #131313;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #131313'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #131313'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #131313'>&nbsp;@&nbsp;</font><font style='background-color: #131313; color: #888888'>&nbsp;@&nbsp;</font>
8452     * <font style='background-color: #131313;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #131313; color: #ffffff'>&nbsp;@&nbsp;</font>
8453     * </pre>
8454     */
8455    public static final SColor AURORA_COAL_BLACK = new SColor(0x131313, "Aurora Coal Black");
8456
8457    /**
8458     * This color constant "Aurora Shadow" has RGB code {@code 0x252525}, red 0.14509805, green 0.14509805, blue 0.14509805, alpha 1, hue 0.0, saturation 0.0, and value 0.14509805.
8459     * It can be represented as a packed float with the constant {@code -0x1.4a4a4ap125F}.
8460     * <pre>
8461     * <font style='background-color: #252525;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #252525; color: #000000'>&nbsp;@&nbsp;</font>
8462     * <font style='background-color: #252525;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #252525'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #252525'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #252525'>&nbsp;@&nbsp;</font><font style='background-color: #252525; color: #888888'>&nbsp;@&nbsp;</font>
8463     * <font style='background-color: #252525;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #252525; color: #ffffff'>&nbsp;@&nbsp;</font>
8464     * </pre>
8465     */
8466    public static final SColor AURORA_SHADOW = new SColor(0x252525, "Aurora Shadow");
8467
8468    /**
8469     * This color constant "Aurora Graphite" has RGB code {@code 0x373737}, red 0.21568628, green 0.21568628, blue 0.21568628, alpha 1, hue 0.0, saturation 0.0, and value 0.21568628.
8470     * It can be represented as a packed float with the constant {@code -0x1.6e6e6ep125F}.
8471     * <pre>
8472     * <font style='background-color: #373737;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #373737; color: #000000'>&nbsp;@&nbsp;</font>
8473     * <font style='background-color: #373737;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #373737'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #373737'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #373737'>&nbsp;@&nbsp;</font><font style='background-color: #373737; color: #888888'>&nbsp;@&nbsp;</font>
8474     * <font style='background-color: #373737;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #373737; color: #ffffff'>&nbsp;@&nbsp;</font>
8475     * </pre>
8476     */
8477    public static final SColor AURORA_GRAPHITE = new SColor(0x373737, "Aurora Graphite");
8478
8479    /**
8480     * This color constant "Aurora Smoke" has RGB code {@code 0x494949}, red 0.28627452, green 0.28627452, blue 0.28627452, alpha 1, hue 0.0, saturation 0.0, and value 0.28627452.
8481     * It can be represented as a packed float with the constant {@code -0x1.929292p125F}.
8482     * <pre>
8483     * <font style='background-color: #494949;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #494949; color: #000000'>&nbsp;@&nbsp;</font>
8484     * <font style='background-color: #494949;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #494949'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #494949'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #494949'>&nbsp;@&nbsp;</font><font style='background-color: #494949; color: #888888'>&nbsp;@&nbsp;</font>
8485     * <font style='background-color: #494949;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #494949; color: #ffffff'>&nbsp;@&nbsp;</font>
8486     * </pre>
8487     */
8488    public static final SColor AURORA_SMOKE = new SColor(0x494949, "Aurora Smoke");
8489
8490    /**
8491     * This color constant "Aurora Lead" has RGB code {@code 0x5B5B5B}, red 0.35686275, green 0.35686275, blue 0.35686275, alpha 1, hue 0.0, saturation 0.0, and value 0.35686275.
8492     * It can be represented as a packed float with the constant {@code -0x1.b6b6b6p125F}.
8493     * <pre>
8494     * <font style='background-color: #5B5B5B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5B5B5B; color: #000000'>&nbsp;@&nbsp;</font>
8495     * <font style='background-color: #5B5B5B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5B5B5B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5B5B5B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5B5B5B'>&nbsp;@&nbsp;</font><font style='background-color: #5B5B5B; color: #888888'>&nbsp;@&nbsp;</font>
8496     * <font style='background-color: #5B5B5B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5B5B5B; color: #ffffff'>&nbsp;@&nbsp;</font>
8497     * </pre>
8498     */
8499    public static final SColor AURORA_LEAD = new SColor(0x5B5B5B, "Aurora Lead");
8500
8501    /**
8502     * This color constant "Aurora Iron" has RGB code {@code 0x6E6E6E}, red 0.43137255, green 0.43137255, blue 0.43137255, alpha 1, hue 0.0, saturation 0.0, and value 0.43137255.
8503     * It can be represented as a packed float with the constant {@code -0x1.dcdcdcp125F}.
8504     * <pre>
8505     * <font style='background-color: #6E6E6E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6E6E6E; color: #000000'>&nbsp;@&nbsp;</font>
8506     * <font style='background-color: #6E6E6E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6E6E6E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6E6E6E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6E6E6E'>&nbsp;@&nbsp;</font><font style='background-color: #6E6E6E; color: #888888'>&nbsp;@&nbsp;</font>
8507     * <font style='background-color: #6E6E6E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6E6E6E; color: #ffffff'>&nbsp;@&nbsp;</font>
8508     * </pre>
8509     */
8510    public static final SColor AURORA_IRON = new SColor(0x6E6E6E, "Aurora Iron");
8511
8512    /**
8513     * This color constant "Aurora Elephant" has RGB code {@code 0x808080}, red 0.5019608, green 0.5019608, blue 0.5019608, alpha 1, hue 0.0, saturation 0.0, and value 0.5019608.
8514     * It can be represented as a packed float with the constant {@code -0x1.0101p126F}.
8515     * <pre>
8516     * <font style='background-color: #808080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #808080; color: #000000'>&nbsp;@&nbsp;</font>
8517     * <font style='background-color: #808080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #808080'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #808080'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #808080'>&nbsp;@&nbsp;</font><font style='background-color: #808080; color: #888888'>&nbsp;@&nbsp;</font>
8518     * <font style='background-color: #808080;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #808080; color: #ffffff'>&nbsp;@&nbsp;</font>
8519     * </pre>
8520     */
8521    public static final SColor AURORA_ELEPHANT = new SColor(0x808080, "Aurora Elephant");
8522
8523    /**
8524     * This color constant "Aurora Chinchilla" has RGB code {@code 0x929292}, red 0.57254905, green 0.57254905, blue 0.57254905, alpha 1, hue 0.0, saturation 0.0, and value 0.57254905.
8525     * It can be represented as a packed float with the constant {@code -0x1.252524p126F}.
8526     * <pre>
8527     * <font style='background-color: #929292;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #929292; color: #000000'>&nbsp;@&nbsp;</font>
8528     * <font style='background-color: #929292;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #929292'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #929292'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #929292'>&nbsp;@&nbsp;</font><font style='background-color: #929292; color: #888888'>&nbsp;@&nbsp;</font>
8529     * <font style='background-color: #929292;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #929292; color: #ffffff'>&nbsp;@&nbsp;</font>
8530     * </pre>
8531     */
8532    public static final SColor AURORA_CHINCHILLA = new SColor(0x929292, "Aurora Chinchilla");
8533
8534    /**
8535     * This color constant "Aurora Greyhound" has RGB code {@code 0xA4A4A4}, red 0.6431373, green 0.6431373, blue 0.6431373, alpha 1, hue 0.0, saturation 0.0, and value 0.6431373.
8536     * It can be represented as a packed float with the constant {@code -0x1.494948p126F}.
8537     * <pre>
8538     * <font style='background-color: #A4A4A4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A4A4A4; color: #000000'>&nbsp;@&nbsp;</font>
8539     * <font style='background-color: #A4A4A4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A4A4A4'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A4A4A4'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A4A4A4'>&nbsp;@&nbsp;</font><font style='background-color: #A4A4A4; color: #888888'>&nbsp;@&nbsp;</font>
8540     * <font style='background-color: #A4A4A4;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A4A4A4; color: #ffffff'>&nbsp;@&nbsp;</font>
8541     * </pre>
8542     */
8543    public static final SColor AURORA_GREYHOUND = new SColor(0xA4A4A4, "Aurora Greyhound");
8544
8545    /**
8546     * This color constant "Aurora Silver" has RGB code {@code 0xB6B6B6}, red 0.7137255, green 0.7137255, blue 0.7137255, alpha 1, hue 0.0, saturation 0.0, and value 0.7137255.
8547     * It can be represented as a packed float with the constant {@code -0x1.6d6d6cp126F}.
8548     * <pre>
8549     * <font style='background-color: #B6B6B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B6B6B6; color: #000000'>&nbsp;@&nbsp;</font>
8550     * <font style='background-color: #B6B6B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B6B6B6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B6B6B6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B6B6B6'>&nbsp;@&nbsp;</font><font style='background-color: #B6B6B6; color: #888888'>&nbsp;@&nbsp;</font>
8551     * <font style='background-color: #B6B6B6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B6B6B6; color: #ffffff'>&nbsp;@&nbsp;</font>
8552     * </pre>
8553     */
8554    public static final SColor AURORA_SILVER = new SColor(0xB6B6B6, "Aurora Silver");
8555
8556    /**
8557     * This color constant "Aurora Fog" has RGB code {@code 0xC9C9C9}, red 0.7882353, green 0.7882353, blue 0.7882353, alpha 1, hue 0.0, saturation 0.0, and value 0.7882353.
8558     * It can be represented as a packed float with the constant {@code -0x1.939392p126F}.
8559     * <pre>
8560     * <font style='background-color: #C9C9C9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C9C9C9; color: #000000'>&nbsp;@&nbsp;</font>
8561     * <font style='background-color: #C9C9C9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C9C9C9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C9C9C9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C9C9C9'>&nbsp;@&nbsp;</font><font style='background-color: #C9C9C9; color: #888888'>&nbsp;@&nbsp;</font>
8562     * <font style='background-color: #C9C9C9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C9C9C9; color: #ffffff'>&nbsp;@&nbsp;</font>
8563     * </pre>
8564     */
8565    public static final SColor AURORA_FOG = new SColor(0xC9C9C9, "Aurora Fog");
8566
8567    /**
8568     * This color constant "Aurora Platinum" has RGB code {@code 0xDBDBDB}, red 0.85882354, green 0.85882354, blue 0.85882354, alpha 1, hue 0.0, saturation 0.0, and value 0.85882354.
8569     * It can be represented as a packed float with the constant {@code -0x1.b7b7b6p126F}.
8570     * <pre>
8571     * <font style='background-color: #DBDBDB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DBDBDB; color: #000000'>&nbsp;@&nbsp;</font>
8572     * <font style='background-color: #DBDBDB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DBDBDB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DBDBDB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DBDBDB'>&nbsp;@&nbsp;</font><font style='background-color: #DBDBDB; color: #888888'>&nbsp;@&nbsp;</font>
8573     * <font style='background-color: #DBDBDB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DBDBDB; color: #ffffff'>&nbsp;@&nbsp;</font>
8574     * </pre>
8575     */
8576    public static final SColor AURORA_PLATINUM = new SColor(0xDBDBDB, "Aurora Platinum");
8577
8578    /**
8579     * This color constant "Aurora Cloud" has RGB code {@code 0xEDEDED}, red 0.92941177, green 0.92941177, blue 0.92941177, alpha 1, hue 0.0, saturation 0.0, and value 0.92941177.
8580     * It can be represented as a packed float with the constant {@code -0x1.dbdbdap126F}.
8581     * <pre>
8582     * <font style='background-color: #EDEDED;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EDEDED; color: #000000'>&nbsp;@&nbsp;</font>
8583     * <font style='background-color: #EDEDED;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EDEDED'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EDEDED'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EDEDED'>&nbsp;@&nbsp;</font><font style='background-color: #EDEDED; color: #888888'>&nbsp;@&nbsp;</font>
8584     * <font style='background-color: #EDEDED;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EDEDED; color: #ffffff'>&nbsp;@&nbsp;</font>
8585     * </pre>
8586     */
8587    public static final SColor AURORA_CLOUD = new SColor(0xEDEDED, "Aurora Cloud");
8588
8589    /**
8590     * This color constant "Aurora Shining White" has RGB code {@code 0xFFFFFF}, red 1.0, green 1.0, blue 1.0, alpha 1, hue 0.0, saturation 0.0, and value 1.0.
8591     * It can be represented as a packed float with the constant {@code -0x1.fffffep126F}.
8592     * <pre>
8593     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFFF; color: #000000'>&nbsp;@&nbsp;</font>
8594     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #FFFFFF; color: #888888'>&nbsp;@&nbsp;</font>
8595     * <font style='background-color: #FFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
8596     * </pre>
8597     */
8598    public static final SColor AURORA_SHINING_WHITE = new SColor(0xFFFFFF, "Aurora Shining White");
8599
8600    /**
8601     * This color constant "Aurora Seawater" has RGB code {@code 0x007F7F}, red 0.0, green 0.49803922, blue 0.49803922, alpha 1, hue 0.5, saturation 1.0, and value 0.49803922.
8602     * It can be represented as a packed float with the constant {@code -0x1.fefep125F}.
8603     * <pre>
8604     * <font style='background-color: #007F7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #007F7F; color: #000000'>&nbsp;@&nbsp;</font>
8605     * <font style='background-color: #007F7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #007F7F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #007F7F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #007F7F'>&nbsp;@&nbsp;</font><font style='background-color: #007F7F; color: #888888'>&nbsp;@&nbsp;</font>
8606     * <font style='background-color: #007F7F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #007F7F; color: #ffffff'>&nbsp;@&nbsp;</font>
8607     * </pre>
8608     */
8609    public static final SColor AURORA_SEAWATER = new SColor(0x007F7F, "Aurora Seawater");
8610
8611    /**
8612     * This color constant "Aurora Hospital Green" has RGB code {@code 0x3FBFBF}, red 0.24705882, green 0.7490196, blue 0.7490196, alpha 1, hue 0.5, saturation 0.6701571, and value 0.7490196.
8613     * It can be represented as a packed float with the constant {@code -0x1.7f7e7ep126F}.
8614     * <pre>
8615     * <font style='background-color: #3FBFBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3FBFBF; color: #000000'>&nbsp;@&nbsp;</font>
8616     * <font style='background-color: #3FBFBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3FBFBF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3FBFBF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3FBFBF'>&nbsp;@&nbsp;</font><font style='background-color: #3FBFBF; color: #888888'>&nbsp;@&nbsp;</font>
8617     * <font style='background-color: #3FBFBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3FBFBF; color: #ffffff'>&nbsp;@&nbsp;</font>
8618     * </pre>
8619     */
8620    public static final SColor AURORA_HOSPITAL_GREEN = new SColor(0x3FBFBF, "Aurora Hospital Green");
8621
8622    /**
8623     * This color constant "Aurora Cyan" has RGB code {@code 0x00FFFF}, red 0.0, green 1.0, blue 1.0, alpha 1, hue 0.5, saturation 1.0, and value 1.0.
8624     * It can be represented as a packed float with the constant {@code -0x1.fffep126F}.
8625     * <pre>
8626     * <font style='background-color: #00FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FFFF; color: #000000'>&nbsp;@&nbsp;</font>
8627     * <font style='background-color: #00FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00FFFF'>&nbsp;@&nbsp;</font><font style='background-color: #00FFFF; color: #888888'>&nbsp;@&nbsp;</font>
8628     * <font style='background-color: #00FFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
8629     * </pre>
8630     */
8631    public static final SColor AURORA_CYAN = new SColor(0x00FFFF, "Aurora Cyan");
8632
8633    /**
8634     * This color constant "Aurora Bubble" has RGB code {@code 0xBFFFFF}, red 0.7490196, green 1.0, blue 1.0, alpha 1, hue 0.5, saturation 0.25098038, and value 1.0.
8635     * It can be represented as a packed float with the constant {@code -0x1.ffff7ep126F}.
8636     * <pre>
8637     * <font style='background-color: #BFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BFFFFF; color: #000000'>&nbsp;@&nbsp;</font>
8638     * <font style='background-color: #BFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BFFFFF'>&nbsp;@&nbsp;</font><font style='background-color: #BFFFFF; color: #888888'>&nbsp;@&nbsp;</font>
8639     * <font style='background-color: #BFFFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BFFFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
8640     * </pre>
8641     */
8642    public static final SColor AURORA_BUBBLE = new SColor(0xBFFFFF, "Aurora Bubble");
8643
8644    /**
8645     * This color constant "Aurora Periwinkle" has RGB code {@code 0x8181FF}, red 0.5058824, green 0.5058824, blue 1.0, alpha 1, hue 0.66666675, saturation 0.49411762, and value 1.0.
8646     * It can be represented as a packed float with the constant {@code -0x1.ff0302p126F}.
8647     * <pre>
8648     * <font style='background-color: #8181FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8181FF; color: #000000'>&nbsp;@&nbsp;</font>
8649     * <font style='background-color: #8181FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8181FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8181FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8181FF'>&nbsp;@&nbsp;</font><font style='background-color: #8181FF; color: #888888'>&nbsp;@&nbsp;</font>
8650     * <font style='background-color: #8181FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8181FF; color: #ffffff'>&nbsp;@&nbsp;</font>
8651     * </pre>
8652     */
8653    public static final SColor AURORA_PERIWINKLE = new SColor(0x8181FF, "Aurora Periwinkle");
8654
8655    /**
8656     * This color constant "Aurora Ultramarine" has RGB code {@code 0x0000FF}, red 0.0, green 0.0, blue 1.0, alpha 1, hue 0.66666675, saturation 1.0, and value 1.0.
8657     * It can be represented as a packed float with the constant {@code -0x1.fep126F}.
8658     * <pre>
8659     * <font style='background-color: #0000FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000FF; color: #000000'>&nbsp;@&nbsp;</font>
8660     * <font style='background-color: #0000FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0000FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0000FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0000FF'>&nbsp;@&nbsp;</font><font style='background-color: #0000FF; color: #888888'>&nbsp;@&nbsp;</font>
8661     * <font style='background-color: #0000FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000FF; color: #ffffff'>&nbsp;@&nbsp;</font>
8662     * </pre>
8663     */
8664    public static final SColor AURORA_ULTRAMARINE = new SColor(0x0000FF, "Aurora Ultramarine");
8665
8666    /**
8667     * This color constant "Aurora Faded Blue" has RGB code {@code 0x3F3FBF}, red 0.24705882, green 0.24705882, blue 0.7490196, alpha 1, hue 0.66666687, saturation 0.6701571, and value 0.7490196.
8668     * It can be represented as a packed float with the constant {@code -0x1.7e7e7ep126F}.
8669     * <pre>
8670     * <font style='background-color: #3F3FBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3F3FBF; color: #000000'>&nbsp;@&nbsp;</font>
8671     * <font style='background-color: #3F3FBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3F3FBF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3F3FBF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3F3FBF'>&nbsp;@&nbsp;</font><font style='background-color: #3F3FBF; color: #888888'>&nbsp;@&nbsp;</font>
8672     * <font style='background-color: #3F3FBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3F3FBF; color: #ffffff'>&nbsp;@&nbsp;</font>
8673     * </pre>
8674     */
8675    public static final SColor AURORA_FADED_BLUE = new SColor(0x3F3FBF, "Aurora Faded Blue");
8676
8677    /**
8678     * This color constant "Aurora Ocean Blue" has RGB code {@code 0x00007F}, red 0.0, green 0.0, blue 0.49803922, alpha 1, hue 0.66666675, saturation 1.0, and value 0.49803922.
8679     * It can be represented as a packed float with the constant {@code -0x1.fep125F}.
8680     * <pre>
8681     * <font style='background-color: #00007F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00007F; color: #000000'>&nbsp;@&nbsp;</font>
8682     * <font style='background-color: #00007F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00007F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00007F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00007F'>&nbsp;@&nbsp;</font><font style='background-color: #00007F; color: #888888'>&nbsp;@&nbsp;</font>
8683     * <font style='background-color: #00007F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00007F; color: #ffffff'>&nbsp;@&nbsp;</font>
8684     * </pre>
8685     */
8686    public static final SColor AURORA_OCEAN_BLUE = new SColor(0x00007F, "Aurora Ocean Blue");
8687
8688    /**
8689     * This color constant "Aurora Stygian Blue" has RGB code {@code 0x0F0F50}, red 0.05882353, green 0.05882353, blue 0.3137255, alpha 1, hue 0.66666687, saturation 0.8125, and value 0.3137255.
8690     * It can be represented as a packed float with the constant {@code -0x1.a01e1ep125F}.
8691     * <pre>
8692     * <font style='background-color: #0F0F50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0F0F50; color: #000000'>&nbsp;@&nbsp;</font>
8693     * <font style='background-color: #0F0F50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0F0F50'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0F0F50'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0F0F50'>&nbsp;@&nbsp;</font><font style='background-color: #0F0F50; color: #888888'>&nbsp;@&nbsp;</font>
8694     * <font style='background-color: #0F0F50;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0F0F50; color: #ffffff'>&nbsp;@&nbsp;</font>
8695     * </pre>
8696     */
8697    public static final SColor AURORA_STYGIAN_BLUE = new SColor(0x0F0F50, "Aurora Stygian Blue");
8698
8699    /**
8700     * This color constant "Aurora Deep Purple" has RGB code {@code 0x7F007F}, red 0.49803922, green 0.0, blue 0.49803922, alpha 1, hue 0.8333333, saturation 1.0, and value 0.49803922.
8701     * It can be represented as a packed float with the constant {@code -0x1.fe00fep125F}.
8702     * <pre>
8703     * <font style='background-color: #7F007F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F007F; color: #000000'>&nbsp;@&nbsp;</font>
8704     * <font style='background-color: #7F007F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7F007F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7F007F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7F007F'>&nbsp;@&nbsp;</font><font style='background-color: #7F007F; color: #888888'>&nbsp;@&nbsp;</font>
8705     * <font style='background-color: #7F007F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F007F; color: #ffffff'>&nbsp;@&nbsp;</font>
8706     * </pre>
8707     */
8708    public static final SColor AURORA_DEEP_PURPLE = new SColor(0x7F007F, "Aurora Deep Purple");
8709
8710    /**
8711     * This color constant "Aurora Tyrian Purple" has RGB code {@code 0xBF3FBF}, red 0.7490196, green 0.24705882, blue 0.7490196, alpha 1, hue 0.8333334, saturation 0.6701571, and value 0.7490196.
8712     * It can be represented as a packed float with the constant {@code -0x1.7e7f7ep126F}.
8713     * <pre>
8714     * <font style='background-color: #BF3FBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BF3FBF; color: #000000'>&nbsp;@&nbsp;</font>
8715     * <font style='background-color: #BF3FBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BF3FBF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BF3FBF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BF3FBF'>&nbsp;@&nbsp;</font><font style='background-color: #BF3FBF; color: #888888'>&nbsp;@&nbsp;</font>
8716     * <font style='background-color: #BF3FBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BF3FBF; color: #ffffff'>&nbsp;@&nbsp;</font>
8717     * </pre>
8718     */
8719    public static final SColor AURORA_TYRIAN_PURPLE = new SColor(0xBF3FBF, "Aurora Tyrian Purple");
8720
8721    /**
8722     * This color constant "Aurora Magenta" has RGB code {@code 0xF500F5}, red 0.9607843, green 0.0, blue 0.9607843, alpha 1, hue 0.8333333, saturation 1.0, and value 0.9607843.
8723     * It can be represented as a packed float with the constant {@code -0x1.ea01eap126F}.
8724     * <pre>
8725     * <font style='background-color: #F500F5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F500F5; color: #000000'>&nbsp;@&nbsp;</font>
8726     * <font style='background-color: #F500F5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F500F5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F500F5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F500F5'>&nbsp;@&nbsp;</font><font style='background-color: #F500F5; color: #888888'>&nbsp;@&nbsp;</font>
8727     * <font style='background-color: #F500F5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F500F5; color: #ffffff'>&nbsp;@&nbsp;</font>
8728     * </pre>
8729     */
8730    public static final SColor AURORA_MAGENTA = new SColor(0xF500F5, "Aurora Magenta");
8731
8732    /**
8733     * This color constant "Aurora Bubblegum Pink" has RGB code {@code 0xFD81FF}, red 0.99215686, green 0.5058824, blue 1.0, alpha 1, hue 0.830688, saturation 0.49411762, and value 1.0.
8734     * It can be represented as a packed float with the constant {@code -0x1.ff03fap126F}.
8735     * <pre>
8736     * <font style='background-color: #FD81FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FD81FF; color: #000000'>&nbsp;@&nbsp;</font>
8737     * <font style='background-color: #FD81FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FD81FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FD81FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FD81FF'>&nbsp;@&nbsp;</font><font style='background-color: #FD81FF; color: #888888'>&nbsp;@&nbsp;</font>
8738     * <font style='background-color: #FD81FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FD81FF; color: #ffffff'>&nbsp;@&nbsp;</font>
8739     * </pre>
8740     */
8741    public static final SColor AURORA_BUBBLEGUM_PINK = new SColor(0xFD81FF, "Aurora Bubblegum Pink");
8742
8743    /**
8744     * This color constant "Aurora Pork Chop" has RGB code {@code 0xFFC0CB}, red 1.0, green 0.7529412, blue 0.79607844, alpha 1, hue 0.9708994, saturation 0.24705881, and value 1.0.
8745     * It can be represented as a packed float with the constant {@code -0x1.9781fep126F}.
8746     * <pre>
8747     * <font style='background-color: #FFC0CB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFC0CB; color: #000000'>&nbsp;@&nbsp;</font>
8748     * <font style='background-color: #FFC0CB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFC0CB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFC0CB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFC0CB'>&nbsp;@&nbsp;</font><font style='background-color: #FFC0CB; color: #888888'>&nbsp;@&nbsp;</font>
8749     * <font style='background-color: #FFC0CB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFC0CB; color: #ffffff'>&nbsp;@&nbsp;</font>
8750     * </pre>
8751     */
8752    public static final SColor AURORA_PORK_CHOP = new SColor(0xFFC0CB, "Aurora Pork Chop");
8753
8754    /**
8755     * This color constant "Aurora Raw Meat" has RGB code {@code 0xFF8181}, red 1.0, green 0.5058824, blue 0.5058824, alpha 1, hue 0.0, saturation 0.49411762, and value 1.0.
8756     * It can be represented as a packed float with the constant {@code -0x1.0303fep126F}.
8757     * <pre>
8758     * <font style='background-color: #FF8181;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF8181; color: #000000'>&nbsp;@&nbsp;</font>
8759     * <font style='background-color: #FF8181;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF8181'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF8181'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF8181'>&nbsp;@&nbsp;</font><font style='background-color: #FF8181; color: #888888'>&nbsp;@&nbsp;</font>
8760     * <font style='background-color: #FF8181;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF8181; color: #ffffff'>&nbsp;@&nbsp;</font>
8761     * </pre>
8762     */
8763    public static final SColor AURORA_RAW_MEAT = new SColor(0xFF8181, "Aurora Raw Meat");
8764
8765    /**
8766     * This color constant "Aurora Fresh Blood" has RGB code {@code 0xFF0000}, red 1.0, green 0.0, blue 0.0, alpha 1, hue 0.0, saturation 1.0, and value 1.0.
8767     * It can be represented as a packed float with the constant {@code -0x1.0001fep125F}.
8768     * <pre>
8769     * <font style='background-color: #FF0000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF0000; color: #000000'>&nbsp;@&nbsp;</font>
8770     * <font style='background-color: #FF0000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF0000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF0000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF0000'>&nbsp;@&nbsp;</font><font style='background-color: #FF0000; color: #888888'>&nbsp;@&nbsp;</font>
8771     * <font style='background-color: #FF0000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF0000; color: #ffffff'>&nbsp;@&nbsp;</font>
8772     * </pre>
8773     */
8774    public static final SColor AURORA_FRESH_BLOOD = new SColor(0xFF0000, "Aurora Fresh Blood");
8775
8776    /**
8777     * This color constant "Aurora Putty" has RGB code {@code 0xBF3F3F}, red 0.7490196, green 0.24705882, blue 0.24705882, alpha 1, hue 0.0, saturation 0.6701571, and value 0.7490196.
8778     * It can be represented as a packed float with the constant {@code -0x1.7e7f7ep125F}.
8779     * <pre>
8780     * <font style='background-color: #BF3F3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BF3F3F; color: #000000'>&nbsp;@&nbsp;</font>
8781     * <font style='background-color: #BF3F3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BF3F3F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BF3F3F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BF3F3F'>&nbsp;@&nbsp;</font><font style='background-color: #BF3F3F; color: #888888'>&nbsp;@&nbsp;</font>
8782     * <font style='background-color: #BF3F3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BF3F3F; color: #ffffff'>&nbsp;@&nbsp;</font>
8783     * </pre>
8784     */
8785    public static final SColor AURORA_PUTTY = new SColor(0xBF3F3F, "Aurora Putty");
8786
8787    /**
8788     * This color constant "Aurora Sienna" has RGB code {@code 0x7F0000}, red 0.49803922, green 0.0, blue 0.0, alpha 1, hue 0.0, saturation 1.0, and value 0.49803922.
8789     * It can be represented as a packed float with the constant {@code -0x1.0000fep125F}.
8790     * <pre>
8791     * <font style='background-color: #7F0000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F0000; color: #000000'>&nbsp;@&nbsp;</font>
8792     * <font style='background-color: #7F0000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7F0000'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7F0000'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7F0000'>&nbsp;@&nbsp;</font><font style='background-color: #7F0000; color: #888888'>&nbsp;@&nbsp;</font>
8793     * <font style='background-color: #7F0000;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F0000; color: #ffffff'>&nbsp;@&nbsp;</font>
8794     * </pre>
8795     */
8796    public static final SColor AURORA_SIENNA = new SColor(0x7F0000, "Aurora Sienna");
8797
8798    /**
8799     * This color constant "Aurora Seal Brown" has RGB code {@code 0x551414}, red 0.33333334, green 0.078431375, blue 0.078431375, alpha 1, hue 0.0, saturation 0.7647059, and value 0.33333334.
8800     * It can be represented as a packed float with the constant {@code -0x1.2828aap125F}.
8801     * <pre>
8802     * <font style='background-color: #551414;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #551414; color: #000000'>&nbsp;@&nbsp;</font>
8803     * <font style='background-color: #551414;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #551414'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #551414'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #551414'>&nbsp;@&nbsp;</font><font style='background-color: #551414; color: #888888'>&nbsp;@&nbsp;</font>
8804     * <font style='background-color: #551414;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #551414; color: #ffffff'>&nbsp;@&nbsp;</font>
8805     * </pre>
8806     */
8807    public static final SColor AURORA_SEAL_BROWN = new SColor(0x551414, "Aurora Seal Brown");
8808
8809    /**
8810     * This color constant "Aurora Mummy Brown" has RGB code {@code 0x7F3F00}, red 0.49803922, green 0.24705882, blue 0.0, alpha 1, hue 0.082677245, saturation 1.0, and value 0.49803922.
8811     * It can be represented as a packed float with the constant {@code -0x1.007efep125F}.
8812     * <pre>
8813     * <font style='background-color: #7F3F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F3F00; color: #000000'>&nbsp;@&nbsp;</font>
8814     * <font style='background-color: #7F3F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7F3F00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7F3F00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7F3F00'>&nbsp;@&nbsp;</font><font style='background-color: #7F3F00; color: #888888'>&nbsp;@&nbsp;</font>
8815     * <font style='background-color: #7F3F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F3F00; color: #ffffff'>&nbsp;@&nbsp;</font>
8816     * </pre>
8817     */
8818    public static final SColor AURORA_MUMMY_BROWN = new SColor(0x7F3F00, "Aurora Mummy Brown");
8819
8820    /**
8821     * This color constant "Aurora Fawn" has RGB code {@code 0xBF7F3F}, red 0.7490196, green 0.49803922, blue 0.24705882, alpha 1, hue 0.083333254, saturation 0.6701571, and value 0.7490196.
8822     * It can be represented as a packed float with the constant {@code -0x1.7eff7ep125F}.
8823     * <pre>
8824     * <font style='background-color: #BF7F3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BF7F3F; color: #000000'>&nbsp;@&nbsp;</font>
8825     * <font style='background-color: #BF7F3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BF7F3F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BF7F3F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BF7F3F'>&nbsp;@&nbsp;</font><font style='background-color: #BF7F3F; color: #888888'>&nbsp;@&nbsp;</font>
8826     * <font style='background-color: #BF7F3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BF7F3F; color: #ffffff'>&nbsp;@&nbsp;</font>
8827     * </pre>
8828     */
8829    public static final SColor AURORA_FAWN = new SColor(0xBF7F3F, "Aurora Fawn");
8830
8831    /**
8832     * This color constant "Aurora Orange" has RGB code {@code 0xFF7F00}, red 1.0, green 0.49803922, blue 0.0, alpha 1, hue 0.08300662, saturation 1.0, and value 1.0.
8833     * It can be represented as a packed float with the constant {@code -0x1.00fffep125F}.
8834     * <pre>
8835     * <font style='background-color: #FF7F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF7F00; color: #000000'>&nbsp;@&nbsp;</font>
8836     * <font style='background-color: #FF7F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF7F00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF7F00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF7F00'>&nbsp;@&nbsp;</font><font style='background-color: #FF7F00; color: #888888'>&nbsp;@&nbsp;</font>
8837     * <font style='background-color: #FF7F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF7F00; color: #ffffff'>&nbsp;@&nbsp;</font>
8838     * </pre>
8839     */
8840    public static final SColor AURORA_ORANGE = new SColor(0xFF7F00, "Aurora Orange");
8841
8842    /**
8843     * This color constant "Aurora Peach" has RGB code {@code 0xFFBF81}, red 1.0, green 0.7490196, blue 0.5058824, alpha 1, hue 0.082010746, saturation 0.49411762, and value 1.0.
8844     * It can be represented as a packed float with the constant {@code -0x1.037ffep126F}.
8845     * <pre>
8846     * <font style='background-color: #FFBF81;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFBF81; color: #000000'>&nbsp;@&nbsp;</font>
8847     * <font style='background-color: #FFBF81;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFBF81'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFBF81'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFBF81'>&nbsp;@&nbsp;</font><font style='background-color: #FFBF81; color: #888888'>&nbsp;@&nbsp;</font>
8848     * <font style='background-color: #FFBF81;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFBF81; color: #ffffff'>&nbsp;@&nbsp;</font>
8849     * </pre>
8850     */
8851    public static final SColor AURORA_PEACH = new SColor(0xFFBF81, "Aurora Peach");
8852
8853    /**
8854     * This color constant "Aurora Cream" has RGB code {@code 0xFFFFBF}, red 1.0, green 1.0, blue 0.7490196, alpha 1, hue 0.16666675, saturation 0.25098038, and value 1.0.
8855     * It can be represented as a packed float with the constant {@code -0x1.7ffffep126F}.
8856     * <pre>
8857     * <font style='background-color: #FFFFBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFBF; color: #000000'>&nbsp;@&nbsp;</font>
8858     * <font style='background-color: #FFFFBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFFFBF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFFFBF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFFFBF'>&nbsp;@&nbsp;</font><font style='background-color: #FFFFBF; color: #888888'>&nbsp;@&nbsp;</font>
8859     * <font style='background-color: #FFFFBF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFFBF; color: #ffffff'>&nbsp;@&nbsp;</font>
8860     * </pre>
8861     */
8862    public static final SColor AURORA_CREAM = new SColor(0xFFFFBF, "Aurora Cream");
8863
8864    /**
8865     * This color constant "Aurora Lemon" has RGB code {@code 0xFFFF00}, red 1.0, green 1.0, blue 0.0, alpha 1, hue 0.16666675, saturation 1.0, and value 1.0.
8866     * It can be represented as a packed float with the constant {@code -0x1.01fffep125F}.
8867     * <pre>
8868     * <font style='background-color: #FFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFF00; color: #000000'>&nbsp;@&nbsp;</font>
8869     * <font style='background-color: #FFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFFF00'>&nbsp;@&nbsp;</font><font style='background-color: #FFFF00; color: #888888'>&nbsp;@&nbsp;</font>
8870     * <font style='background-color: #FFFF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFFF00; color: #ffffff'>&nbsp;@&nbsp;</font>
8871     * </pre>
8872     */
8873    public static final SColor AURORA_LEMON = new SColor(0xFFFF00, "Aurora Lemon");
8874
8875    /**
8876     * This color constant "Aurora Earwax" has RGB code {@code 0xBFBF3F}, red 0.7490196, green 0.7490196, blue 0.24705882, alpha 1, hue 0.16666663, saturation 0.6701571, and value 0.7490196.
8877     * It can be represented as a packed float with the constant {@code -0x1.7f7f7ep125F}.
8878     * <pre>
8879     * <font style='background-color: #BFBF3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BFBF3F; color: #000000'>&nbsp;@&nbsp;</font>
8880     * <font style='background-color: #BFBF3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BFBF3F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BFBF3F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BFBF3F'>&nbsp;@&nbsp;</font><font style='background-color: #BFBF3F; color: #888888'>&nbsp;@&nbsp;</font>
8881     * <font style='background-color: #BFBF3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BFBF3F; color: #ffffff'>&nbsp;@&nbsp;</font>
8882     * </pre>
8883     */
8884    public static final SColor AURORA_EARWAX = new SColor(0xBFBF3F, "Aurora Earwax");
8885
8886    /**
8887     * This color constant "Aurora Umber" has RGB code {@code 0x7F7F00}, red 0.49803922, green 0.49803922, blue 0.0, alpha 1, hue 0.16666675, saturation 1.0, and value 0.49803922.
8888     * It can be represented as a packed float with the constant {@code -0x1.00fefep125F}.
8889     * <pre>
8890     * <font style='background-color: #7F7F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F7F00; color: #000000'>&nbsp;@&nbsp;</font>
8891     * <font style='background-color: #7F7F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7F7F00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7F7F00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7F7F00'>&nbsp;@&nbsp;</font><font style='background-color: #7F7F00; color: #888888'>&nbsp;@&nbsp;</font>
8892     * <font style='background-color: #7F7F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F7F00; color: #ffffff'>&nbsp;@&nbsp;</font>
8893     * </pre>
8894     */
8895    public static final SColor AURORA_UMBER = new SColor(0x7F7F00, "Aurora Umber");
8896
8897    /**
8898     * This color constant "Aurora Ivy Green" has RGB code {@code 0x007F00}, red 0.0, green 0.49803922, blue 0.0, alpha 1, hue 0.33333325, saturation 1.0, and value 0.49803922.
8899     * It can be represented as a packed float with the constant {@code -0x1.00fep125F}.
8900     * <pre>
8901     * <font style='background-color: #007F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #007F00; color: #000000'>&nbsp;@&nbsp;</font>
8902     * <font style='background-color: #007F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #007F00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #007F00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #007F00'>&nbsp;@&nbsp;</font><font style='background-color: #007F00; color: #888888'>&nbsp;@&nbsp;</font>
8903     * <font style='background-color: #007F00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #007F00; color: #ffffff'>&nbsp;@&nbsp;</font>
8904     * </pre>
8905     */
8906    public static final SColor AURORA_IVY_GREEN = new SColor(0x007F00, "Aurora Ivy Green");
8907
8908    /**
8909     * This color constant "Aurora Jade" has RGB code {@code 0x3FBF3F}, red 0.24705882, green 0.7490196, blue 0.24705882, alpha 1, hue 0.33333337, saturation 0.6701571, and value 0.7490196.
8910     * It can be represented as a packed float with the constant {@code -0x1.7f7e7ep125F}.
8911     * <pre>
8912     * <font style='background-color: #3FBF3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3FBF3F; color: #000000'>&nbsp;@&nbsp;</font>
8913     * <font style='background-color: #3FBF3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3FBF3F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3FBF3F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3FBF3F'>&nbsp;@&nbsp;</font><font style='background-color: #3FBF3F; color: #888888'>&nbsp;@&nbsp;</font>
8914     * <font style='background-color: #3FBF3F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3FBF3F; color: #ffffff'>&nbsp;@&nbsp;</font>
8915     * </pre>
8916     */
8917    public static final SColor AURORA_JADE = new SColor(0x3FBF3F, "Aurora Jade");
8918
8919    /**
8920     * This color constant "Aurora Shamrock Green" has RGB code {@code 0x00FF00}, red 0.0, green 1.0, blue 0.0, alpha 1, hue 0.33333325, saturation 1.0, and value 1.0.
8921     * It can be represented as a packed float with the constant {@code -0x1.01fep125F}.
8922     * <pre>
8923     * <font style='background-color: #00FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FF00; color: #000000'>&nbsp;@&nbsp;</font>
8924     * <font style='background-color: #00FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00FF00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00FF00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00FF00'>&nbsp;@&nbsp;</font><font style='background-color: #00FF00; color: #888888'>&nbsp;@&nbsp;</font>
8925     * <font style='background-color: #00FF00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00FF00; color: #ffffff'>&nbsp;@&nbsp;</font>
8926     * </pre>
8927     */
8928    public static final SColor AURORA_SHAMROCK_GREEN = new SColor(0x00FF00, "Aurora Shamrock Green");
8929
8930    /**
8931     * This color constant "Aurora Celadon" has RGB code {@code 0xAFFFAF}, red 0.6862745, green 1.0, blue 0.6862745, alpha 1, hue 0.33333325, saturation 0.31372547, and value 1.0.
8932     * It can be represented as a packed float with the constant {@code -0x1.5fff5ep126F}.
8933     * <pre>
8934     * <font style='background-color: #AFFFAF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AFFFAF; color: #000000'>&nbsp;@&nbsp;</font>
8935     * <font style='background-color: #AFFFAF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AFFFAF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AFFFAF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AFFFAF'>&nbsp;@&nbsp;</font><font style='background-color: #AFFFAF; color: #888888'>&nbsp;@&nbsp;</font>
8936     * <font style='background-color: #AFFFAF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AFFFAF; color: #ffffff'>&nbsp;@&nbsp;</font>
8937     * </pre>
8938     */
8939    public static final SColor AURORA_CELADON = new SColor(0xAFFFAF, "Aurora Celadon");
8940
8941    /**
8942     * This color constant "Aurora Puce" has RGB code {@code 0xBCAFC0}, red 0.7372549, green 0.6862745, blue 0.7529412, alpha 1, hue 0.7941178, saturation 0.08854166, and value 0.7529412.
8943     * It can be represented as a packed float with the constant {@code -0x1.815f78p126F}.
8944     * <pre>
8945     * <font style='background-color: #BCAFC0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BCAFC0; color: #000000'>&nbsp;@&nbsp;</font>
8946     * <font style='background-color: #BCAFC0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BCAFC0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BCAFC0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BCAFC0'>&nbsp;@&nbsp;</font><font style='background-color: #BCAFC0; color: #888888'>&nbsp;@&nbsp;</font>
8947     * <font style='background-color: #BCAFC0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BCAFC0; color: #ffffff'>&nbsp;@&nbsp;</font>
8948     * </pre>
8949     */
8950    public static final SColor AURORA_PUCE = new SColor(0xBCAFC0, "Aurora Puce");
8951
8952    /**
8953     * This color constant "Aurora Beige" has RGB code {@code 0xCBAA89}, red 0.79607844, green 0.6666667, blue 0.5372549, alpha 1, hue 0.08333349, saturation 0.32512313, and value 0.79607844.
8954     * It can be represented as a packed float with the constant {@code -0x1.135596p126F}.
8955     * <pre>
8956     * <font style='background-color: #CBAA89;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CBAA89; color: #000000'>&nbsp;@&nbsp;</font>
8957     * <font style='background-color: #CBAA89;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #CBAA89'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #CBAA89'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #CBAA89'>&nbsp;@&nbsp;</font><font style='background-color: #CBAA89; color: #888888'>&nbsp;@&nbsp;</font>
8958     * <font style='background-color: #CBAA89;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #CBAA89; color: #ffffff'>&nbsp;@&nbsp;</font>
8959     * </pre>
8960     */
8961    public static final SColor AURORA_BEIGE = new SColor(0xCBAA89, "Aurora Beige");
8962
8963    /**
8964     * This color constant "Aurora Wet Stone" has RGB code {@code 0xA6A090}, red 0.6509804, green 0.627451, blue 0.5647059, alpha 1, hue 0.121212244, saturation 0.13253011, and value 0.6509804.
8965     * It can be represented as a packed float with the constant {@code -0x1.21414cp126F}.
8966     * <pre>
8967     * <font style='background-color: #A6A090;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A6A090; color: #000000'>&nbsp;@&nbsp;</font>
8968     * <font style='background-color: #A6A090;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A6A090'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A6A090'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A6A090'>&nbsp;@&nbsp;</font><font style='background-color: #A6A090; color: #888888'>&nbsp;@&nbsp;</font>
8969     * <font style='background-color: #A6A090;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A6A090; color: #ffffff'>&nbsp;@&nbsp;</font>
8970     * </pre>
8971     */
8972    public static final SColor AURORA_WET_STONE = new SColor(0xA6A090, "Aurora Wet Stone");
8973
8974    /**
8975     * This color constant "Aurora Slow Creek" has RGB code {@code 0x7E9494}, red 0.49411765, green 0.5803922, blue 0.5803922, alpha 1, hue 0.5, saturation 0.14864868, and value 0.5803922.
8976     * It can be represented as a packed float with the constant {@code -0x1.2928fcp126F}.
8977     * <pre>
8978     * <font style='background-color: #7E9494;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7E9494; color: #000000'>&nbsp;@&nbsp;</font>
8979     * <font style='background-color: #7E9494;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7E9494'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7E9494'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7E9494'>&nbsp;@&nbsp;</font><font style='background-color: #7E9494; color: #888888'>&nbsp;@&nbsp;</font>
8980     * <font style='background-color: #7E9494;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7E9494; color: #ffffff'>&nbsp;@&nbsp;</font>
8981     * </pre>
8982     */
8983    public static final SColor AURORA_SLOW_CREEK = new SColor(0x7E9494, "Aurora Slow Creek");
8984
8985    /**
8986     * This color constant "Aurora Slate Gray" has RGB code {@code 0x6E8287}, red 0.43137255, green 0.50980395, blue 0.5294118, alpha 1, hue 0.5333333, saturation 0.18518522, and value 0.5294118.
8987     * It can be represented as a packed float with the constant {@code -0x1.0f04dcp126F}.
8988     * <pre>
8989     * <font style='background-color: #6E8287;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6E8287; color: #000000'>&nbsp;@&nbsp;</font>
8990     * <font style='background-color: #6E8287;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6E8287'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6E8287'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6E8287'>&nbsp;@&nbsp;</font><font style='background-color: #6E8287; color: #888888'>&nbsp;@&nbsp;</font>
8991     * <font style='background-color: #6E8287;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6E8287; color: #ffffff'>&nbsp;@&nbsp;</font>
8992     * </pre>
8993     */
8994    public static final SColor AURORA_SLATE_GRAY = new SColor(0x6E8287, "Aurora Slate Gray");
8995
8996    /**
8997     * This color constant "Aurora Light Skin 1" has RGB code {@code 0x7E6E60}, red 0.49411765, green 0.43137255, blue 0.3764706, alpha 1, hue 0.07777786, saturation 0.23809522, and value 0.49411765.
8998     * It can be represented as a packed float with the constant {@code -0x1.c0dcfcp125F}.
8999     * <pre>
9000     * <font style='background-color: #7E6E60;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7E6E60; color: #000000'>&nbsp;@&nbsp;</font>
9001     * <font style='background-color: #7E6E60;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7E6E60'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7E6E60'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7E6E60'>&nbsp;@&nbsp;</font><font style='background-color: #7E6E60; color: #888888'>&nbsp;@&nbsp;</font>
9002     * <font style='background-color: #7E6E60;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7E6E60; color: #ffffff'>&nbsp;@&nbsp;</font>
9003     * </pre>
9004     */
9005    public static final SColor AURORA_LIGHT_SKIN_1 = new SColor(0x7E6E60, "Aurora Light Skin 1");
9006
9007    /**
9008     * This color constant "Aurora Light Skin 2" has RGB code {@code 0xA0695F}, red 0.627451, green 0.4117647, blue 0.37254903, alpha 1, hue 0.025640965, saturation 0.40625, and value 0.627451.
9009     * It can be represented as a packed float with the constant {@code -0x1.bed34p125F}.
9010     * <pre>
9011     * <font style='background-color: #A0695F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A0695F; color: #000000'>&nbsp;@&nbsp;</font>
9012     * <font style='background-color: #A0695F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A0695F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A0695F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A0695F'>&nbsp;@&nbsp;</font><font style='background-color: #A0695F; color: #888888'>&nbsp;@&nbsp;</font>
9013     * <font style='background-color: #A0695F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A0695F; color: #ffffff'>&nbsp;@&nbsp;</font>
9014     * </pre>
9015     */
9016    public static final SColor AURORA_LIGHT_SKIN_2 = new SColor(0xA0695F, "Aurora Light Skin 2");
9017
9018    /**
9019     * This color constant "Aurora Light Skin 3" has RGB code {@code 0xC07872}, red 0.7529412, green 0.47058824, blue 0.44705883, alpha 1, hue 0.012820482, saturation 0.40625, and value 0.7529412.
9020     * It can be represented as a packed float with the constant {@code -0x1.e4f18p125F}.
9021     * <pre>
9022     * <font style='background-color: #C07872;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C07872; color: #000000'>&nbsp;@&nbsp;</font>
9023     * <font style='background-color: #C07872;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C07872'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C07872'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C07872'>&nbsp;@&nbsp;</font><font style='background-color: #C07872; color: #888888'>&nbsp;@&nbsp;</font>
9024     * <font style='background-color: #C07872;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C07872; color: #ffffff'>&nbsp;@&nbsp;</font>
9025     * </pre>
9026     */
9027    public static final SColor AURORA_LIGHT_SKIN_3 = new SColor(0xC07872, "Aurora Light Skin 3");
9028
9029    /**
9030     * This color constant "Aurora Light Skin 4" has RGB code {@code 0xD08A74}, red 0.8156863, green 0.5411765, blue 0.45490196, alpha 1, hue 0.039855003, saturation 0.4423077, and value 0.8156863.
9031     * It can be represented as a packed float with the constant {@code -0x1.e915ap125F}.
9032     * <pre>
9033     * <font style='background-color: #D08A74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D08A74; color: #000000'>&nbsp;@&nbsp;</font>
9034     * <font style='background-color: #D08A74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D08A74'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D08A74'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D08A74'>&nbsp;@&nbsp;</font><font style='background-color: #D08A74; color: #888888'>&nbsp;@&nbsp;</font>
9035     * <font style='background-color: #D08A74;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D08A74; color: #ffffff'>&nbsp;@&nbsp;</font>
9036     * </pre>
9037     */
9038    public static final SColor AURORA_LIGHT_SKIN_4 = new SColor(0xD08A74, "Aurora Light Skin 4");
9039
9040    /**
9041     * This color constant "Aurora Light Skin 5" has RGB code {@code 0xE19B7D}, red 0.88235295, green 0.60784316, blue 0.49019608, alpha 1, hue 0.05000007, saturation 0.44444445, and value 0.88235295.
9042     * It can be represented as a packed float with the constant {@code -0x1.fb37c2p125F}.
9043     * <pre>
9044     * <font style='background-color: #E19B7D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E19B7D; color: #000000'>&nbsp;@&nbsp;</font>
9045     * <font style='background-color: #E19B7D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E19B7D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E19B7D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E19B7D'>&nbsp;@&nbsp;</font><font style='background-color: #E19B7D; color: #888888'>&nbsp;@&nbsp;</font>
9046     * <font style='background-color: #E19B7D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E19B7D; color: #ffffff'>&nbsp;@&nbsp;</font>
9047     * </pre>
9048     */
9049    public static final SColor AURORA_LIGHT_SKIN_5 = new SColor(0xE19B7D, "Aurora Light Skin 5");
9050
9051    /**
9052     * This color constant "Aurora Light Skin 6" has RGB code {@code 0xEBAA8C}, red 0.92156863, green 0.6666667, blue 0.54901963, alpha 1, hue 0.052631617, saturation 0.4042553, and value 0.92156863.
9053     * It can be represented as a packed float with the constant {@code -0x1.1955d6p126F}.
9054     * <pre>
9055     * <font style='background-color: #EBAA8C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EBAA8C; color: #000000'>&nbsp;@&nbsp;</font>
9056     * <font style='background-color: #EBAA8C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EBAA8C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EBAA8C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EBAA8C'>&nbsp;@&nbsp;</font><font style='background-color: #EBAA8C; color: #888888'>&nbsp;@&nbsp;</font>
9057     * <font style='background-color: #EBAA8C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EBAA8C; color: #ffffff'>&nbsp;@&nbsp;</font>
9058     * </pre>
9059     */
9060    public static final SColor AURORA_LIGHT_SKIN_6 = new SColor(0xEBAA8C, "Aurora Light Skin 6");
9061
9062    /**
9063     * This color constant "Aurora Light Skin 7" has RGB code {@code 0xF5B99B}, red 0.9607843, green 0.7254902, blue 0.60784316, alpha 1, hue 0.055555582, saturation 0.3673469, and value 0.9607843.
9064     * It can be represented as a packed float with the constant {@code -0x1.3773eap126F}.
9065     * <pre>
9066     * <font style='background-color: #F5B99B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F5B99B; color: #000000'>&nbsp;@&nbsp;</font>
9067     * <font style='background-color: #F5B99B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F5B99B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F5B99B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F5B99B'>&nbsp;@&nbsp;</font><font style='background-color: #F5B99B; color: #888888'>&nbsp;@&nbsp;</font>
9068     * <font style='background-color: #F5B99B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F5B99B; color: #ffffff'>&nbsp;@&nbsp;</font>
9069     * </pre>
9070     */
9071    public static final SColor AURORA_LIGHT_SKIN_7 = new SColor(0xF5B99B, "Aurora Light Skin 7");
9072
9073    /**
9074     * This color constant "Aurora Light Skin 8" has RGB code {@code 0xF6C8AF}, red 0.9647059, green 0.78431374, blue 0.6862745, alpha 1, hue 0.05868554, saturation 0.28861788, and value 0.9647059.
9075     * It can be represented as a packed float with the constant {@code -0x1.5f91ecp126F}.
9076     * <pre>
9077     * <font style='background-color: #F6C8AF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F6C8AF; color: #000000'>&nbsp;@&nbsp;</font>
9078     * <font style='background-color: #F6C8AF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F6C8AF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F6C8AF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F6C8AF'>&nbsp;@&nbsp;</font><font style='background-color: #F6C8AF; color: #888888'>&nbsp;@&nbsp;</font>
9079     * <font style='background-color: #F6C8AF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F6C8AF; color: #ffffff'>&nbsp;@&nbsp;</font>
9080     * </pre>
9081     */
9082    public static final SColor AURORA_LIGHT_SKIN_8 = new SColor(0xF6C8AF, "Aurora Light Skin 8");
9083
9084    /**
9085     * This color constant "Aurora Light Skin 9" has RGB code {@code 0xF5E1D2}, red 0.9607843, green 0.88235295, blue 0.8235294, alpha 1, hue 0.07142866, saturation 0.14285713, and value 0.9607843.
9086     * It can be represented as a packed float with the constant {@code -0x1.a5c3eap126F}.
9087     * <pre>
9088     * <font style='background-color: #F5E1D2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F5E1D2; color: #000000'>&nbsp;@&nbsp;</font>
9089     * <font style='background-color: #F5E1D2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F5E1D2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F5E1D2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F5E1D2'>&nbsp;@&nbsp;</font><font style='background-color: #F5E1D2; color: #888888'>&nbsp;@&nbsp;</font>
9090     * <font style='background-color: #F5E1D2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F5E1D2; color: #ffffff'>&nbsp;@&nbsp;</font>
9091     * </pre>
9092     */
9093    public static final SColor AURORA_LIGHT_SKIN_9 = new SColor(0xF5E1D2, "Aurora Light Skin 9");
9094
9095    /**
9096     * This color constant "Aurora Dark Skin 1" has RGB code {@code 0x573B3B}, red 0.34117648, green 0.23137255, blue 0.23137255, alpha 1, hue 0.0, saturation 0.3218391, and value 0.34117648.
9097     * It can be represented as a packed float with the constant {@code -0x1.7676aep125F}.
9098     * <pre>
9099     * <font style='background-color: #573B3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #573B3B; color: #000000'>&nbsp;@&nbsp;</font>
9100     * <font style='background-color: #573B3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #573B3B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #573B3B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #573B3B'>&nbsp;@&nbsp;</font><font style='background-color: #573B3B; color: #888888'>&nbsp;@&nbsp;</font>
9101     * <font style='background-color: #573B3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #573B3B; color: #ffffff'>&nbsp;@&nbsp;</font>
9102     * </pre>
9103     */
9104    public static final SColor AURORA_DARK_SKIN_1 = new SColor(0x573B3B, "Aurora Dark Skin 1");
9105
9106    /**
9107     * This color constant "Aurora Dark Skin 2" has RGB code {@code 0x73413C}, red 0.4509804, green 0.25490198, blue 0.23529412, alpha 1, hue 0.01515162, saturation 0.47826087, and value 0.4509804.
9108     * It can be represented as a packed float with the constant {@code -0x1.7882e6p125F}.
9109     * <pre>
9110     * <font style='background-color: #73413C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73413C; color: #000000'>&nbsp;@&nbsp;</font>
9111     * <font style='background-color: #73413C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #73413C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #73413C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #73413C'>&nbsp;@&nbsp;</font><font style='background-color: #73413C; color: #888888'>&nbsp;@&nbsp;</font>
9112     * <font style='background-color: #73413C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73413C; color: #ffffff'>&nbsp;@&nbsp;</font>
9113     * </pre>
9114     */
9115    public static final SColor AURORA_DARK_SKIN_2 = new SColor(0x73413C, "Aurora Dark Skin 2");
9116
9117    /**
9118     * This color constant "Aurora Dark Skin 3" has RGB code {@code 0x8E5555}, red 0.5568628, green 0.33333334, blue 0.33333334, alpha 1, hue 0.0, saturation 0.40140846, and value 0.5568628.
9119     * It can be represented as a packed float with the constant {@code -0x1.aaab1cp125F}.
9120     * <pre>
9121     * <font style='background-color: #8E5555;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8E5555; color: #000000'>&nbsp;@&nbsp;</font>
9122     * <font style='background-color: #8E5555;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8E5555'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8E5555'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8E5555'>&nbsp;@&nbsp;</font><font style='background-color: #8E5555; color: #888888'>&nbsp;@&nbsp;</font>
9123     * <font style='background-color: #8E5555;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8E5555; color: #ffffff'>&nbsp;@&nbsp;</font>
9124     * </pre>
9125     */
9126    public static final SColor AURORA_DARK_SKIN_3 = new SColor(0x8E5555, "Aurora Dark Skin 3");
9127
9128    /**
9129     * This color constant "Aurora Pink Skin 1" has RGB code {@code 0xAB7373}, red 0.67058825, green 0.4509804, blue 0.4509804, alpha 1, hue 0.0, saturation 0.32748538, and value 0.67058825.
9130     * It can be represented as a packed float with the constant {@code -0x1.e6e756p125F}.
9131     * <pre>
9132     * <font style='background-color: #AB7373;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB7373; color: #000000'>&nbsp;@&nbsp;</font>
9133     * <font style='background-color: #AB7373;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AB7373'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AB7373'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AB7373'>&nbsp;@&nbsp;</font><font style='background-color: #AB7373; color: #888888'>&nbsp;@&nbsp;</font>
9134     * <font style='background-color: #AB7373;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB7373; color: #ffffff'>&nbsp;@&nbsp;</font>
9135     * </pre>
9136     */
9137    public static final SColor AURORA_PINK_SKIN_1 = new SColor(0xAB7373, "Aurora Pink Skin 1");
9138
9139    /**
9140     * This color constant "Aurora Pink Skin 2" has RGB code {@code 0xC78F8F}, red 0.78039217, green 0.56078434, blue 0.56078434, alpha 1, hue 0.0, saturation 0.28140703, and value 0.78039217.
9141     * It can be represented as a packed float with the constant {@code -0x1.1f1f8ep126F}.
9142     * <pre>
9143     * <font style='background-color: #C78F8F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C78F8F; color: #000000'>&nbsp;@&nbsp;</font>
9144     * <font style='background-color: #C78F8F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C78F8F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C78F8F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C78F8F'>&nbsp;@&nbsp;</font><font style='background-color: #C78F8F; color: #888888'>&nbsp;@&nbsp;</font>
9145     * <font style='background-color: #C78F8F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C78F8F; color: #ffffff'>&nbsp;@&nbsp;</font>
9146     * </pre>
9147     */
9148    public static final SColor AURORA_PINK_SKIN_2 = new SColor(0xC78F8F, "Aurora Pink Skin 2");
9149
9150    /**
9151     * This color constant "Aurora Pink Skin 3" has RGB code {@code 0xE3ABAB}, red 0.8901961, green 0.67058825, blue 0.67058825, alpha 1, hue 0.0, saturation 0.24669603, and value 0.8901961.
9152     * It can be represented as a packed float with the constant {@code -0x1.5757c6p126F}.
9153     * <pre>
9154     * <font style='background-color: #E3ABAB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E3ABAB; color: #000000'>&nbsp;@&nbsp;</font>
9155     * <font style='background-color: #E3ABAB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E3ABAB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E3ABAB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E3ABAB'>&nbsp;@&nbsp;</font><font style='background-color: #E3ABAB; color: #888888'>&nbsp;@&nbsp;</font>
9156     * <font style='background-color: #E3ABAB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E3ABAB; color: #ffffff'>&nbsp;@&nbsp;</font>
9157     * </pre>
9158     */
9159    public static final SColor AURORA_PINK_SKIN_3 = new SColor(0xE3ABAB, "Aurora Pink Skin 3");
9160
9161    /**
9162     * This color constant "Aurora Pink Skin 4" has RGB code {@code 0xF8D2DA}, red 0.972549, green 0.8235294, blue 0.85490197, alpha 1, hue 0.96491224, saturation 0.1532258, and value 0.972549.
9163     * It can be represented as a packed float with the constant {@code -0x1.b5a5fp126F}.
9164     * <pre>
9165     * <font style='background-color: #F8D2DA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F8D2DA; color: #000000'>&nbsp;@&nbsp;</font>
9166     * <font style='background-color: #F8D2DA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F8D2DA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F8D2DA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F8D2DA'>&nbsp;@&nbsp;</font><font style='background-color: #F8D2DA; color: #888888'>&nbsp;@&nbsp;</font>
9167     * <font style='background-color: #F8D2DA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F8D2DA; color: #ffffff'>&nbsp;@&nbsp;</font>
9168     * </pre>
9169     */
9170    public static final SColor AURORA_PINK_SKIN_4 = new SColor(0xF8D2DA, "Aurora Pink Skin 4");
9171
9172    /**
9173     * This color constant "Aurora Bronze Skin 4" has RGB code {@code 0xE3C7AB}, red 0.8901961, green 0.78039217, blue 0.67058825, alpha 1, hue 0.08333349, saturation 0.24669603, and value 0.8901961.
9174     * It can be represented as a packed float with the constant {@code -0x1.578fc6p126F}.
9175     * <pre>
9176     * <font style='background-color: #E3C7AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E3C7AB; color: #000000'>&nbsp;@&nbsp;</font>
9177     * <font style='background-color: #E3C7AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E3C7AB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E3C7AB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E3C7AB'>&nbsp;@&nbsp;</font><font style='background-color: #E3C7AB; color: #888888'>&nbsp;@&nbsp;</font>
9178     * <font style='background-color: #E3C7AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E3C7AB; color: #ffffff'>&nbsp;@&nbsp;</font>
9179     * </pre>
9180     */
9181    public static final SColor AURORA_BRONZE_SKIN_4 = new SColor(0xE3C7AB, "Aurora Bronze Skin 4");
9182
9183    /**
9184     * This color constant "Aurora Bronze Skin 3" has RGB code {@code 0xC49E73}, red 0.76862746, green 0.61960787, blue 0.4509804, alpha 1, hue 0.08847737, saturation 0.41326532, and value 0.76862746.
9185     * It can be represented as a packed float with the constant {@code -0x1.e73d88p125F}.
9186     * <pre>
9187     * <font style='background-color: #C49E73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C49E73; color: #000000'>&nbsp;@&nbsp;</font>
9188     * <font style='background-color: #C49E73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C49E73'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C49E73'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C49E73'>&nbsp;@&nbsp;</font><font style='background-color: #C49E73; color: #888888'>&nbsp;@&nbsp;</font>
9189     * <font style='background-color: #C49E73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C49E73; color: #ffffff'>&nbsp;@&nbsp;</font>
9190     * </pre>
9191     */
9192    public static final SColor AURORA_BRONZE_SKIN_3 = new SColor(0xC49E73, "Aurora Bronze Skin 3");
9193
9194    /**
9195     * This color constant "Aurora Bronze Skin 2" has RGB code {@code 0x8F7357}, red 0.56078434, green 0.4509804, blue 0.34117648, alpha 1, hue 0.083333254, saturation 0.39160842, and value 0.56078434.
9196     * It can be represented as a packed float with the constant {@code -0x1.aee71ep125F}.
9197     * <pre>
9198     * <font style='background-color: #8F7357;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F7357; color: #000000'>&nbsp;@&nbsp;</font>
9199     * <font style='background-color: #8F7357;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8F7357'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8F7357'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8F7357'>&nbsp;@&nbsp;</font><font style='background-color: #8F7357; color: #888888'>&nbsp;@&nbsp;</font>
9200     * <font style='background-color: #8F7357;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F7357; color: #ffffff'>&nbsp;@&nbsp;</font>
9201     * </pre>
9202     */
9203    public static final SColor AURORA_BRONZE_SKIN_2 = new SColor(0x8F7357, "Aurora Bronze Skin 2");
9204
9205    /**
9206     * This color constant "Aurora Bronze Skin 1" has RGB code {@code 0x73573B}, red 0.4509804, green 0.34117648, blue 0.23137255, alpha 1, hue 0.08333349, saturation 0.48695654, and value 0.4509804.
9207     * It can be represented as a packed float with the constant {@code -0x1.76aee6p125F}.
9208     * <pre>
9209     * <font style='background-color: #73573B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73573B; color: #000000'>&nbsp;@&nbsp;</font>
9210     * <font style='background-color: #73573B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #73573B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #73573B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #73573B'>&nbsp;@&nbsp;</font><font style='background-color: #73573B; color: #888888'>&nbsp;@&nbsp;</font>
9211     * <font style='background-color: #73573B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73573B; color: #ffffff'>&nbsp;@&nbsp;</font>
9212     * </pre>
9213     */
9214    public static final SColor AURORA_BRONZE_SKIN_1 = new SColor(0x73573B, "Aurora Bronze Skin 1");
9215
9216    /**
9217     * This color constant "Aurora Taupe" has RGB code {@code 0x3B2D1F}, red 0.23137255, green 0.1764706, blue 0.12156863, alpha 1, hue 0.08333349, saturation 0.47457626, and value 0.23137255.
9218     * It can be represented as a packed float with the constant {@code -0x1.3e5a76p125F}.
9219     * <pre>
9220     * <font style='background-color: #3B2D1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B2D1F; color: #000000'>&nbsp;@&nbsp;</font>
9221     * <font style='background-color: #3B2D1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3B2D1F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3B2D1F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3B2D1F'>&nbsp;@&nbsp;</font><font style='background-color: #3B2D1F; color: #888888'>&nbsp;@&nbsp;</font>
9222     * <font style='background-color: #3B2D1F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B2D1F; color: #ffffff'>&nbsp;@&nbsp;</font>
9223     * </pre>
9224     */
9225    public static final SColor AURORA_TAUPE = new SColor(0x3B2D1F, "Aurora Taupe");
9226
9227    /**
9228     * This color constant "Aurora Drab Green" has RGB code {@code 0x414123}, red 0.25490198, green 0.25490198, blue 0.13725491, alpha 1, hue 0.16666663, saturation 0.46153846, and value 0.25490198.
9229     * It can be represented as a packed float with the constant {@code -0x1.468282p125F}.
9230     * <pre>
9231     * <font style='background-color: #414123;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #414123; color: #000000'>&nbsp;@&nbsp;</font>
9232     * <font style='background-color: #414123;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #414123'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #414123'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #414123'>&nbsp;@&nbsp;</font><font style='background-color: #414123; color: #888888'>&nbsp;@&nbsp;</font>
9233     * <font style='background-color: #414123;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #414123; color: #ffffff'>&nbsp;@&nbsp;</font>
9234     * </pre>
9235     */
9236    public static final SColor AURORA_DRAB_GREEN = new SColor(0x414123, "Aurora Drab Green");
9237
9238    /**
9239     * This color constant "Aurora Lizard Scales" has RGB code {@code 0x73733B}, red 0.4509804, green 0.4509804, blue 0.23137255, alpha 1, hue 0.16666675, saturation 0.48695654, and value 0.4509804.
9240     * It can be represented as a packed float with the constant {@code -0x1.76e6e6p125F}.
9241     * <pre>
9242     * <font style='background-color: #73733B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73733B; color: #000000'>&nbsp;@&nbsp;</font>
9243     * <font style='background-color: #73733B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #73733B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #73733B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #73733B'>&nbsp;@&nbsp;</font><font style='background-color: #73733B; color: #888888'>&nbsp;@&nbsp;</font>
9244     * <font style='background-color: #73733B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73733B; color: #ffffff'>&nbsp;@&nbsp;</font>
9245     * </pre>
9246     */
9247    public static final SColor AURORA_LIZARD_SCALES = new SColor(0x73733B, "Aurora Lizard Scales");
9248
9249    /**
9250     * This color constant "Aurora Cricket" has RGB code {@code 0x8F8F57}, red 0.56078434, green 0.56078434, blue 0.34117648, alpha 1, hue 0.16666663, saturation 0.39160842, and value 0.56078434.
9251     * It can be represented as a packed float with the constant {@code -0x1.af1f1ep125F}.
9252     * <pre>
9253     * <font style='background-color: #8F8F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F8F57; color: #000000'>&nbsp;@&nbsp;</font>
9254     * <font style='background-color: #8F8F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8F8F57'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8F8F57'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8F8F57'>&nbsp;@&nbsp;</font><font style='background-color: #8F8F57; color: #888888'>&nbsp;@&nbsp;</font>
9255     * <font style='background-color: #8F8F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F8F57; color: #ffffff'>&nbsp;@&nbsp;</font>
9256     * </pre>
9257     */
9258    public static final SColor AURORA_CRICKET = new SColor(0x8F8F57, "Aurora Cricket");
9259
9260    /**
9261     * This color constant "Aurora Olive Oil" has RGB code {@code 0xA2A255}, red 0.63529414, green 0.63529414, blue 0.33333334, alpha 1, hue 0.16666663, saturation 0.47530866, and value 0.63529414.
9262     * It can be represented as a packed float with the constant {@code -0x1.ab4544p125F}.
9263     * <pre>
9264     * <font style='background-color: #A2A255;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A2A255; color: #000000'>&nbsp;@&nbsp;</font>
9265     * <font style='background-color: #A2A255;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A2A255'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A2A255'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A2A255'>&nbsp;@&nbsp;</font><font style='background-color: #A2A255; color: #888888'>&nbsp;@&nbsp;</font>
9266     * <font style='background-color: #A2A255;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A2A255; color: #ffffff'>&nbsp;@&nbsp;</font>
9267     * </pre>
9268     */
9269    public static final SColor AURORA_OLIVE_OIL = new SColor(0xA2A255, "Aurora Olive Oil");
9270
9271    /**
9272     * This color constant "Aurora Dun" has RGB code {@code 0xB5B572}, red 0.70980394, green 0.70980394, blue 0.44705883, alpha 1, hue 0.16666663, saturation 0.37016577, and value 0.70980394.
9273     * It can be represented as a packed float with the constant {@code -0x1.e56b6ap125F}.
9274     * <pre>
9275     * <font style='background-color: #B5B572;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B5B572; color: #000000'>&nbsp;@&nbsp;</font>
9276     * <font style='background-color: #B5B572;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B5B572'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B5B572'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B5B572'>&nbsp;@&nbsp;</font><font style='background-color: #B5B572; color: #888888'>&nbsp;@&nbsp;</font>
9277     * <font style='background-color: #B5B572;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B5B572; color: #ffffff'>&nbsp;@&nbsp;</font>
9278     * </pre>
9279     */
9280    public static final SColor AURORA_DUN = new SColor(0xB5B572, "Aurora Dun");
9281
9282    /**
9283     * This color constant "Aurora Corn Silk" has RGB code {@code 0xC7C78F}, red 0.78039217, green 0.78039217, blue 0.56078434, alpha 1, hue 0.16666675, saturation 0.28140703, and value 0.78039217.
9284     * It can be represented as a packed float with the constant {@code -0x1.1f8f8ep126F}.
9285     * <pre>
9286     * <font style='background-color: #C7C78F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C7C78F; color: #000000'>&nbsp;@&nbsp;</font>
9287     * <font style='background-color: #C7C78F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C7C78F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C7C78F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C7C78F'>&nbsp;@&nbsp;</font><font style='background-color: #C7C78F; color: #888888'>&nbsp;@&nbsp;</font>
9288     * <font style='background-color: #C7C78F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C7C78F; color: #ffffff'>&nbsp;@&nbsp;</font>
9289     * </pre>
9290     */
9291    public static final SColor AURORA_CORN_SILK = new SColor(0xC7C78F, "Aurora Corn Silk");
9292
9293    /**
9294     * This color constant "Aurora Tan" has RGB code {@code 0xDADAAB}, red 0.85490197, green 0.85490197, blue 0.67058825, alpha 1, hue 0.16666675, saturation 0.21559632, and value 0.85490197.
9295     * It can be represented as a packed float with the constant {@code -0x1.57b5b4p126F}.
9296     * <pre>
9297     * <font style='background-color: #DADAAB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DADAAB; color: #000000'>&nbsp;@&nbsp;</font>
9298     * <font style='background-color: #DADAAB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DADAAB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DADAAB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DADAAB'>&nbsp;@&nbsp;</font><font style='background-color: #DADAAB; color: #888888'>&nbsp;@&nbsp;</font>
9299     * <font style='background-color: #DADAAB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DADAAB; color: #ffffff'>&nbsp;@&nbsp;</font>
9300     * </pre>
9301     */
9302    public static final SColor AURORA_TAN = new SColor(0xDADAAB, "Aurora Tan");
9303
9304    /**
9305     * This color constant "Aurora Straw" has RGB code {@code 0xEDEDC7}, red 0.92941177, green 0.92941177, blue 0.78039217, alpha 1, hue 0.16666675, saturation 0.16033754, and value 0.92941177.
9306     * It can be represented as a packed float with the constant {@code -0x1.8fdbdap126F}.
9307     * <pre>
9308     * <font style='background-color: #EDEDC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EDEDC7; color: #000000'>&nbsp;@&nbsp;</font>
9309     * <font style='background-color: #EDEDC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EDEDC7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EDEDC7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EDEDC7'>&nbsp;@&nbsp;</font><font style='background-color: #EDEDC7; color: #888888'>&nbsp;@&nbsp;</font>
9310     * <font style='background-color: #EDEDC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EDEDC7; color: #ffffff'>&nbsp;@&nbsp;</font>
9311     * </pre>
9312     */
9313    public static final SColor AURORA_STRAW = new SColor(0xEDEDC7, "Aurora Straw");
9314
9315    /**
9316     * This color constant "Aurora Honeydew" has RGB code {@code 0xC7E3AB}, red 0.78039217, green 0.8901961, blue 0.67058825, alpha 1, hue 0.25, saturation 0.24669603, and value 0.8901961.
9317     * It can be represented as a packed float with the constant {@code -0x1.57c78ep126F}.
9318     * <pre>
9319     * <font style='background-color: #C7E3AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C7E3AB; color: #000000'>&nbsp;@&nbsp;</font>
9320     * <font style='background-color: #C7E3AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C7E3AB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C7E3AB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C7E3AB'>&nbsp;@&nbsp;</font><font style='background-color: #C7E3AB; color: #888888'>&nbsp;@&nbsp;</font>
9321     * <font style='background-color: #C7E3AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C7E3AB; color: #ffffff'>&nbsp;@&nbsp;</font>
9322     * </pre>
9323     */
9324    public static final SColor AURORA_HONEYDEW = new SColor(0xC7E3AB, "Aurora Honeydew");
9325
9326    /**
9327     * This color constant "Aurora Tarnish" has RGB code {@code 0xABC78F}, red 0.67058825, green 0.78039217, blue 0.56078434, alpha 1, hue 0.25, saturation 0.28140703, and value 0.78039217.
9328     * It can be represented as a packed float with the constant {@code -0x1.1f8f56p126F}.
9329     * <pre>
9330     * <font style='background-color: #ABC78F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABC78F; color: #000000'>&nbsp;@&nbsp;</font>
9331     * <font style='background-color: #ABC78F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ABC78F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ABC78F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ABC78F'>&nbsp;@&nbsp;</font><font style='background-color: #ABC78F; color: #888888'>&nbsp;@&nbsp;</font>
9332     * <font style='background-color: #ABC78F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABC78F; color: #ffffff'>&nbsp;@&nbsp;</font>
9333     * </pre>
9334     */
9335    public static final SColor AURORA_TARNISH = new SColor(0xABC78F, "Aurora Tarnish");
9336
9337    /**
9338     * This color constant "Aurora Pea Soup" has RGB code {@code 0x8EBE55}, red 0.5568628, green 0.74509805, blue 0.33333334, alpha 1, hue 0.24285722, saturation 0.55263156, and value 0.74509805.
9339     * It can be represented as a packed float with the constant {@code -0x1.ab7d1cp125F}.
9340     * <pre>
9341     * <font style='background-color: #8EBE55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8EBE55; color: #000000'>&nbsp;@&nbsp;</font>
9342     * <font style='background-color: #8EBE55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8EBE55'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8EBE55'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8EBE55'>&nbsp;@&nbsp;</font><font style='background-color: #8EBE55; color: #888888'>&nbsp;@&nbsp;</font>
9343     * <font style='background-color: #8EBE55;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8EBE55; color: #ffffff'>&nbsp;@&nbsp;</font>
9344     * </pre>
9345     */
9346    public static final SColor AURORA_PEA_SOUP = new SColor(0x8EBE55, "Aurora Pea Soup");
9347
9348    /**
9349     * This color constant "Aurora Marsh" has RGB code {@code 0x738F57}, red 0.4509804, green 0.56078434, blue 0.34117648, alpha 1, hue 0.25000012, saturation 0.39160842, and value 0.56078434.
9350     * It can be represented as a packed float with the constant {@code -0x1.af1ee6p125F}.
9351     * <pre>
9352     * <font style='background-color: #738F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #738F57; color: #000000'>&nbsp;@&nbsp;</font>
9353     * <font style='background-color: #738F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #738F57'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #738F57'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #738F57'>&nbsp;@&nbsp;</font><font style='background-color: #738F57; color: #888888'>&nbsp;@&nbsp;</font>
9354     * <font style='background-color: #738F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #738F57; color: #ffffff'>&nbsp;@&nbsp;</font>
9355     * </pre>
9356     */
9357    public static final SColor AURORA_MARSH = new SColor(0x738F57, "Aurora Marsh");
9358
9359    /**
9360     * This color constant "Aurora Asparagus" has RGB code {@code 0x587D3E}, red 0.34509805, green 0.49019608, blue 0.24313726, alpha 1, hue 0.2645502, saturation 0.504, and value 0.49019608.
9361     * It can be represented as a packed float with the constant {@code -0x1.7cfabp125F}.
9362     * <pre>
9363     * <font style='background-color: #587D3E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #587D3E; color: #000000'>&nbsp;@&nbsp;</font>
9364     * <font style='background-color: #587D3E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #587D3E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #587D3E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #587D3E'>&nbsp;@&nbsp;</font><font style='background-color: #587D3E; color: #888888'>&nbsp;@&nbsp;</font>
9365     * <font style='background-color: #587D3E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #587D3E; color: #ffffff'>&nbsp;@&nbsp;</font>
9366     * </pre>
9367     */
9368    public static final SColor AURORA_ASPARAGUS = new SColor(0x587D3E, "Aurora Asparagus");
9369
9370    /**
9371     * This color constant "Aurora Peat Bog" has RGB code {@code 0x465032}, red 0.27450982, green 0.3137255, blue 0.19607843, alpha 1, hue 0.22222221, saturation 0.375, and value 0.3137255.
9372     * It can be represented as a packed float with the constant {@code -0x1.64a08cp125F}.
9373     * <pre>
9374     * <font style='background-color: #465032;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #465032; color: #000000'>&nbsp;@&nbsp;</font>
9375     * <font style='background-color: #465032;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #465032'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #465032'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #465032'>&nbsp;@&nbsp;</font><font style='background-color: #465032; color: #888888'>&nbsp;@&nbsp;</font>
9376     * <font style='background-color: #465032;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #465032; color: #ffffff'>&nbsp;@&nbsp;</font>
9377     * </pre>
9378     */
9379    public static final SColor AURORA_PEAT_BOG = new SColor(0x465032, "Aurora Peat Bog");
9380
9381    /**
9382     * This color constant "Aurora Deep Jungle" has RGB code {@code 0x191E0F}, red 0.09803922, green 0.11764706, blue 0.05882353, alpha 1, hue 0.22222209, saturation 0.5, and value 0.11764706.
9383     * It can be represented as a packed float with the constant {@code -0x1.1e3c32p125F}.
9384     * <pre>
9385     * <font style='background-color: #191E0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #191E0F; color: #000000'>&nbsp;@&nbsp;</font>
9386     * <font style='background-color: #191E0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #191E0F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #191E0F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #191E0F'>&nbsp;@&nbsp;</font><font style='background-color: #191E0F; color: #888888'>&nbsp;@&nbsp;</font>
9387     * <font style='background-color: #191E0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #191E0F; color: #ffffff'>&nbsp;@&nbsp;</font>
9388     * </pre>
9389     */
9390    public static final SColor AURORA_DEEP_JUNGLE = new SColor(0x191E0F, "Aurora Deep Jungle");
9391
9392    /**
9393     * This color constant "Aurora Pine Green" has RGB code {@code 0x235037}, red 0.13725491, green 0.3137255, blue 0.21568628, alpha 1, hue 0.4074074, saturation 0.5625, and value 0.3137255.
9394     * It can be represented as a packed float with the constant {@code -0x1.6ea046p125F}.
9395     * <pre>
9396     * <font style='background-color: #235037;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #235037; color: #000000'>&nbsp;@&nbsp;</font>
9397     * <font style='background-color: #235037;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #235037'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #235037'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #235037'>&nbsp;@&nbsp;</font><font style='background-color: #235037; color: #888888'>&nbsp;@&nbsp;</font>
9398     * <font style='background-color: #235037;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #235037; color: #ffffff'>&nbsp;@&nbsp;</font>
9399     * </pre>
9400     */
9401    public static final SColor AURORA_PINE_GREEN = new SColor(0x235037, "Aurora Pine Green");
9402
9403    /**
9404     * This color constant "Aurora Olive Green" has RGB code {@code 0x3B573B}, red 0.23137255, green 0.34117648, blue 0.23137255, alpha 1, hue 0.33333337, saturation 0.3218391, and value 0.34117648.
9405     * It can be represented as a packed float with the constant {@code -0x1.76ae76p125F}.
9406     * <pre>
9407     * <font style='background-color: #3B573B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B573B; color: #000000'>&nbsp;@&nbsp;</font>
9408     * <font style='background-color: #3B573B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3B573B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3B573B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3B573B'>&nbsp;@&nbsp;</font><font style='background-color: #3B573B; color: #888888'>&nbsp;@&nbsp;</font>
9409     * <font style='background-color: #3B573B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B573B; color: #ffffff'>&nbsp;@&nbsp;</font>
9410     * </pre>
9411     */
9412    public static final SColor AURORA_OLIVE_GREEN = new SColor(0x3B573B, "Aurora Olive Green");
9413
9414    /**
9415     * This color constant "Aurora Gray Green" has RGB code {@code 0x506450}, red 0.3137255, green 0.39215687, blue 0.3137255, alpha 1, hue 0.33333325, saturation 0.19999999, and value 0.39215687.
9416     * It can be represented as a packed float with the constant {@code -0x1.a0c8ap125F}.
9417     * <pre>
9418     * <font style='background-color: #506450;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #506450; color: #000000'>&nbsp;@&nbsp;</font>
9419     * <font style='background-color: #506450;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #506450'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #506450'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #506450'>&nbsp;@&nbsp;</font><font style='background-color: #506450; color: #888888'>&nbsp;@&nbsp;</font>
9420     * <font style='background-color: #506450;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #506450; color: #ffffff'>&nbsp;@&nbsp;</font>
9421     * </pre>
9422     */
9423    public static final SColor AURORA_GRAY_GREEN = new SColor(0x506450, "Aurora Gray Green");
9424
9425    /**
9426     * This color constant "Aurora Maidenhair Fern" has RGB code {@code 0x3B7349}, red 0.23137255, green 0.4509804, blue 0.28627452, alpha 1, hue 0.375, saturation 0.48695654, and value 0.4509804.
9427     * It can be represented as a packed float with the constant {@code -0x1.92e676p125F}.
9428     * <pre>
9429     * <font style='background-color: #3B7349;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B7349; color: #000000'>&nbsp;@&nbsp;</font>
9430     * <font style='background-color: #3B7349;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3B7349'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3B7349'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3B7349'>&nbsp;@&nbsp;</font><font style='background-color: #3B7349; color: #888888'>&nbsp;@&nbsp;</font>
9431     * <font style='background-color: #3B7349;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B7349; color: #ffffff'>&nbsp;@&nbsp;</font>
9432     * </pre>
9433     */
9434    public static final SColor AURORA_MAIDENHAIR_FERN = new SColor(0x3B7349, "Aurora Maidenhair Fern");
9435
9436    /**
9437     * This color constant "Aurora Kelly Green" has RGB code {@code 0x578F57}, red 0.34117648, green 0.56078434, blue 0.34117648, alpha 1, hue 0.33333337, saturation 0.39160842, and value 0.56078434.
9438     * It can be represented as a packed float with the constant {@code -0x1.af1eaep125F}.
9439     * <pre>
9440     * <font style='background-color: #578F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #578F57; color: #000000'>&nbsp;@&nbsp;</font>
9441     * <font style='background-color: #578F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #578F57'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #578F57'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #578F57'>&nbsp;@&nbsp;</font><font style='background-color: #578F57; color: #888888'>&nbsp;@&nbsp;</font>
9442     * <font style='background-color: #578F57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #578F57; color: #ffffff'>&nbsp;@&nbsp;</font>
9443     * </pre>
9444     */
9445    public static final SColor AURORA_KELLY_GREEN = new SColor(0x578F57, "Aurora Kelly Green");
9446
9447    /**
9448     * This color constant "Aurora Dusty Green" has RGB code {@code 0x73AB73}, red 0.4509804, green 0.67058825, blue 0.4509804, alpha 1, hue 0.33333337, saturation 0.32748538, and value 0.67058825.
9449     * It can be represented as a packed float with the constant {@code -0x1.e756e6p125F}.
9450     * <pre>
9451     * <font style='background-color: #73AB73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73AB73; color: #000000'>&nbsp;@&nbsp;</font>
9452     * <font style='background-color: #73AB73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #73AB73'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #73AB73'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #73AB73'>&nbsp;@&nbsp;</font><font style='background-color: #73AB73; color: #888888'>&nbsp;@&nbsp;</font>
9453     * <font style='background-color: #73AB73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73AB73; color: #ffffff'>&nbsp;@&nbsp;</font>
9454     * </pre>
9455     */
9456    public static final SColor AURORA_DUSTY_GREEN = new SColor(0x73AB73, "Aurora Dusty Green");
9457
9458    /**
9459     * This color constant "Aurora Garter Snake" has RGB code {@code 0x64C082}, red 0.39215687, green 0.7529412, blue 0.50980395, alpha 1, hue 0.38768125, saturation 0.47916666, and value 0.7529412.
9460     * It can be represented as a packed float with the constant {@code -0x1.0580c8p126F}.
9461     * <pre>
9462     * <font style='background-color: #64C082;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #64C082; color: #000000'>&nbsp;@&nbsp;</font>
9463     * <font style='background-color: #64C082;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #64C082'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #64C082'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #64C082'>&nbsp;@&nbsp;</font><font style='background-color: #64C082; color: #888888'>&nbsp;@&nbsp;</font>
9464     * <font style='background-color: #64C082;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #64C082; color: #ffffff'>&nbsp;@&nbsp;</font>
9465     * </pre>
9466     */
9467    public static final SColor AURORA_GARTER_SNAKE = new SColor(0x64C082, "Aurora Garter Snake");
9468
9469    /**
9470     * This color constant "Aurora Silver Green" has RGB code {@code 0x8FC78F}, red 0.56078434, green 0.78039217, blue 0.56078434, alpha 1, hue 0.33333325, saturation 0.28140703, and value 0.78039217.
9471     * It can be represented as a packed float with the constant {@code -0x1.1f8f1ep126F}.
9472     * <pre>
9473     * <font style='background-color: #8FC78F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8FC78F; color: #000000'>&nbsp;@&nbsp;</font>
9474     * <font style='background-color: #8FC78F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8FC78F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8FC78F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8FC78F'>&nbsp;@&nbsp;</font><font style='background-color: #8FC78F; color: #888888'>&nbsp;@&nbsp;</font>
9475     * <font style='background-color: #8FC78F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8FC78F; color: #ffffff'>&nbsp;@&nbsp;</font>
9476     * </pre>
9477     */
9478    public static final SColor AURORA_SILVER_GREEN = new SColor(0x8FC78F, "Aurora Silver Green");
9479
9480    /**
9481     * This color constant "Aurora Pistachio" has RGB code {@code 0xA2D8A2}, red 0.63529414, green 0.84705883, blue 0.63529414, alpha 1, hue 0.33333325, saturation 0.24999999, and value 0.84705883.
9482     * It can be represented as a packed float with the constant {@code -0x1.45b144p126F}.
9483     * <pre>
9484     * <font style='background-color: #A2D8A2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A2D8A2; color: #000000'>&nbsp;@&nbsp;</font>
9485     * <font style='background-color: #A2D8A2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A2D8A2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A2D8A2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A2D8A2'>&nbsp;@&nbsp;</font><font style='background-color: #A2D8A2; color: #888888'>&nbsp;@&nbsp;</font>
9486     * <font style='background-color: #A2D8A2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A2D8A2; color: #ffffff'>&nbsp;@&nbsp;</font>
9487     * </pre>
9488     */
9489    public static final SColor AURORA_PISTACHIO = new SColor(0xA2D8A2, "Aurora Pistachio");
9490
9491    /**
9492     * This color constant "Aurora Angel Wing" has RGB code {@code 0xE1F8FA}, red 0.88235295, green 0.972549, blue 0.98039216, alpha 1, hue 0.5133333, saturation 0.099999994, and value 0.98039216.
9493     * It can be represented as a packed float with the constant {@code -0x1.f5f1c2p126F}.
9494     * <pre>
9495     * <font style='background-color: #E1F8FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E1F8FA; color: #000000'>&nbsp;@&nbsp;</font>
9496     * <font style='background-color: #E1F8FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E1F8FA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E1F8FA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E1F8FA'>&nbsp;@&nbsp;</font><font style='background-color: #E1F8FA; color: #888888'>&nbsp;@&nbsp;</font>
9497     * <font style='background-color: #E1F8FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E1F8FA; color: #ffffff'>&nbsp;@&nbsp;</font>
9498     * </pre>
9499     */
9500    public static final SColor AURORA_ANGEL_WING = new SColor(0xE1F8FA, "Aurora Angel Wing");
9501
9502    /**
9503     * This color constant "Aurora Sage Green" has RGB code {@code 0xB4EECA}, red 0.7058824, green 0.93333334, blue 0.7921569, alpha 1, hue 0.39655173, saturation 0.24369746, and value 0.93333334.
9504     * It can be represented as a packed float with the constant {@code -0x1.95dd68p126F}.
9505     * <pre>
9506     * <font style='background-color: #B4EECA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B4EECA; color: #000000'>&nbsp;@&nbsp;</font>
9507     * <font style='background-color: #B4EECA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B4EECA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B4EECA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B4EECA'>&nbsp;@&nbsp;</font><font style='background-color: #B4EECA; color: #888888'>&nbsp;@&nbsp;</font>
9508     * <font style='background-color: #B4EECA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B4EECA; color: #ffffff'>&nbsp;@&nbsp;</font>
9509     * </pre>
9510     */
9511    public static final SColor AURORA_SAGE_GREEN = new SColor(0xB4EECA, "Aurora Sage Green");
9512
9513    /**
9514     * This color constant "Aurora Dried Sage" has RGB code {@code 0xABE3C5}, red 0.67058825, green 0.8901961, blue 0.77254903, alpha 1, hue 0.41071427, saturation 0.24669603, and value 0.8901961.
9515     * It can be represented as a packed float with the constant {@code -0x1.8bc756p126F}.
9516     * <pre>
9517     * <font style='background-color: #ABE3C5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABE3C5; color: #000000'>&nbsp;@&nbsp;</font>
9518     * <font style='background-color: #ABE3C5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ABE3C5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ABE3C5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ABE3C5'>&nbsp;@&nbsp;</font><font style='background-color: #ABE3C5; color: #888888'>&nbsp;@&nbsp;</font>
9519     * <font style='background-color: #ABE3C5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABE3C5; color: #ffffff'>&nbsp;@&nbsp;</font>
9520     * </pre>
9521     */
9522    public static final SColor AURORA_DRIED_SAGE = new SColor(0xABE3C5, "Aurora Dried Sage");
9523
9524    /**
9525     * This color constant "Aurora Artichoke" has RGB code {@code 0x87B48E}, red 0.5294118, green 0.7058824, blue 0.5568628, alpha 1, hue 0.35925925, saturation 0.24999999, and value 0.7058824.
9526     * It can be represented as a packed float with the constant {@code -0x1.1d690ep126F}.
9527     * <pre>
9528     * <font style='background-color: #87B48E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #87B48E; color: #000000'>&nbsp;@&nbsp;</font>
9529     * <font style='background-color: #87B48E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #87B48E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #87B48E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #87B48E'>&nbsp;@&nbsp;</font><font style='background-color: #87B48E; color: #888888'>&nbsp;@&nbsp;</font>
9530     * <font style='background-color: #87B48E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #87B48E; color: #ffffff'>&nbsp;@&nbsp;</font>
9531     * </pre>
9532     */
9533    public static final SColor AURORA_ARTICHOKE = new SColor(0x87B48E, "Aurora Artichoke");
9534
9535    /**
9536     * This color constant "Aurora Viridian" has RGB code {@code 0x507D5F}, red 0.3137255, green 0.49019608, blue 0.37254903, alpha 1, hue 0.38888884, saturation 0.35999998, and value 0.49019608.
9537     * It can be represented as a packed float with the constant {@code -0x1.befaap125F}.
9538     * <pre>
9539     * <font style='background-color: #507D5F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #507D5F; color: #000000'>&nbsp;@&nbsp;</font>
9540     * <font style='background-color: #507D5F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #507D5F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #507D5F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #507D5F'>&nbsp;@&nbsp;</font><font style='background-color: #507D5F; color: #888888'>&nbsp;@&nbsp;</font>
9541     * <font style='background-color: #507D5F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #507D5F; color: #ffffff'>&nbsp;@&nbsp;</font>
9542     * </pre>
9543     */
9544    public static final SColor AURORA_VIRIDIAN = new SColor(0x507D5F, "Aurora Viridian");
9545
9546    /**
9547     * This color constant "Aurora Floral Foam" has RGB code {@code 0x0F6946}, red 0.05882353, green 0.4117647, blue 0.27450982, alpha 1, hue 0.4351852, saturation 0.85714287, and value 0.4117647.
9548     * It can be represented as a packed float with the constant {@code -0x1.8cd21ep125F}.
9549     * <pre>
9550     * <font style='background-color: #0F6946;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0F6946; color: #000000'>&nbsp;@&nbsp;</font>
9551     * <font style='background-color: #0F6946;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0F6946'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0F6946'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0F6946'>&nbsp;@&nbsp;</font><font style='background-color: #0F6946; color: #888888'>&nbsp;@&nbsp;</font>
9552     * <font style='background-color: #0F6946;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0F6946; color: #ffffff'>&nbsp;@&nbsp;</font>
9553     * </pre>
9554     */
9555    public static final SColor AURORA_FLORAL_FOAM = new SColor(0x0F6946, "Aurora Floral Foam");
9556
9557    /**
9558     * This color constant "Aurora Hunter Green" has RGB code {@code 0x1E2D23}, red 0.11764706, green 0.1764706, blue 0.13725491, alpha 1, hue 0.38888884, saturation 0.33333334, and value 0.1764706.
9559     * It can be represented as a packed float with the constant {@code -0x1.465a3cp125F}.
9560     * <pre>
9561     * <font style='background-color: #1E2D23;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1E2D23; color: #000000'>&nbsp;@&nbsp;</font>
9562     * <font style='background-color: #1E2D23;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1E2D23'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1E2D23'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1E2D23'>&nbsp;@&nbsp;</font><font style='background-color: #1E2D23; color: #888888'>&nbsp;@&nbsp;</font>
9563     * <font style='background-color: #1E2D23;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1E2D23; color: #ffffff'>&nbsp;@&nbsp;</font>
9564     * </pre>
9565     */
9566    public static final SColor AURORA_HUNTER_GREEN = new SColor(0x1E2D23, "Aurora Hunter Green");
9567
9568    /**
9569     * This color constant "Aurora Dark Teal" has RGB code {@code 0x234146}, red 0.13725491, green 0.25490198, blue 0.27450982, alpha 1, hue 0.52380955, saturation 0.5, and value 0.27450982.
9570     * It can be represented as a packed float with the constant {@code -0x1.8c8246p125F}.
9571     * <pre>
9572     * <font style='background-color: #234146;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #234146; color: #000000'>&nbsp;@&nbsp;</font>
9573     * <font style='background-color: #234146;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #234146'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #234146'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #234146'>&nbsp;@&nbsp;</font><font style='background-color: #234146; color: #888888'>&nbsp;@&nbsp;</font>
9574     * <font style='background-color: #234146;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #234146; color: #ffffff'>&nbsp;@&nbsp;</font>
9575     * </pre>
9576     */
9577    public static final SColor AURORA_DARK_TEAL = new SColor(0x234146, "Aurora Dark Teal");
9578
9579    /**
9580     * This color constant "Aurora Kyanite" has RGB code {@code 0x3B7373}, red 0.23137255, green 0.4509804, blue 0.4509804, alpha 1, hue 0.5, saturation 0.48695654, and value 0.4509804.
9581     * It can be represented as a packed float with the constant {@code -0x1.e6e676p125F}.
9582     * <pre>
9583     * <font style='background-color: #3B7373;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B7373; color: #000000'>&nbsp;@&nbsp;</font>
9584     * <font style='background-color: #3B7373;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3B7373'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3B7373'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3B7373'>&nbsp;@&nbsp;</font><font style='background-color: #3B7373; color: #888888'>&nbsp;@&nbsp;</font>
9585     * <font style='background-color: #3B7373;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B7373; color: #ffffff'>&nbsp;@&nbsp;</font>
9586     * </pre>
9587     */
9588    public static final SColor AURORA_KYANITE = new SColor(0x3B7373, "Aurora Kyanite");
9589
9590    /**
9591     * This color constant "Aurora Spearmint" has RGB code {@code 0x64ABAB}, red 0.39215687, green 0.67058825, blue 0.67058825, alpha 1, hue 0.5, saturation 0.41520467, and value 0.67058825.
9592     * It can be represented as a packed float with the constant {@code -0x1.5756c8p126F}.
9593     * <pre>
9594     * <font style='background-color: #64ABAB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #64ABAB; color: #000000'>&nbsp;@&nbsp;</font>
9595     * <font style='background-color: #64ABAB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #64ABAB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #64ABAB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #64ABAB'>&nbsp;@&nbsp;</font><font style='background-color: #64ABAB; color: #888888'>&nbsp;@&nbsp;</font>
9596     * <font style='background-color: #64ABAB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #64ABAB; color: #ffffff'>&nbsp;@&nbsp;</font>
9597     * </pre>
9598     */
9599    public static final SColor AURORA_SPEARMINT = new SColor(0x64ABAB, "Aurora Spearmint");
9600
9601    /**
9602     * This color constant "Aurora Amazonite" has RGB code {@code 0x8FC7C7}, red 0.56078434, green 0.78039217, blue 0.78039217, alpha 1, hue 0.5, saturation 0.28140703, and value 0.78039217.
9603     * It can be represented as a packed float with the constant {@code -0x1.8f8f1ep126F}.
9604     * <pre>
9605     * <font style='background-color: #8FC7C7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8FC7C7; color: #000000'>&nbsp;@&nbsp;</font>
9606     * <font style='background-color: #8FC7C7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8FC7C7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8FC7C7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8FC7C7'>&nbsp;@&nbsp;</font><font style='background-color: #8FC7C7; color: #888888'>&nbsp;@&nbsp;</font>
9607     * <font style='background-color: #8FC7C7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8FC7C7; color: #ffffff'>&nbsp;@&nbsp;</font>
9608     * </pre>
9609     */
9610    public static final SColor AURORA_AMAZONITE = new SColor(0x8FC7C7, "Aurora Amazonite");
9611
9612    /**
9613     * This color constant "Aurora Pastel Sky" has RGB code {@code 0xABE3E3}, red 0.67058825, green 0.8901961, blue 0.8901961, alpha 1, hue 0.5, saturation 0.24669603, and value 0.8901961.
9614     * It can be represented as a packed float with the constant {@code -0x1.c7c756p126F}.
9615     * <pre>
9616     * <font style='background-color: #ABE3E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABE3E3; color: #000000'>&nbsp;@&nbsp;</font>
9617     * <font style='background-color: #ABE3E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ABE3E3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ABE3E3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ABE3E3'>&nbsp;@&nbsp;</font><font style='background-color: #ABE3E3; color: #888888'>&nbsp;@&nbsp;</font>
9618     * <font style='background-color: #ABE3E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABE3E3; color: #ffffff'>&nbsp;@&nbsp;</font>
9619     * </pre>
9620     */
9621    public static final SColor AURORA_PASTEL_SKY = new SColor(0xABE3E3, "Aurora Pastel Sky");
9622
9623    /**
9624     * This color constant "Aurora Aquamarine" has RGB code {@code 0xC7F1F1}, red 0.78039217, green 0.94509804, blue 0.94509804, alpha 1, hue 0.5, saturation 0.17427385, and value 0.94509804.
9625     * It can be represented as a packed float with the constant {@code -0x1.e3e38ep126F}.
9626     * <pre>
9627     * <font style='background-color: #C7F1F1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C7F1F1; color: #000000'>&nbsp;@&nbsp;</font>
9628     * <font style='background-color: #C7F1F1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C7F1F1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C7F1F1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C7F1F1'>&nbsp;@&nbsp;</font><font style='background-color: #C7F1F1; color: #888888'>&nbsp;@&nbsp;</font>
9629     * <font style='background-color: #C7F1F1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C7F1F1; color: #ffffff'>&nbsp;@&nbsp;</font>
9630     * </pre>
9631     */
9632    public static final SColor AURORA_AQUAMARINE = new SColor(0xC7F1F1, "Aurora Aquamarine");
9633
9634    /**
9635     * This color constant "Aurora Dust Bunny" has RGB code {@code 0xBED2F0}, red 0.74509805, green 0.8235294, blue 0.9411765, alpha 1, hue 0.60000014, saturation 0.20833331, and value 0.9411765.
9636     * It can be represented as a packed float with the constant {@code -0x1.e1a57cp126F}.
9637     * <pre>
9638     * <font style='background-color: #BED2F0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BED2F0; color: #000000'>&nbsp;@&nbsp;</font>
9639     * <font style='background-color: #BED2F0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BED2F0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BED2F0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BED2F0'>&nbsp;@&nbsp;</font><font style='background-color: #BED2F0; color: #888888'>&nbsp;@&nbsp;</font>
9640     * <font style='background-color: #BED2F0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BED2F0; color: #ffffff'>&nbsp;@&nbsp;</font>
9641     * </pre>
9642     */
9643    public static final SColor AURORA_DUST_BUNNY = new SColor(0xBED2F0, "Aurora Dust Bunny");
9644
9645    /**
9646     * This color constant "Aurora Patina" has RGB code {@code 0xABC7E3}, red 0.67058825, green 0.78039217, blue 0.8901961, alpha 1, hue 0.58333325, saturation 0.24669603, and value 0.8901961.
9647     * It can be represented as a packed float with the constant {@code -0x1.c78f56p126F}.
9648     * <pre>
9649     * <font style='background-color: #ABC7E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABC7E3; color: #000000'>&nbsp;@&nbsp;</font>
9650     * <font style='background-color: #ABC7E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ABC7E3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ABC7E3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ABC7E3'>&nbsp;@&nbsp;</font><font style='background-color: #ABC7E3; color: #888888'>&nbsp;@&nbsp;</font>
9651     * <font style='background-color: #ABC7E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABC7E3; color: #ffffff'>&nbsp;@&nbsp;</font>
9652     * </pre>
9653     */
9654    public static final SColor AURORA_PATINA = new SColor(0xABC7E3, "Aurora Patina");
9655
9656    /**
9657     * This color constant "Aurora Chipped Granite" has RGB code {@code 0xA8B9DC}, red 0.65882355, green 0.7254902, blue 0.8627451, alpha 1, hue 0.6121795, saturation 0.23636362, and value 0.8627451.
9658     * It can be represented as a packed float with the constant {@code -0x1.b9735p126F}.
9659     * <pre>
9660     * <font style='background-color: #A8B9DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A8B9DC; color: #000000'>&nbsp;@&nbsp;</font>
9661     * <font style='background-color: #A8B9DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A8B9DC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A8B9DC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A8B9DC'>&nbsp;@&nbsp;</font><font style='background-color: #A8B9DC; color: #888888'>&nbsp;@&nbsp;</font>
9662     * <font style='background-color: #A8B9DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A8B9DC; color: #ffffff'>&nbsp;@&nbsp;</font>
9663     * </pre>
9664     */
9665    public static final SColor AURORA_CHIPPED_GRANITE = new SColor(0xA8B9DC, "Aurora Chipped Granite");
9666
9667    /**
9668     * This color constant "Aurora Blue Smoke" has RGB code {@code 0x8FABC7}, red 0.56078434, green 0.67058825, blue 0.78039217, alpha 1, hue 0.58333325, saturation 0.28140703, and value 0.78039217.
9669     * It can be represented as a packed float with the constant {@code -0x1.8f571ep126F}.
9670     * <pre>
9671     * <font style='background-color: #8FABC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8FABC7; color: #000000'>&nbsp;@&nbsp;</font>
9672     * <font style='background-color: #8FABC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8FABC7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8FABC7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8FABC7'>&nbsp;@&nbsp;</font><font style='background-color: #8FABC7; color: #888888'>&nbsp;@&nbsp;</font>
9673     * <font style='background-color: #8FABC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8FABC7; color: #ffffff'>&nbsp;@&nbsp;</font>
9674     * </pre>
9675     */
9676    public static final SColor AURORA_BLUE_SMOKE = new SColor(0x8FABC7, "Aurora Blue Smoke");
9677
9678    /**
9679     * This color constant "Aurora Air Force Blue" has RGB code {@code 0x578FC7}, red 0.34117648, green 0.56078434, blue 0.78039217, alpha 1, hue 0.58333325, saturation 0.56281406, and value 0.78039217.
9680     * It can be represented as a packed float with the constant {@code -0x1.8f1eaep126F}.
9681     * <pre>
9682     * <font style='background-color: #578FC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #578FC7; color: #000000'>&nbsp;@&nbsp;</font>
9683     * <font style='background-color: #578FC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #578FC7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #578FC7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #578FC7'>&nbsp;@&nbsp;</font><font style='background-color: #578FC7; color: #888888'>&nbsp;@&nbsp;</font>
9684     * <font style='background-color: #578FC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #578FC7; color: #ffffff'>&nbsp;@&nbsp;</font>
9685     * </pre>
9686     */
9687    public static final SColor AURORA_AIR_FORCE_BLUE = new SColor(0x578FC7, "Aurora Air Force Blue");
9688
9689    /**
9690     * This color constant "Aurora Cold Iron" has RGB code {@code 0x57738F}, red 0.34117648, green 0.4509804, blue 0.56078434, alpha 1, hue 0.5833334, saturation 0.39160842, and value 0.56078434.
9691     * It can be represented as a packed float with the constant {@code -0x1.1ee6aep126F}.
9692     * <pre>
9693     * <font style='background-color: #57738F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #57738F; color: #000000'>&nbsp;@&nbsp;</font>
9694     * <font style='background-color: #57738F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #57738F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #57738F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #57738F'>&nbsp;@&nbsp;</font><font style='background-color: #57738F; color: #888888'>&nbsp;@&nbsp;</font>
9695     * <font style='background-color: #57738F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #57738F; color: #ffffff'>&nbsp;@&nbsp;</font>
9696     * </pre>
9697     */
9698    public static final SColor AURORA_COLD_IRON = new SColor(0x57738F, "Aurora Cold Iron");
9699
9700    /**
9701     * This color constant "Aurora Dreary Blue" has RGB code {@code 0x3B5773}, red 0.23137255, green 0.34117648, blue 0.4509804, alpha 1, hue 0.58333325, saturation 0.48695654, and value 0.4509804.
9702     * It can be represented as a packed float with the constant {@code -0x1.e6ae76p125F}.
9703     * <pre>
9704     * <font style='background-color: #3B5773;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B5773; color: #000000'>&nbsp;@&nbsp;</font>
9705     * <font style='background-color: #3B5773;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3B5773'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3B5773'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3B5773'>&nbsp;@&nbsp;</font><font style='background-color: #3B5773; color: #888888'>&nbsp;@&nbsp;</font>
9706     * <font style='background-color: #3B5773;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B5773; color: #ffffff'>&nbsp;@&nbsp;</font>
9707     * </pre>
9708     */
9709    public static final SColor AURORA_DREARY_BLUE = new SColor(0x3B5773, "Aurora Dreary Blue");
9710
9711    /**
9712     * This color constant "Aurora Murk" has RGB code {@code 0x0F192D}, red 0.05882353, green 0.09803922, blue 0.1764706, alpha 1, hue 0.6111113, saturation 0.6666667, and value 0.1764706.
9713     * It can be represented as a packed float with the constant {@code -0x1.5a321ep125F}.
9714     * <pre>
9715     * <font style='background-color: #0F192D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0F192D; color: #000000'>&nbsp;@&nbsp;</font>
9716     * <font style='background-color: #0F192D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0F192D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0F192D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0F192D'>&nbsp;@&nbsp;</font><font style='background-color: #0F192D; color: #888888'>&nbsp;@&nbsp;</font>
9717     * <font style='background-color: #0F192D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0F192D; color: #ffffff'>&nbsp;@&nbsp;</font>
9718     * </pre>
9719     */
9720    public static final SColor AURORA_MURK = new SColor(0x0F192D, "Aurora Murk");
9721
9722    /**
9723     * This color constant "Aurora Ninja" has RGB code {@code 0x1F1F3B}, red 0.12156863, green 0.12156863, blue 0.23137255, alpha 1, hue 0.66666675, saturation 0.47457626, and value 0.23137255.
9724     * It can be represented as a packed float with the constant {@code -0x1.763e3ep125F}.
9725     * <pre>
9726     * <font style='background-color: #1F1F3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1F1F3B; color: #000000'>&nbsp;@&nbsp;</font>
9727     * <font style='background-color: #1F1F3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1F1F3B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1F1F3B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1F1F3B'>&nbsp;@&nbsp;</font><font style='background-color: #1F1F3B; color: #888888'>&nbsp;@&nbsp;</font>
9728     * <font style='background-color: #1F1F3B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1F1F3B; color: #ffffff'>&nbsp;@&nbsp;</font>
9729     * </pre>
9730     */
9731    public static final SColor AURORA_NINJA = new SColor(0x1F1F3B, "Aurora Ninja");
9732
9733    /**
9734     * This color constant "Aurora Watercolor Black" has RGB code {@code 0x3B3B57}, red 0.23137255, green 0.23137255, blue 0.34117648, alpha 1, hue 0.66666687, saturation 0.3218391, and value 0.34117648.
9735     * It can be represented as a packed float with the constant {@code -0x1.ae7676p125F}.
9736     * <pre>
9737     * <font style='background-color: #3B3B57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B3B57; color: #000000'>&nbsp;@&nbsp;</font>
9738     * <font style='background-color: #3B3B57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3B3B57'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3B3B57'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3B3B57'>&nbsp;@&nbsp;</font><font style='background-color: #3B3B57; color: #888888'>&nbsp;@&nbsp;</font>
9739     * <font style='background-color: #3B3B57;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3B3B57; color: #ffffff'>&nbsp;@&nbsp;</font>
9740     * </pre>
9741     */
9742    public static final SColor AURORA_WATERCOLOR_BLACK = new SColor(0x3B3B57, "Aurora Watercolor Black");
9743
9744    /**
9745     * This color constant "Aurora Iolite" has RGB code {@code 0x494973}, red 0.28627452, green 0.28627452, blue 0.4509804, alpha 1, hue 0.66666675, saturation 0.36521736, and value 0.4509804.
9746     * It can be represented as a packed float with the constant {@code -0x1.e69292p125F}.
9747     * <pre>
9748     * <font style='background-color: #494973;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #494973; color: #000000'>&nbsp;@&nbsp;</font>
9749     * <font style='background-color: #494973;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #494973'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #494973'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #494973'>&nbsp;@&nbsp;</font><font style='background-color: #494973; color: #888888'>&nbsp;@&nbsp;</font>
9750     * <font style='background-color: #494973;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #494973; color: #ffffff'>&nbsp;@&nbsp;</font>
9751     * </pre>
9752     */
9753    public static final SColor AURORA_IOLITE = new SColor(0x494973, "Aurora Iolite");
9754
9755    /**
9756     * This color constant "Aurora Boysenberry" has RGB code {@code 0x57578F}, red 0.34117648, green 0.34117648, blue 0.56078434, alpha 1, hue 0.66666687, saturation 0.39160842, and value 0.56078434.
9757     * It can be represented as a packed float with the constant {@code -0x1.1eaeaep126F}.
9758     * <pre>
9759     * <font style='background-color: #57578F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #57578F; color: #000000'>&nbsp;@&nbsp;</font>
9760     * <font style='background-color: #57578F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #57578F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #57578F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #57578F'>&nbsp;@&nbsp;</font><font style='background-color: #57578F; color: #888888'>&nbsp;@&nbsp;</font>
9761     * <font style='background-color: #57578F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #57578F; color: #ffffff'>&nbsp;@&nbsp;</font>
9762     * </pre>
9763     */
9764    public static final SColor AURORA_BOYSENBERRY = new SColor(0x57578F, "Aurora Boysenberry");
9765
9766    /**
9767     * This color constant "Aurora Watercolor Gray" has RGB code {@code 0x736EAA}, red 0.4509804, green 0.43137255, blue 0.6666667, alpha 1, hue 0.6805558, saturation 0.3529412, and value 0.6666667.
9768     * It can be represented as a packed float with the constant {@code -0x1.54dce6p126F}.
9769     * <pre>
9770     * <font style='background-color: #736EAA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #736EAA; color: #000000'>&nbsp;@&nbsp;</font>
9771     * <font style='background-color: #736EAA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #736EAA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #736EAA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #736EAA'>&nbsp;@&nbsp;</font><font style='background-color: #736EAA; color: #888888'>&nbsp;@&nbsp;</font>
9772     * <font style='background-color: #736EAA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #736EAA; color: #ffffff'>&nbsp;@&nbsp;</font>
9773     * </pre>
9774     */
9775    public static final SColor AURORA_WATERCOLOR_GRAY = new SColor(0x736EAA, "Aurora Watercolor Gray");
9776
9777    /**
9778     * This color constant "Aurora Blue Steel" has RGB code {@code 0x7676CA}, red 0.4627451, green 0.4627451, blue 0.7921569, alpha 1, hue 0.66666687, saturation 0.41584158, and value 0.7921569.
9779     * It can be represented as a packed float with the constant {@code -0x1.94ececp126F}.
9780     * <pre>
9781     * <font style='background-color: #7676CA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7676CA; color: #000000'>&nbsp;@&nbsp;</font>
9782     * <font style='background-color: #7676CA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7676CA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7676CA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7676CA'>&nbsp;@&nbsp;</font><font style='background-color: #7676CA; color: #888888'>&nbsp;@&nbsp;</font>
9783     * <font style='background-color: #7676CA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7676CA; color: #ffffff'>&nbsp;@&nbsp;</font>
9784     * </pre>
9785     */
9786    public static final SColor AURORA_BLUE_STEEL = new SColor(0x7676CA, "Aurora Blue Steel");
9787
9788    /**
9789     * This color constant "Aurora Twilight Cloud" has RGB code {@code 0x8F8FC7}, red 0.56078434, green 0.56078434, blue 0.78039217, alpha 1, hue 0.66666675, saturation 0.28140703, and value 0.78039217.
9790     * It can be represented as a packed float with the constant {@code -0x1.8f1f1ep126F}.
9791     * <pre>
9792     * <font style='background-color: #8F8FC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F8FC7; color: #000000'>&nbsp;@&nbsp;</font>
9793     * <font style='background-color: #8F8FC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8F8FC7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8F8FC7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8F8FC7'>&nbsp;@&nbsp;</font><font style='background-color: #8F8FC7; color: #888888'>&nbsp;@&nbsp;</font>
9794     * <font style='background-color: #8F8FC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F8FC7; color: #ffffff'>&nbsp;@&nbsp;</font>
9795     * </pre>
9796     */
9797    public static final SColor AURORA_TWILIGHT_CLOUD = new SColor(0x8F8FC7, "Aurora Twilight Cloud");
9798
9799    /**
9800     * This color constant "Aurora Smog" has RGB code {@code 0xABABE3}, red 0.67058825, green 0.67058825, blue 0.8901961, alpha 1, hue 0.66666675, saturation 0.24669603, and value 0.8901961.
9801     * It can be represented as a packed float with the constant {@code -0x1.c75756p126F}.
9802     * <pre>
9803     * <font style='background-color: #ABABE3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABABE3; color: #000000'>&nbsp;@&nbsp;</font>
9804     * <font style='background-color: #ABABE3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #ABABE3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #ABABE3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #ABABE3'>&nbsp;@&nbsp;</font><font style='background-color: #ABABE3; color: #888888'>&nbsp;@&nbsp;</font>
9805     * <font style='background-color: #ABABE3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ABABE3; color: #ffffff'>&nbsp;@&nbsp;</font>
9806     * </pre>
9807     */
9808    public static final SColor AURORA_SMOG = new SColor(0xABABE3, "Aurora Smog");
9809
9810    /**
9811     * This color constant "Aurora Tropic Mist" has RGB code {@code 0xD0DAF8}, red 0.8156863, green 0.85490197, blue 0.972549, alpha 1, hue 0.625, saturation 0.16129032, and value 0.972549.
9812     * It can be represented as a packed float with the constant {@code -0x1.f1b5ap126F}.
9813     * <pre>
9814     * <font style='background-color: #D0DAF8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D0DAF8; color: #000000'>&nbsp;@&nbsp;</font>
9815     * <font style='background-color: #D0DAF8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D0DAF8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D0DAF8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D0DAF8'>&nbsp;@&nbsp;</font><font style='background-color: #D0DAF8; color: #888888'>&nbsp;@&nbsp;</font>
9816     * <font style='background-color: #D0DAF8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D0DAF8; color: #ffffff'>&nbsp;@&nbsp;</font>
9817     * </pre>
9818     */
9819    public static final SColor AURORA_TROPIC_MIST = new SColor(0xD0DAF8, "Aurora Tropic Mist");
9820
9821    /**
9822     * This color constant "Aurora Feather Down" has RGB code {@code 0xE3E3FF}, red 0.8901961, green 0.8901961, blue 1.0, alpha 1, hue 0.66666675, saturation 0.109803915, and value 1.0.
9823     * It can be represented as a packed float with the constant {@code -0x1.ffc7c6p126F}.
9824     * <pre>
9825     * <font style='background-color: #E3E3FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E3E3FF; color: #000000'>&nbsp;@&nbsp;</font>
9826     * <font style='background-color: #E3E3FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E3E3FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E3E3FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E3E3FF'>&nbsp;@&nbsp;</font><font style='background-color: #E3E3FF; color: #888888'>&nbsp;@&nbsp;</font>
9827     * <font style='background-color: #E3E3FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E3E3FF; color: #ffffff'>&nbsp;@&nbsp;</font>
9828     * </pre>
9829     */
9830    public static final SColor AURORA_FEATHER_DOWN = new SColor(0xE3E3FF, "Aurora Feather Down");
9831
9832    /**
9833     * This color constant "Aurora Mild Violet" has RGB code {@code 0xAB8FC7}, red 0.67058825, green 0.56078434, blue 0.78039217, alpha 1, hue 0.75000024, saturation 0.28140703, and value 0.78039217.
9834     * It can be represented as a packed float with the constant {@code -0x1.8f1f56p126F}.
9835     * <pre>
9836     * <font style='background-color: #AB8FC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB8FC7; color: #000000'>&nbsp;@&nbsp;</font>
9837     * <font style='background-color: #AB8FC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AB8FC7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AB8FC7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AB8FC7'>&nbsp;@&nbsp;</font><font style='background-color: #AB8FC7; color: #888888'>&nbsp;@&nbsp;</font>
9838     * <font style='background-color: #AB8FC7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB8FC7; color: #ffffff'>&nbsp;@&nbsp;</font>
9839     * </pre>
9840     */
9841    public static final SColor AURORA_MILD_VIOLET = new SColor(0xAB8FC7, "Aurora Mild Violet");
9842
9843    /**
9844     * This color constant "Aurora Violet Cushions" has RGB code {@code 0x8F57C7}, red 0.56078434, green 0.34117648, blue 0.78039217, alpha 1, hue 0.75000024, saturation 0.56281406, and value 0.78039217.
9845     * It can be represented as a packed float with the constant {@code -0x1.8eaf1ep126F}.
9846     * <pre>
9847     * <font style='background-color: #8F57C7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F57C7; color: #000000'>&nbsp;@&nbsp;</font>
9848     * <font style='background-color: #8F57C7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8F57C7'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8F57C7'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8F57C7'>&nbsp;@&nbsp;</font><font style='background-color: #8F57C7; color: #888888'>&nbsp;@&nbsp;</font>
9849     * <font style='background-color: #8F57C7;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F57C7; color: #ffffff'>&nbsp;@&nbsp;</font>
9850     * </pre>
9851     */
9852    public static final SColor AURORA_VIOLET_CUSHIONS = new SColor(0x8F57C7, "Aurora Violet Cushions");
9853
9854    /**
9855     * This color constant "Aurora Dull Violet" has RGB code {@code 0x73578F}, red 0.4509804, green 0.34117648, blue 0.56078434, alpha 1, hue 0.75000024, saturation 0.39160842, and value 0.56078434.
9856     * It can be represented as a packed float with the constant {@code -0x1.1eaee6p126F}.
9857     * <pre>
9858     * <font style='background-color: #73578F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73578F; color: #000000'>&nbsp;@&nbsp;</font>
9859     * <font style='background-color: #73578F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #73578F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #73578F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #73578F'>&nbsp;@&nbsp;</font><font style='background-color: #73578F; color: #888888'>&nbsp;@&nbsp;</font>
9860     * <font style='background-color: #73578F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73578F; color: #ffffff'>&nbsp;@&nbsp;</font>
9861     * </pre>
9862     */
9863    public static final SColor AURORA_DULL_VIOLET = new SColor(0x73578F, "Aurora Dull Violet");
9864
9865    /**
9866     * This color constant "Aurora Royal Violet" has RGB code {@code 0x573B73}, red 0.34117648, green 0.23137255, blue 0.4509804, alpha 1, hue 0.75000024, saturation 0.48695654, and value 0.4509804.
9867     * It can be represented as a packed float with the constant {@code -0x1.e676aep125F}.
9868     * <pre>
9869     * <font style='background-color: #573B73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #573B73; color: #000000'>&nbsp;@&nbsp;</font>
9870     * <font style='background-color: #573B73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #573B73'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #573B73'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #573B73'>&nbsp;@&nbsp;</font><font style='background-color: #573B73; color: #888888'>&nbsp;@&nbsp;</font>
9871     * <font style='background-color: #573B73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #573B73; color: #ffffff'>&nbsp;@&nbsp;</font>
9872     * </pre>
9873     */
9874    public static final SColor AURORA_ROYAL_VIOLET = new SColor(0x573B73, "Aurora Royal Violet");
9875
9876    /**
9877     * This color constant "Aurora Eminence" has RGB code {@code 0x3C233C}, red 0.23529412, green 0.13725491, blue 0.23529412, alpha 1, hue 0.8333333, saturation 0.41666663, and value 0.23529412.
9878     * It can be represented as a packed float with the constant {@code -0x1.784678p125F}.
9879     * <pre>
9880     * <font style='background-color: #3C233C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3C233C; color: #000000'>&nbsp;@&nbsp;</font>
9881     * <font style='background-color: #3C233C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3C233C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3C233C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3C233C'>&nbsp;@&nbsp;</font><font style='background-color: #3C233C; color: #888888'>&nbsp;@&nbsp;</font>
9882     * <font style='background-color: #3C233C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3C233C; color: #ffffff'>&nbsp;@&nbsp;</font>
9883     * </pre>
9884     */
9885    public static final SColor AURORA_EMINENCE = new SColor(0x3C233C, "Aurora Eminence");
9886
9887    /**
9888     * This color constant "Aurora Prune" has RGB code {@code 0x463246}, red 0.27450982, green 0.19607843, blue 0.27450982, alpha 1, hue 0.8333333, saturation 0.2857143, and value 0.27450982.
9889     * It can be represented as a packed float with the constant {@code -0x1.8c648cp125F}.
9890     * <pre>
9891     * <font style='background-color: #463246;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #463246; color: #000000'>&nbsp;@&nbsp;</font>
9892     * <font style='background-color: #463246;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #463246'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #463246'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #463246'>&nbsp;@&nbsp;</font><font style='background-color: #463246; color: #888888'>&nbsp;@&nbsp;</font>
9893     * <font style='background-color: #463246;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #463246; color: #ffffff'>&nbsp;@&nbsp;</font>
9894     * </pre>
9895     */
9896    public static final SColor AURORA_PRUNE = new SColor(0x463246, "Aurora Prune");
9897
9898    /**
9899     * This color constant "Aurora Dusty Grape" has RGB code {@code 0x724072}, red 0.44705883, green 0.2509804, blue 0.44705883, alpha 1, hue 0.8333333, saturation 0.43859646, and value 0.44705883.
9900     * It can be represented as a packed float with the constant {@code -0x1.e480e4p125F}.
9901     * <pre>
9902     * <font style='background-color: #724072;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #724072; color: #000000'>&nbsp;@&nbsp;</font>
9903     * <font style='background-color: #724072;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #724072'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #724072'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #724072'>&nbsp;@&nbsp;</font><font style='background-color: #724072; color: #888888'>&nbsp;@&nbsp;</font>
9904     * <font style='background-color: #724072;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #724072; color: #ffffff'>&nbsp;@&nbsp;</font>
9905     * </pre>
9906     */
9907    public static final SColor AURORA_DUSTY_GRAPE = new SColor(0x724072, "Aurora Dusty Grape");
9908
9909    /**
9910     * This color constant "Aurora Pink Violet" has RGB code {@code 0x8F578F}, red 0.56078434, green 0.34117648, blue 0.56078434, alpha 1, hue 0.8333334, saturation 0.39160842, and value 0.56078434.
9911     * It can be represented as a packed float with the constant {@code -0x1.1eaf1ep126F}.
9912     * <pre>
9913     * <font style='background-color: #8F578F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F578F; color: #000000'>&nbsp;@&nbsp;</font>
9914     * <font style='background-color: #8F578F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8F578F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8F578F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8F578F'>&nbsp;@&nbsp;</font><font style='background-color: #8F578F; color: #888888'>&nbsp;@&nbsp;</font>
9915     * <font style='background-color: #8F578F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8F578F; color: #ffffff'>&nbsp;@&nbsp;</font>
9916     * </pre>
9917     */
9918    public static final SColor AURORA_PINK_VIOLET = new SColor(0x8F578F, "Aurora Pink Violet");
9919
9920    /**
9921     * This color constant "Aurora Ripe Plum" has RGB code {@code 0xAB57AB}, red 0.67058825, green 0.34117648, blue 0.67058825, alpha 1, hue 0.8333334, saturation 0.49122807, and value 0.67058825.
9922     * It can be represented as a packed float with the constant {@code -0x1.56af56p126F}.
9923     * <pre>
9924     * <font style='background-color: #AB57AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB57AB; color: #000000'>&nbsp;@&nbsp;</font>
9925     * <font style='background-color: #AB57AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AB57AB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AB57AB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AB57AB'>&nbsp;@&nbsp;</font><font style='background-color: #AB57AB; color: #888888'>&nbsp;@&nbsp;</font>
9926     * <font style='background-color: #AB57AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB57AB; color: #ffffff'>&nbsp;@&nbsp;</font>
9927     * </pre>
9928     */
9929    public static final SColor AURORA_RIPE_PLUM = new SColor(0xAB57AB, "Aurora Ripe Plum");
9930
9931    /**
9932     * This color constant "Aurora Mauve" has RGB code {@code 0xAB73AB}, red 0.67058825, green 0.4509804, blue 0.67058825, alpha 1, hue 0.8333334, saturation 0.32748538, and value 0.67058825.
9933     * It can be represented as a packed float with the constant {@code -0x1.56e756p126F}.
9934     * <pre>
9935     * <font style='background-color: #AB73AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB73AB; color: #000000'>&nbsp;@&nbsp;</font>
9936     * <font style='background-color: #AB73AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AB73AB'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AB73AB'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AB73AB'>&nbsp;@&nbsp;</font><font style='background-color: #AB73AB; color: #888888'>&nbsp;@&nbsp;</font>
9937     * <font style='background-color: #AB73AB;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AB73AB; color: #ffffff'>&nbsp;@&nbsp;</font>
9938     * </pre>
9939     */
9940    public static final SColor AURORA_MAUVE = new SColor(0xAB73AB, "Aurora Mauve");
9941
9942    /**
9943     * This color constant "Aurora Ham" has RGB code {@code 0xEBACE1}, red 0.92156863, green 0.6745098, blue 0.88235295, alpha 1, hue 0.85978836, saturation 0.2680851, and value 0.92156863.
9944     * It can be represented as a packed float with the constant {@code -0x1.c359d6p126F}.
9945     * <pre>
9946     * <font style='background-color: #EBACE1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EBACE1; color: #000000'>&nbsp;@&nbsp;</font>
9947     * <font style='background-color: #EBACE1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #EBACE1'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #EBACE1'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #EBACE1'>&nbsp;@&nbsp;</font><font style='background-color: #EBACE1; color: #888888'>&nbsp;@&nbsp;</font>
9948     * <font style='background-color: #EBACE1;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #EBACE1; color: #ffffff'>&nbsp;@&nbsp;</font>
9949     * </pre>
9950     */
9951    public static final SColor AURORA_HAM = new SColor(0xEBACE1, "Aurora Ham");
9952
9953    /**
9954     * This color constant "Aurora Cotton Candy" has RGB code {@code 0xFFDCF5}, red 1.0, green 0.8627451, blue 0.9607843, alpha 1, hue 0.8809524, saturation 0.1372549, and value 1.0.
9955     * It can be represented as a packed float with the constant {@code -0x1.ebb9fep126F}.
9956     * <pre>
9957     * <font style='background-color: #FFDCF5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFDCF5; color: #000000'>&nbsp;@&nbsp;</font>
9958     * <font style='background-color: #FFDCF5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFDCF5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFDCF5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFDCF5'>&nbsp;@&nbsp;</font><font style='background-color: #FFDCF5; color: #888888'>&nbsp;@&nbsp;</font>
9959     * <font style='background-color: #FFDCF5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFDCF5; color: #ffffff'>&nbsp;@&nbsp;</font>
9960     * </pre>
9961     */
9962    public static final SColor AURORA_COTTON_CANDY = new SColor(0xFFDCF5, "Aurora Cotton Candy");
9963
9964    /**
9965     * This color constant "Aurora Silver Pink" has RGB code {@code 0xE3C7E3}, red 0.8901961, green 0.78039217, blue 0.8901961, alpha 1, hue 0.8333333, saturation 0.12334801, and value 0.8901961.
9966     * It can be represented as a packed float with the constant {@code -0x1.c78fc6p126F}.
9967     * <pre>
9968     * <font style='background-color: #E3C7E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E3C7E3; color: #000000'>&nbsp;@&nbsp;</font>
9969     * <font style='background-color: #E3C7E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E3C7E3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E3C7E3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E3C7E3'>&nbsp;@&nbsp;</font><font style='background-color: #E3C7E3; color: #888888'>&nbsp;@&nbsp;</font>
9970     * <font style='background-color: #E3C7E3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E3C7E3; color: #ffffff'>&nbsp;@&nbsp;</font>
9971     * </pre>
9972     */
9973    public static final SColor AURORA_SILVER_PINK = new SColor(0xE3C7E3, "Aurora Silver Pink");
9974
9975    /**
9976     * This color constant "Aurora Tea Rose" has RGB code {@code 0xE1B9D2}, red 0.88235295, green 0.7254902, blue 0.8235294, alpha 1, hue 0.8958333, saturation 0.17777777, and value 0.88235295.
9977     * It can be represented as a packed float with the constant {@code -0x1.a573c2p126F}.
9978     * <pre>
9979     * <font style='background-color: #E1B9D2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E1B9D2; color: #000000'>&nbsp;@&nbsp;</font>
9980     * <font style='background-color: #E1B9D2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E1B9D2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E1B9D2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E1B9D2'>&nbsp;@&nbsp;</font><font style='background-color: #E1B9D2; color: #888888'>&nbsp;@&nbsp;</font>
9981     * <font style='background-color: #E1B9D2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E1B9D2; color: #ffffff'>&nbsp;@&nbsp;</font>
9982     * </pre>
9983     */
9984    public static final SColor AURORA_TEA_ROSE = new SColor(0xE1B9D2, "Aurora Tea Rose");
9985
9986    /**
9987     * This color constant "Aurora Old Rose" has RGB code {@code 0xD7A0BE}, red 0.84313726, green 0.627451, blue 0.74509805, alpha 1, hue 0.9090908, saturation 0.25581393, and value 0.84313726.
9988     * It can be represented as a packed float with the constant {@code -0x1.7d41aep126F}.
9989     * <pre>
9990     * <font style='background-color: #D7A0BE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D7A0BE; color: #000000'>&nbsp;@&nbsp;</font>
9991     * <font style='background-color: #D7A0BE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D7A0BE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D7A0BE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D7A0BE'>&nbsp;@&nbsp;</font><font style='background-color: #D7A0BE; color: #888888'>&nbsp;@&nbsp;</font>
9992     * <font style='background-color: #D7A0BE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D7A0BE; color: #ffffff'>&nbsp;@&nbsp;</font>
9993     * </pre>
9994     */
9995    public static final SColor AURORA_OLD_ROSE = new SColor(0xD7A0BE, "Aurora Old Rose");
9996
9997    /**
9998     * This color constant "Aurora Dusty Pink" has RGB code {@code 0xC78FB9}, red 0.78039217, green 0.56078434, blue 0.7254902, alpha 1, hue 0.87500006, saturation 0.28140703, and value 0.78039217.
9999     * It can be represented as a packed float with the constant {@code -0x1.731f8ep126F}.
10000     * <pre>
10001     * <font style='background-color: #C78FB9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C78FB9; color: #000000'>&nbsp;@&nbsp;</font>
10002     * <font style='background-color: #C78FB9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C78FB9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C78FB9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C78FB9'>&nbsp;@&nbsp;</font><font style='background-color: #C78FB9; color: #888888'>&nbsp;@&nbsp;</font>
10003     * <font style='background-color: #C78FB9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C78FB9; color: #ffffff'>&nbsp;@&nbsp;</font>
10004     * </pre>
10005     */
10006    public static final SColor AURORA_DUSTY_PINK = new SColor(0xC78FB9, "Aurora Dusty Pink");
10007
10008    /**
10009     * This color constant "Aurora Roseate Spoonbill" has RGB code {@code 0xC87DA0}, red 0.78431374, green 0.49019608, blue 0.627451, alpha 1, hue 0.92222226, saturation 0.375, and value 0.78431374.
10010     * It can be represented as a packed float with the constant {@code -0x1.40fb9p126F}.
10011     * <pre>
10012     * <font style='background-color: #C87DA0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C87DA0; color: #000000'>&nbsp;@&nbsp;</font>
10013     * <font style='background-color: #C87DA0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C87DA0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C87DA0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C87DA0'>&nbsp;@&nbsp;</font><font style='background-color: #C87DA0; color: #888888'>&nbsp;@&nbsp;</font>
10014     * <font style='background-color: #C87DA0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C87DA0; color: #ffffff'>&nbsp;@&nbsp;</font>
10015     * </pre>
10016     */
10017    public static final SColor AURORA_ROSEATE_SPOONBILL = new SColor(0xC87DA0, "Aurora Roseate Spoonbill");
10018
10019    /**
10020     * This color constant "Aurora Thulian Pink" has RGB code {@code 0xC35A91}, red 0.7647059, green 0.3529412, blue 0.5686275, alpha 1, hue 0.9126983, saturation 0.5384615, and value 0.7647059.
10021     * It can be represented as a packed float with the constant {@code -0x1.22b586p126F}.
10022     * <pre>
10023     * <font style='background-color: #C35A91;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C35A91; color: #000000'>&nbsp;@&nbsp;</font>
10024     * <font style='background-color: #C35A91;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C35A91'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C35A91'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C35A91'>&nbsp;@&nbsp;</font><font style='background-color: #C35A91; color: #888888'>&nbsp;@&nbsp;</font>
10025     * <font style='background-color: #C35A91;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C35A91; color: #ffffff'>&nbsp;@&nbsp;</font>
10026     * </pre>
10027     */
10028    public static final SColor AURORA_THULIAN_PINK = new SColor(0xC35A91, "Aurora Thulian Pink");
10029
10030    /**
10031     * This color constant "Aurora Brown Velvet" has RGB code {@code 0x4B2837}, red 0.29411766, green 0.15686275, blue 0.21568628, alpha 1, hue 0.92857146, saturation 0.46666667, and value 0.29411766.
10032     * It can be represented as a packed float with the constant {@code -0x1.6e5096p125F}.
10033     * <pre>
10034     * <font style='background-color: #4B2837;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B2837; color: #000000'>&nbsp;@&nbsp;</font>
10035     * <font style='background-color: #4B2837;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4B2837'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4B2837'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4B2837'>&nbsp;@&nbsp;</font><font style='background-color: #4B2837; color: #888888'>&nbsp;@&nbsp;</font>
10036     * <font style='background-color: #4B2837;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B2837; color: #ffffff'>&nbsp;@&nbsp;</font>
10037     * </pre>
10038     */
10039    public static final SColor AURORA_BROWN_VELVET = new SColor(0x4B2837, "Aurora Brown Velvet");
10040
10041    /**
10042     * This color constant "Aurora Nightshade" has RGB code {@code 0x321623}, red 0.19607843, green 0.08627451, blue 0.13725491, alpha 1, hue 0.9226189, saturation 0.56, and value 0.19607843.
10043     * It can be represented as a packed float with the constant {@code -0x1.462c64p125F}.
10044     * <pre>
10045     * <font style='background-color: #321623;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #321623; color: #000000'>&nbsp;@&nbsp;</font>
10046     * <font style='background-color: #321623;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #321623'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #321623'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #321623'>&nbsp;@&nbsp;</font><font style='background-color: #321623; color: #888888'>&nbsp;@&nbsp;</font>
10047     * <font style='background-color: #321623;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #321623; color: #ffffff'>&nbsp;@&nbsp;</font>
10048     * </pre>
10049     */
10050    public static final SColor AURORA_NIGHTSHADE = new SColor(0x321623, "Aurora Nightshade");
10051
10052    /**
10053     * This color constant "Aurora Scribe Ink" has RGB code {@code 0x280A1E}, red 0.15686275, green 0.039215688, blue 0.11764706, alpha 1, hue 0.88888896, saturation 0.75, and value 0.15686275.
10054     * It can be represented as a packed float with the constant {@code -0x1.3c145p125F}.
10055     * <pre>
10056     * <font style='background-color: #280A1E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #280A1E; color: #000000'>&nbsp;@&nbsp;</font>
10057     * <font style='background-color: #280A1E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #280A1E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #280A1E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #280A1E'>&nbsp;@&nbsp;</font><font style='background-color: #280A1E; color: #888888'>&nbsp;@&nbsp;</font>
10058     * <font style='background-color: #280A1E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #280A1E; color: #ffffff'>&nbsp;@&nbsp;</font>
10059     * </pre>
10060     */
10061    public static final SColor AURORA_SCRIBE_INK = new SColor(0x280A1E, "Aurora Scribe Ink");
10062
10063    /**
10064     * This color constant "Aurora Varnish" has RGB code {@code 0x401811}, red 0.2509804, green 0.09411765, blue 0.06666667, alpha 1, hue 0.024822712, saturation 0.73437506, and value 0.2509804.
10065     * It can be represented as a packed float with the constant {@code -0x1.22308p125F}.
10066     * <pre>
10067     * <font style='background-color: #401811;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #401811; color: #000000'>&nbsp;@&nbsp;</font>
10068     * <font style='background-color: #401811;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #401811'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #401811'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #401811'>&nbsp;@&nbsp;</font><font style='background-color: #401811; color: #888888'>&nbsp;@&nbsp;</font>
10069     * <font style='background-color: #401811;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #401811; color: #ffffff'>&nbsp;@&nbsp;</font>
10070     * </pre>
10071     */
10072    public static final SColor AURORA_VARNISH = new SColor(0x401811, "Aurora Varnish");
10073
10074    /**
10075     * This color constant "Aurora Cedar Wood" has RGB code {@code 0x621800}, red 0.38431373, green 0.09411765, blue 0.0, alpha 1, hue 0.040816426, saturation 1.0, and value 0.38431373.
10076     * It can be represented as a packed float with the constant {@code -0x1.0030c4p125F}.
10077     * <pre>
10078     * <font style='background-color: #621800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #621800; color: #000000'>&nbsp;@&nbsp;</font>
10079     * <font style='background-color: #621800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #621800'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #621800'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #621800'>&nbsp;@&nbsp;</font><font style='background-color: #621800; color: #888888'>&nbsp;@&nbsp;</font>
10080     * <font style='background-color: #621800;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #621800; color: #ffffff'>&nbsp;@&nbsp;</font>
10081     * </pre>
10082     */
10083    public static final SColor AURORA_CEDAR_WOOD = new SColor(0x621800, "Aurora Cedar Wood");
10084
10085    /**
10086     * This color constant "Aurora Hot Sauce" has RGB code {@code 0xA5140A}, red 0.64705884, green 0.078431375, blue 0.039215688, alpha 1, hue 0.010752678, saturation 0.93939394, and value 0.64705884.
10087     * It can be represented as a packed float with the constant {@code -0x1.14294ap125F}.
10088     * <pre>
10089     * <font style='background-color: #A5140A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A5140A; color: #000000'>&nbsp;@&nbsp;</font>
10090     * <font style='background-color: #A5140A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A5140A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A5140A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A5140A'>&nbsp;@&nbsp;</font><font style='background-color: #A5140A; color: #888888'>&nbsp;@&nbsp;</font>
10091     * <font style='background-color: #A5140A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A5140A; color: #ffffff'>&nbsp;@&nbsp;</font>
10092     * </pre>
10093     */
10094    public static final SColor AURORA_HOT_SAUCE = new SColor(0xA5140A, "Aurora Hot Sauce");
10095
10096    /**
10097     * This color constant "Aurora Lurid Red" has RGB code {@code 0xDA2010}, red 0.85490197, green 0.1254902, blue 0.0627451, alpha 1, hue 0.013201356, saturation 0.9266055, and value 0.85490197.
10098     * It can be represented as a packed float with the constant {@code -0x1.2041b4p125F}.
10099     * <pre>
10100     * <font style='background-color: #DA2010;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA2010; color: #000000'>&nbsp;@&nbsp;</font>
10101     * <font style='background-color: #DA2010;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DA2010'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DA2010'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DA2010'>&nbsp;@&nbsp;</font><font style='background-color: #DA2010; color: #888888'>&nbsp;@&nbsp;</font>
10102     * <font style='background-color: #DA2010;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA2010; color: #ffffff'>&nbsp;@&nbsp;</font>
10103     * </pre>
10104     */
10105    public static final SColor AURORA_LURID_RED = new SColor(0xDA2010, "Aurora Lurid Red");
10106
10107    /**
10108     * This color constant "Aurora Brick" has RGB code {@code 0xD5524A}, red 0.8352941, green 0.32156864, blue 0.2901961, alpha 1, hue 0.009592295, saturation 0.65258217, and value 0.8352941.
10109     * It can be represented as a packed float with the constant {@code -0x1.94a5aap125F}.
10110     * <pre>
10111     * <font style='background-color: #D5524A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D5524A; color: #000000'>&nbsp;@&nbsp;</font>
10112     * <font style='background-color: #D5524A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D5524A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D5524A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D5524A'>&nbsp;@&nbsp;</font><font style='background-color: #D5524A; color: #888888'>&nbsp;@&nbsp;</font>
10113     * <font style='background-color: #D5524A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D5524A; color: #ffffff'>&nbsp;@&nbsp;</font>
10114     * </pre>
10115     */
10116    public static final SColor AURORA_BRICK = new SColor(0xD5524A, "Aurora Brick");
10117
10118    /**
10119     * This color constant "Aurora Fusion Red" has RGB code {@code 0xFF3C0A}, red 1.0, green 0.23529412, blue 0.039215688, alpha 1, hue 0.03401375, saturation 0.9607843, and value 1.0.
10120     * It can be represented as a packed float with the constant {@code -0x1.1479fep125F}.
10121     * <pre>
10122     * <font style='background-color: #FF3C0A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF3C0A; color: #000000'>&nbsp;@&nbsp;</font>
10123     * <font style='background-color: #FF3C0A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF3C0A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF3C0A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF3C0A'>&nbsp;@&nbsp;</font><font style='background-color: #FF3C0A; color: #888888'>&nbsp;@&nbsp;</font>
10124     * <font style='background-color: #FF3C0A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF3C0A; color: #ffffff'>&nbsp;@&nbsp;</font>
10125     * </pre>
10126     */
10127    public static final SColor AURORA_FUSION_RED = new SColor(0xFF3C0A, "Aurora Fusion Red");
10128
10129    /**
10130     * This color constant "Aurora Embers" has RGB code {@code 0xF55A32}, red 0.9607843, green 0.3529412, blue 0.19607843, alpha 1, hue 0.03418815, saturation 0.7959184, and value 0.9607843.
10131     * It can be represented as a packed float with the constant {@code -0x1.64b5eap125F}.
10132     * <pre>
10133     * <font style='background-color: #F55A32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F55A32; color: #000000'>&nbsp;@&nbsp;</font>
10134     * <font style='background-color: #F55A32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F55A32'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F55A32'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F55A32'>&nbsp;@&nbsp;</font><font style='background-color: #F55A32; color: #888888'>&nbsp;@&nbsp;</font>
10135     * <font style='background-color: #F55A32;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F55A32; color: #ffffff'>&nbsp;@&nbsp;</font>
10136     * </pre>
10137     */
10138    public static final SColor AURORA_EMBERS = new SColor(0xF55A32, "Aurora Embers");
10139
10140    /**
10141     * This color constant "Aurora Salmon" has RGB code {@code 0xFF6262}, red 1.0, green 0.38431373, blue 0.38431373, alpha 1, hue 0.0, saturation 0.6156863, and value 1.0.
10142     * It can be represented as a packed float with the constant {@code -0x1.c4c5fep125F}.
10143     * <pre>
10144     * <font style='background-color: #FF6262;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF6262; color: #000000'>&nbsp;@&nbsp;</font>
10145     * <font style='background-color: #FF6262;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF6262'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF6262'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF6262'>&nbsp;@&nbsp;</font><font style='background-color: #FF6262; color: #888888'>&nbsp;@&nbsp;</font>
10146     * <font style='background-color: #FF6262;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF6262; color: #ffffff'>&nbsp;@&nbsp;</font>
10147     * </pre>
10148     */
10149    public static final SColor AURORA_SALMON = new SColor(0xFF6262, "Aurora Salmon");
10150
10151    /**
10152     * This color constant "Aurora Taxicab Yellow" has RGB code {@code 0xF6BD31}, red 0.9647059, green 0.7411765, blue 0.19215687, alpha 1, hue 0.11844337, saturation 0.800813, and value 0.9647059.
10153     * It can be represented as a packed float with the constant {@code -0x1.637becp125F}.
10154     * <pre>
10155     * <font style='background-color: #F6BD31;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F6BD31; color: #000000'>&nbsp;@&nbsp;</font>
10156     * <font style='background-color: #F6BD31;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F6BD31'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F6BD31'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F6BD31'>&nbsp;@&nbsp;</font><font style='background-color: #F6BD31; color: #888888'>&nbsp;@&nbsp;</font>
10157     * <font style='background-color: #F6BD31;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F6BD31; color: #ffffff'>&nbsp;@&nbsp;</font>
10158     * </pre>
10159     */
10160    public static final SColor AURORA_TAXICAB_YELLOW = new SColor(0xF6BD31, "Aurora Taxicab Yellow");
10161
10162    /**
10163     * This color constant "Aurora Apricot" has RGB code {@code 0xFFA53C}, red 1.0, green 0.64705884, blue 0.23529412, alpha 1, hue 0.089743614, saturation 0.7647059, and value 1.0.
10164     * It can be represented as a packed float with the constant {@code -0x1.794bfep125F}.
10165     * <pre>
10166     * <font style='background-color: #FFA53C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA53C; color: #000000'>&nbsp;@&nbsp;</font>
10167     * <font style='background-color: #FFA53C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFA53C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFA53C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFA53C'>&nbsp;@&nbsp;</font><font style='background-color: #FFA53C; color: #888888'>&nbsp;@&nbsp;</font>
10168     * <font style='background-color: #FFA53C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFA53C; color: #ffffff'>&nbsp;@&nbsp;</font>
10169     * </pre>
10170     */
10171    public static final SColor AURORA_APRICOT = new SColor(0xFFA53C, "Aurora Apricot");
10172
10173    /**
10174     * This color constant "Aurora Burnt Yellow" has RGB code {@code 0xD79B0F}, red 0.84313726, green 0.60784316, blue 0.05882353, alpha 1, hue 0.116666794, saturation 0.9302326, and value 0.84313726.
10175     * It can be represented as a packed float with the constant {@code -0x1.1f37aep125F}.
10176     * <pre>
10177     * <font style='background-color: #D79B0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D79B0F; color: #000000'>&nbsp;@&nbsp;</font>
10178     * <font style='background-color: #D79B0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D79B0F'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D79B0F'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D79B0F'>&nbsp;@&nbsp;</font><font style='background-color: #D79B0F; color: #888888'>&nbsp;@&nbsp;</font>
10179     * <font style='background-color: #D79B0F;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D79B0F; color: #ffffff'>&nbsp;@&nbsp;</font>
10180     * </pre>
10181     */
10182    public static final SColor AURORA_BURNT_YELLOW = new SColor(0xD79B0F, "Aurora Burnt Yellow");
10183
10184    /**
10185     * This color constant "Aurora Dry Pepper" has RGB code {@code 0xDA6E0A}, red 0.85490197, green 0.43137255, blue 0.039215688, alpha 1, hue 0.08012831, saturation 0.95412844, and value 0.85490197.
10186     * It can be represented as a packed float with the constant {@code -0x1.14ddb4p125F}.
10187     * <pre>
10188     * <font style='background-color: #DA6E0A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA6E0A; color: #000000'>&nbsp;@&nbsp;</font>
10189     * <font style='background-color: #DA6E0A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DA6E0A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DA6E0A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DA6E0A'>&nbsp;@&nbsp;</font><font style='background-color: #DA6E0A; color: #888888'>&nbsp;@&nbsp;</font>
10190     * <font style='background-color: #DA6E0A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA6E0A; color: #ffffff'>&nbsp;@&nbsp;</font>
10191     * </pre>
10192     */
10193    public static final SColor AURORA_DRY_PEPPER = new SColor(0xDA6E0A, "Aurora Dry Pepper");
10194
10195    /**
10196     * This color constant "Aurora Redwood" has RGB code {@code 0xB45A00}, red 0.7058824, green 0.3529412, blue 0.0, alpha 1, hue 0.083333254, saturation 1.0, and value 0.7058824.
10197     * It can be represented as a packed float with the constant {@code -0x1.00b568p125F}.
10198     * <pre>
10199     * <font style='background-color: #B45A00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B45A00; color: #000000'>&nbsp;@&nbsp;</font>
10200     * <font style='background-color: #B45A00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B45A00'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B45A00'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B45A00'>&nbsp;@&nbsp;</font><font style='background-color: #B45A00; color: #888888'>&nbsp;@&nbsp;</font>
10201     * <font style='background-color: #B45A00;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B45A00; color: #ffffff'>&nbsp;@&nbsp;</font>
10202     * </pre>
10203     */
10204    public static final SColor AURORA_REDWOOD = new SColor(0xB45A00, "Aurora Redwood");
10205
10206    /**
10207     * This color constant "Aurora Koa" has RGB code {@code 0xA04B05}, red 0.627451, green 0.29411766, blue 0.019607844, alpha 1, hue 0.075268745, saturation 0.96875, and value 0.627451.
10208     * It can be represented as a packed float with the constant {@code -0x1.0a974p125F}.
10209     * <pre>
10210     * <font style='background-color: #A04B05;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A04B05; color: #000000'>&nbsp;@&nbsp;</font>
10211     * <font style='background-color: #A04B05;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A04B05'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A04B05'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A04B05'>&nbsp;@&nbsp;</font><font style='background-color: #A04B05; color: #888888'>&nbsp;@&nbsp;</font>
10212     * <font style='background-color: #A04B05;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A04B05; color: #ffffff'>&nbsp;@&nbsp;</font>
10213     * </pre>
10214     */
10215    public static final SColor AURORA_KOA = new SColor(0xA04B05, "Aurora Koa");
10216
10217    /**
10218     * This color constant "Aurora Ochre" has RGB code {@code 0x5F3214}, red 0.37254903, green 0.19607843, blue 0.078431375, alpha 1, hue 0.0666666, saturation 0.7894737, and value 0.37254903.
10219     * It can be represented as a packed float with the constant {@code -0x1.2864bep125F}.
10220     * <pre>
10221     * <font style='background-color: #5F3214;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5F3214; color: #000000'>&nbsp;@&nbsp;</font>
10222     * <font style='background-color: #5F3214;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5F3214'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5F3214'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5F3214'>&nbsp;@&nbsp;</font><font style='background-color: #5F3214; color: #888888'>&nbsp;@&nbsp;</font>
10223     * <font style='background-color: #5F3214;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5F3214; color: #ffffff'>&nbsp;@&nbsp;</font>
10224     * </pre>
10225     */
10226    public static final SColor AURORA_OCHRE = new SColor(0x5F3214, "Aurora Ochre");
10227
10228    /**
10229     * This color constant "Aurora Dull Green" has RGB code {@code 0x53500A}, red 0.3254902, green 0.3137255, blue 0.039215688, alpha 1, hue 0.15981734, saturation 0.8795181, and value 0.3254902.
10230     * It can be represented as a packed float with the constant {@code -0x1.14a0a6p125F}.
10231     * <pre>
10232     * <font style='background-color: #53500A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #53500A; color: #000000'>&nbsp;@&nbsp;</font>
10233     * <font style='background-color: #53500A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #53500A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #53500A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #53500A'>&nbsp;@&nbsp;</font><font style='background-color: #53500A; color: #888888'>&nbsp;@&nbsp;</font>
10234     * <font style='background-color: #53500A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #53500A; color: #ffffff'>&nbsp;@&nbsp;</font>
10235     * </pre>
10236     */
10237    public static final SColor AURORA_DULL_GREEN = new SColor(0x53500A, "Aurora Dull Green");
10238
10239    /**
10240     * This color constant "Aurora Army Green" has RGB code {@code 0x626200}, red 0.38431373, green 0.38431373, blue 0.0, alpha 1, hue 0.16666675, saturation 1.0, and value 0.38431373.
10241     * It can be represented as a packed float with the constant {@code -0x1.00c4c4p125F}.
10242     * <pre>
10243     * <font style='background-color: #626200;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #626200; color: #000000'>&nbsp;@&nbsp;</font>
10244     * <font style='background-color: #626200;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #626200'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #626200'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #626200'>&nbsp;@&nbsp;</font><font style='background-color: #626200; color: #888888'>&nbsp;@&nbsp;</font>
10245     * <font style='background-color: #626200;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #626200; color: #ffffff'>&nbsp;@&nbsp;</font>
10246     * </pre>
10247     */
10248    public static final SColor AURORA_ARMY_GREEN = new SColor(0x626200, "Aurora Army Green");
10249
10250    /**
10251     * This color constant "Aurora Driftwood" has RGB code {@code 0x8C805A}, red 0.54901963, green 0.5019608, blue 0.3529412, alpha 1, hue 0.12666655, saturation 0.35714287, and value 0.54901963.
10252     * It can be represented as a packed float with the constant {@code -0x1.b50118p125F}.
10253     * <pre>
10254     * <font style='background-color: #8C805A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C805A; color: #000000'>&nbsp;@&nbsp;</font>
10255     * <font style='background-color: #8C805A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8C805A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8C805A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8C805A'>&nbsp;@&nbsp;</font><font style='background-color: #8C805A; color: #888888'>&nbsp;@&nbsp;</font>
10256     * <font style='background-color: #8C805A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C805A; color: #ffffff'>&nbsp;@&nbsp;</font>
10257     * </pre>
10258     */
10259    public static final SColor AURORA_DRIFTWOOD = new SColor(0x8C805A, "Aurora Driftwood");
10260
10261    /**
10262     * This color constant "Aurora Dry Brush" has RGB code {@code 0xAC9400}, red 0.6745098, green 0.5803922, blue 0.0, alpha 1, hue 0.1434108, saturation 1.0, and value 0.6745098.
10263     * It can be represented as a packed float with the constant {@code -0x1.012958p125F}.
10264     * <pre>
10265     * <font style='background-color: #AC9400;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AC9400; color: #000000'>&nbsp;@&nbsp;</font>
10266     * <font style='background-color: #AC9400;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #AC9400'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #AC9400'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #AC9400'>&nbsp;@&nbsp;</font><font style='background-color: #AC9400; color: #888888'>&nbsp;@&nbsp;</font>
10267     * <font style='background-color: #AC9400;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #AC9400; color: #ffffff'>&nbsp;@&nbsp;</font>
10268     * </pre>
10269     */
10270    public static final SColor AURORA_DRY_BRUSH = new SColor(0xAC9400, "Aurora Dry Brush");
10271
10272    /**
10273     * This color constant "Aurora Mush" has RGB code {@code 0xB1B10A}, red 0.69411767, green 0.69411767, blue 0.039215688, alpha 1, hue 0.16666663, saturation 0.94350284, and value 0.69411767.
10274     * It can be represented as a packed float with the constant {@code -0x1.156362p125F}.
10275     * <pre>
10276     * <font style='background-color: #B1B10A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B1B10A; color: #000000'>&nbsp;@&nbsp;</font>
10277     * <font style='background-color: #B1B10A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B1B10A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B1B10A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B1B10A'>&nbsp;@&nbsp;</font><font style='background-color: #B1B10A; color: #888888'>&nbsp;@&nbsp;</font>
10278     * <font style='background-color: #B1B10A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B1B10A; color: #ffffff'>&nbsp;@&nbsp;</font>
10279     * </pre>
10280     */
10281    public static final SColor AURORA_MUSH = new SColor(0xB1B10A, "Aurora Mush");
10282
10283    /**
10284     * This color constant "Aurora Banana Pudding" has RGB code {@code 0xE6D55A}, red 0.9019608, green 0.8352941, blue 0.3529412, alpha 1, hue 0.14642859, saturation 0.6086956, and value 0.9019608.
10285     * It can be represented as a packed float with the constant {@code -0x1.b5abccp125F}.
10286     * <pre>
10287     * <font style='background-color: #E6D55A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E6D55A; color: #000000'>&nbsp;@&nbsp;</font>
10288     * <font style='background-color: #E6D55A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E6D55A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E6D55A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E6D55A'>&nbsp;@&nbsp;</font><font style='background-color: #E6D55A; color: #888888'>&nbsp;@&nbsp;</font>
10289     * <font style='background-color: #E6D55A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E6D55A; color: #ffffff'>&nbsp;@&nbsp;</font>
10290     * </pre>
10291     */
10292    public static final SColor AURORA_BANANA_PUDDING = new SColor(0xE6D55A, "Aurora Banana Pudding");
10293
10294    /**
10295     * This color constant "Aurora Saffron" has RGB code {@code 0xFFD510}, red 1.0, green 0.8352941, blue 0.0627451, alpha 1, hue 0.13737798, saturation 0.9372549, and value 1.0.
10296     * It can be represented as a packed float with the constant {@code -0x1.21abfep125F}.
10297     * <pre>
10298     * <font style='background-color: #FFD510;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFD510; color: #000000'>&nbsp;@&nbsp;</font>
10299     * <font style='background-color: #FFD510;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFD510'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFD510'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFD510'>&nbsp;@&nbsp;</font><font style='background-color: #FFD510; color: #888888'>&nbsp;@&nbsp;</font>
10300     * <font style='background-color: #FFD510;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFD510; color: #ffffff'>&nbsp;@&nbsp;</font>
10301     * </pre>
10302     */
10303    public static final SColor AURORA_SAFFRON = new SColor(0xFFD510, "Aurora Saffron");
10304
10305    /**
10306     * This color constant "Aurora Pencil Yellow" has RGB code {@code 0xFFEA4A}, red 1.0, green 0.91764706, blue 0.2901961, alpha 1, hue 0.14732957, saturation 0.70980394, and value 1.0.
10307     * It can be represented as a packed float with the constant {@code -0x1.95d5fep125F}.
10308     * <pre>
10309     * <font style='background-color: #FFEA4A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFEA4A; color: #000000'>&nbsp;@&nbsp;</font>
10310     * <font style='background-color: #FFEA4A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FFEA4A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FFEA4A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FFEA4A'>&nbsp;@&nbsp;</font><font style='background-color: #FFEA4A; color: #888888'>&nbsp;@&nbsp;</font>
10311     * <font style='background-color: #FFEA4A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FFEA4A; color: #ffffff'>&nbsp;@&nbsp;</font>
10312     * </pre>
10313     */
10314    public static final SColor AURORA_PENCIL_YELLOW = new SColor(0xFFEA4A, "Aurora Pencil Yellow");
10315
10316    /**
10317     * This color constant "Aurora Chartreuse" has RGB code {@code 0xC8FF41}, red 0.78431374, green 1.0, blue 0.25490198, alpha 1, hue 0.21491218, saturation 0.745098, and value 1.0.
10318     * It can be represented as a packed float with the constant {@code -0x1.83ff9p125F}.
10319     * <pre>
10320     * <font style='background-color: #C8FF41;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C8FF41; color: #000000'>&nbsp;@&nbsp;</font>
10321     * <font style='background-color: #C8FF41;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C8FF41'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C8FF41'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C8FF41'>&nbsp;@&nbsp;</font><font style='background-color: #C8FF41; color: #888888'>&nbsp;@&nbsp;</font>
10322     * <font style='background-color: #C8FF41;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C8FF41; color: #ffffff'>&nbsp;@&nbsp;</font>
10323     * </pre>
10324     */
10325    public static final SColor AURORA_CHARTREUSE = new SColor(0xC8FF41, "Aurora Chartreuse");
10326
10327    /**
10328     * This color constant "Aurora Absinthe" has RGB code {@code 0x9BF046}, red 0.60784316, green 0.9411765, blue 0.27450982, alpha 1, hue 0.25, saturation 0.7083333, and value 0.9411765.
10329     * It can be represented as a packed float with the constant {@code -0x1.8de136p125F}.
10330     * <pre>
10331     * <font style='background-color: #9BF046;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9BF046; color: #000000'>&nbsp;@&nbsp;</font>
10332     * <font style='background-color: #9BF046;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9BF046'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9BF046'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9BF046'>&nbsp;@&nbsp;</font><font style='background-color: #9BF046; color: #888888'>&nbsp;@&nbsp;</font>
10333     * <font style='background-color: #9BF046;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9BF046; color: #ffffff'>&nbsp;@&nbsp;</font>
10334     * </pre>
10335     */
10336    public static final SColor AURORA_ABSINTHE = new SColor(0x9BF046, "Aurora Absinthe");
10337
10338    /**
10339     * This color constant "Aurora Infection" has RGB code {@code 0x96DC19}, red 0.5882353, green 0.8627451, blue 0.09803922, alpha 1, hue 0.22649574, saturation 0.8863636, and value 0.8627451.
10340     * It can be represented as a packed float with the constant {@code -0x1.33b92cp125F}.
10341     * <pre>
10342     * <font style='background-color: #96DC19;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #96DC19; color: #000000'>&nbsp;@&nbsp;</font>
10343     * <font style='background-color: #96DC19;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #96DC19'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #96DC19'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #96DC19'>&nbsp;@&nbsp;</font><font style='background-color: #96DC19; color: #888888'>&nbsp;@&nbsp;</font>
10344     * <font style='background-color: #96DC19;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #96DC19; color: #ffffff'>&nbsp;@&nbsp;</font>
10345     * </pre>
10346     */
10347    public static final SColor AURORA_INFECTION = new SColor(0x96DC19, "Aurora Infection");
10348
10349    /**
10350     * This color constant "Aurora Frog Green" has RGB code {@code 0x73C805}, red 0.4509804, green 0.78431374, blue 0.019607844, alpha 1, hue 0.23931623, saturation 0.975, and value 0.78431374.
10351     * It can be represented as a packed float with the constant {@code -0x1.0b90e6p125F}.
10352     * <pre>
10353     * <font style='background-color: #73C805;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73C805; color: #000000'>&nbsp;@&nbsp;</font>
10354     * <font style='background-color: #73C805;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #73C805'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #73C805'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #73C805'>&nbsp;@&nbsp;</font><font style='background-color: #73C805; color: #888888'>&nbsp;@&nbsp;</font>
10355     * <font style='background-color: #73C805;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #73C805; color: #ffffff'>&nbsp;@&nbsp;</font>
10356     * </pre>
10357     */
10358    public static final SColor AURORA_FROG_GREEN = new SColor(0x73C805, "Aurora Frog Green");
10359
10360    /**
10361     * This color constant "Aurora Avocado" has RGB code {@code 0x6AA805}, red 0.41568628, green 0.65882355, blue 0.019607844, alpha 1, hue 0.23006141, saturation 0.9702381, and value 0.65882355.
10362     * It can be represented as a packed float with the constant {@code -0x1.0b50d4p125F}.
10363     * <pre>
10364     * <font style='background-color: #6AA805;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6AA805; color: #000000'>&nbsp;@&nbsp;</font>
10365     * <font style='background-color: #6AA805;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6AA805'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6AA805'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6AA805'>&nbsp;@&nbsp;</font><font style='background-color: #6AA805; color: #888888'>&nbsp;@&nbsp;</font>
10366     * <font style='background-color: #6AA805;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6AA805; color: #ffffff'>&nbsp;@&nbsp;</font>
10367     * </pre>
10368     */
10369    public static final SColor AURORA_AVOCADO = new SColor(0x6AA805, "Aurora Avocado");
10370
10371    /**
10372     * This color constant "Aurora Woodlands" has RGB code {@code 0x3C6E14}, red 0.23529412, green 0.43137255, blue 0.078431375, alpha 1, hue 0.25925934, saturation 0.8181818, and value 0.43137255.
10373     * It can be represented as a packed float with the constant {@code -0x1.28dc78p125F}.
10374     * <pre>
10375     * <font style='background-color: #3C6E14;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3C6E14; color: #000000'>&nbsp;@&nbsp;</font>
10376     * <font style='background-color: #3C6E14;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3C6E14'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3C6E14'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3C6E14'>&nbsp;@&nbsp;</font><font style='background-color: #3C6E14; color: #888888'>&nbsp;@&nbsp;</font>
10377     * <font style='background-color: #3C6E14;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3C6E14; color: #ffffff'>&nbsp;@&nbsp;</font>
10378     * </pre>
10379     */
10380    public static final SColor AURORA_WOODLANDS = new SColor(0x3C6E14, "Aurora Woodlands");
10381
10382    /**
10383     * This color constant "Aurora Dark Pine" has RGB code {@code 0x283405}, red 0.15686275, green 0.20392157, blue 0.019607844, alpha 1, hue 0.20921993, saturation 0.90384614, and value 0.20392157.
10384     * It can be represented as a packed float with the constant {@code -0x1.0a685p125F}.
10385     * <pre>
10386     * <font style='background-color: #283405;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #283405; color: #000000'>&nbsp;@&nbsp;</font>
10387     * <font style='background-color: #283405;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #283405'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #283405'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #283405'>&nbsp;@&nbsp;</font><font style='background-color: #283405; color: #888888'>&nbsp;@&nbsp;</font>
10388     * <font style='background-color: #283405;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #283405; color: #ffffff'>&nbsp;@&nbsp;</font>
10389     * </pre>
10390     */
10391    public static final SColor AURORA_DARK_PINE = new SColor(0x283405, "Aurora Dark Pine");
10392
10393    /**
10394     * This color constant "Aurora Moss Green" has RGB code {@code 0x204608}, red 0.1254902, green 0.27450982, blue 0.03137255, alpha 1, hue 0.2688173, saturation 0.8857143, and value 0.27450982.
10395     * It can be represented as a packed float with the constant {@code -0x1.108c4p125F}.
10396     * <pre>
10397     * <font style='background-color: #204608;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #204608; color: #000000'>&nbsp;@&nbsp;</font>
10398     * <font style='background-color: #204608;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #204608'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #204608'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #204608'>&nbsp;@&nbsp;</font><font style='background-color: #204608; color: #888888'>&nbsp;@&nbsp;</font>
10399     * <font style='background-color: #204608;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #204608; color: #ffffff'>&nbsp;@&nbsp;</font>
10400     * </pre>
10401     */
10402    public static final SColor AURORA_MOSS_GREEN = new SColor(0x204608, "Aurora Moss Green");
10403
10404    /**
10405     * This color constant "Aurora Fern Green" has RGB code {@code 0x0C5C0C}, red 0.047058824, green 0.36078432, blue 0.047058824, alpha 1, hue 0.33333337, saturation 0.86956525, and value 0.36078432.
10406     * It can be represented as a packed float with the constant {@code -0x1.18b818p125F}.
10407     * <pre>
10408     * <font style='background-color: #0C5C0C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0C5C0C; color: #000000'>&nbsp;@&nbsp;</font>
10409     * <font style='background-color: #0C5C0C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0C5C0C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0C5C0C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0C5C0C'>&nbsp;@&nbsp;</font><font style='background-color: #0C5C0C; color: #888888'>&nbsp;@&nbsp;</font>
10410     * <font style='background-color: #0C5C0C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0C5C0C; color: #ffffff'>&nbsp;@&nbsp;</font>
10411     * </pre>
10412     */
10413    public static final SColor AURORA_FERN_GREEN = new SColor(0x0C5C0C, "Aurora Fern Green");
10414
10415    /**
10416     * This color constant "Aurora Forest Glen" has RGB code {@code 0x149605}, red 0.078431375, green 0.5882353, blue 0.019607844, alpha 1, hue 0.316092, saturation 0.9666667, and value 0.5882353.
10417     * It can be represented as a packed float with the constant {@code -0x1.0b2c28p125F}.
10418     * <pre>
10419     * <font style='background-color: #149605;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #149605; color: #000000'>&nbsp;@&nbsp;</font>
10420     * <font style='background-color: #149605;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #149605'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #149605'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #149605'>&nbsp;@&nbsp;</font><font style='background-color: #149605; color: #888888'>&nbsp;@&nbsp;</font>
10421     * <font style='background-color: #149605;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #149605; color: #ffffff'>&nbsp;@&nbsp;</font>
10422     * </pre>
10423     */
10424    public static final SColor AURORA_FOREST_GLEN = new SColor(0x149605, "Aurora Forest Glen");
10425
10426    /**
10427     * This color constant "Aurora Malachite" has RGB code {@code 0x0AD70A}, red 0.039215688, green 0.84313726, blue 0.039215688, alpha 1, hue 0.33333325, saturation 0.95348835, and value 0.84313726.
10428     * It can be represented as a packed float with the constant {@code -0x1.15ae14p125F}.
10429     * <pre>
10430     * <font style='background-color: #0AD70A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0AD70A; color: #000000'>&nbsp;@&nbsp;</font>
10431     * <font style='background-color: #0AD70A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0AD70A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0AD70A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0AD70A'>&nbsp;@&nbsp;</font><font style='background-color: #0AD70A; color: #888888'>&nbsp;@&nbsp;</font>
10432     * <font style='background-color: #0AD70A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0AD70A; color: #ffffff'>&nbsp;@&nbsp;</font>
10433     * </pre>
10434     */
10435    public static final SColor AURORA_MALACHITE = new SColor(0x0AD70A, "Aurora Malachite");
10436
10437    /**
10438     * This color constant "Aurora Apple Green" has RGB code {@code 0x14E60A}, red 0.078431375, green 0.9019608, blue 0.039215688, alpha 1, hue 0.3257575, saturation 0.95652175, and value 0.9019608.
10439     * It can be represented as a packed float with the constant {@code -0x1.15cc28p125F}.
10440     * <pre>
10441     * <font style='background-color: #14E60A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #14E60A; color: #000000'>&nbsp;@&nbsp;</font>
10442     * <font style='background-color: #14E60A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #14E60A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #14E60A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #14E60A'>&nbsp;@&nbsp;</font><font style='background-color: #14E60A; color: #888888'>&nbsp;@&nbsp;</font>
10443     * <font style='background-color: #14E60A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #14E60A; color: #ffffff'>&nbsp;@&nbsp;</font>
10444     * </pre>
10445     */
10446    public static final SColor AURORA_APPLE_GREEN = new SColor(0x14E60A, "Aurora Apple Green");
10447
10448    /**
10449     * This color constant "Aurora Celery" has RGB code {@code 0x7DFF73}, red 0.49019608, green 1.0, blue 0.4509804, alpha 1, hue 0.32142854, saturation 0.5490196, and value 1.0.
10450     * It can be represented as a packed float with the constant {@code -0x1.e7fefap125F}.
10451     * <pre>
10452     * <font style='background-color: #7DFF73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7DFF73; color: #000000'>&nbsp;@&nbsp;</font>
10453     * <font style='background-color: #7DFF73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7DFF73'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7DFF73'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7DFF73'>&nbsp;@&nbsp;</font><font style='background-color: #7DFF73; color: #888888'>&nbsp;@&nbsp;</font>
10454     * <font style='background-color: #7DFF73;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7DFF73; color: #ffffff'>&nbsp;@&nbsp;</font>
10455     * </pre>
10456     */
10457    public static final SColor AURORA_CELERY = new SColor(0x7DFF73, "Aurora Celery");
10458
10459    /**
10460     * This color constant "Aurora Mint Green" has RGB code {@code 0x4BF05A}, red 0.29411766, green 0.9411765, blue 0.3529412, alpha 1, hue 0.34848487, saturation 0.6875, and value 0.9411765.
10461     * It can be represented as a packed float with the constant {@code -0x1.b5e096p125F}.
10462     * <pre>
10463     * <font style='background-color: #4BF05A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4BF05A; color: #000000'>&nbsp;@&nbsp;</font>
10464     * <font style='background-color: #4BF05A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4BF05A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4BF05A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4BF05A'>&nbsp;@&nbsp;</font><font style='background-color: #4BF05A; color: #888888'>&nbsp;@&nbsp;</font>
10465     * <font style='background-color: #4BF05A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4BF05A; color: #ffffff'>&nbsp;@&nbsp;</font>
10466     * </pre>
10467     */
10468    public static final SColor AURORA_MINT_GREEN = new SColor(0x4BF05A, "Aurora Mint Green");
10469
10470    /**
10471     * This color constant "Aurora Emerald" has RGB code {@code 0x00C514}, red 0.0, green 0.77254903, blue 0.078431375, alpha 1, hue 0.35025382, saturation 1.0, and value 0.77254903.
10472     * It can be represented as a packed float with the constant {@code -0x1.298ap125F}.
10473     * <pre>
10474     * <font style='background-color: #00C514;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00C514; color: #000000'>&nbsp;@&nbsp;</font>
10475     * <font style='background-color: #00C514;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00C514'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00C514'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00C514'>&nbsp;@&nbsp;</font><font style='background-color: #00C514; color: #888888'>&nbsp;@&nbsp;</font>
10476     * <font style='background-color: #00C514;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00C514; color: #ffffff'>&nbsp;@&nbsp;</font>
10477     * </pre>
10478     */
10479    public static final SColor AURORA_EMERALD = new SColor(0x00C514, "Aurora Emerald");
10480
10481    /**
10482     * This color constant "Aurora Prase" has RGB code {@code 0x05B450}, red 0.019607844, green 0.7058824, blue 0.3137255, alpha 1, hue 0.4047619, saturation 0.9722222, and value 0.7058824.
10483     * It can be represented as a packed float with the constant {@code -0x1.a1680ap125F}.
10484     * <pre>
10485     * <font style='background-color: #05B450;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #05B450; color: #000000'>&nbsp;@&nbsp;</font>
10486     * <font style='background-color: #05B450;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #05B450'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #05B450'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #05B450'>&nbsp;@&nbsp;</font><font style='background-color: #05B450; color: #888888'>&nbsp;@&nbsp;</font>
10487     * <font style='background-color: #05B450;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #05B450; color: #ffffff'>&nbsp;@&nbsp;</font>
10488     * </pre>
10489     */
10490    public static final SColor AURORA_PRASE = new SColor(0x05B450, "Aurora Prase");
10491
10492    /**
10493     * This color constant "Aurora Eucalyptus" has RGB code {@code 0x1C8C4E}, red 0.10980392, green 0.54901963, blue 0.30588236, alpha 1, hue 0.4077381, saturation 0.8, and value 0.54901963.
10494     * It can be represented as a packed float with the constant {@code -0x1.9d1838p125F}.
10495     * <pre>
10496     * <font style='background-color: #1C8C4E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1C8C4E; color: #000000'>&nbsp;@&nbsp;</font>
10497     * <font style='background-color: #1C8C4E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #1C8C4E'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #1C8C4E'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #1C8C4E'>&nbsp;@&nbsp;</font><font style='background-color: #1C8C4E; color: #888888'>&nbsp;@&nbsp;</font>
10498     * <font style='background-color: #1C8C4E;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #1C8C4E; color: #ffffff'>&nbsp;@&nbsp;</font>
10499     * </pre>
10500     */
10501    public static final SColor AURORA_EUCALYPTUS = new SColor(0x1C8C4E, "Aurora Eucalyptus");
10502
10503    /**
10504     * This color constant "Aurora Zucchini" has RGB code {@code 0x123832}, red 0.07058824, green 0.21960784, blue 0.19607843, alpha 1, hue 0.4736842, saturation 0.6785714, and value 0.21960784.
10505     * It can be represented as a packed float with the constant {@code -0x1.647024p125F}.
10506     * <pre>
10507     * <font style='background-color: #123832;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #123832; color: #000000'>&nbsp;@&nbsp;</font>
10508     * <font style='background-color: #123832;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #123832'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #123832'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #123832'>&nbsp;@&nbsp;</font><font style='background-color: #123832; color: #888888'>&nbsp;@&nbsp;</font>
10509     * <font style='background-color: #123832;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #123832; color: #ffffff'>&nbsp;@&nbsp;</font>
10510     * </pre>
10511     */
10512    public static final SColor AURORA_ZUCCHINI = new SColor(0x123832, "Aurora Zucchini");
10513
10514    /**
10515     * This color constant "Aurora Soft Teal" has RGB code {@code 0x129880}, red 0.07058824, green 0.59607846, blue 0.5019608, alpha 1, hue 0.47014928, saturation 0.881579, and value 0.59607846.
10516     * It can be represented as a packed float with the constant {@code -0x1.013024p126F}.
10517     * <pre>
10518     * <font style='background-color: #129880;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #129880; color: #000000'>&nbsp;@&nbsp;</font>
10519     * <font style='background-color: #129880;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #129880'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #129880'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #129880'>&nbsp;@&nbsp;</font><font style='background-color: #129880; color: #888888'>&nbsp;@&nbsp;</font>
10520     * <font style='background-color: #129880;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #129880; color: #ffffff'>&nbsp;@&nbsp;</font>
10521     * </pre>
10522     */
10523    public static final SColor AURORA_SOFT_TEAL = new SColor(0x129880, "Aurora Soft Teal");
10524
10525    /**
10526     * This color constant "Aurora Medium Teal" has RGB code {@code 0x06C491}, red 0.023529412, green 0.76862746, blue 0.5686275, alpha 1, hue 0.45526314, saturation 0.96938777, and value 0.76862746.
10527     * It can be represented as a packed float with the constant {@code -0x1.23880cp126F}.
10528     * <pre>
10529     * <font style='background-color: #06C491;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #06C491; color: #000000'>&nbsp;@&nbsp;</font>
10530     * <font style='background-color: #06C491;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #06C491'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #06C491'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #06C491'>&nbsp;@&nbsp;</font><font style='background-color: #06C491; color: #888888'>&nbsp;@&nbsp;</font>
10531     * <font style='background-color: #06C491;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #06C491; color: #ffffff'>&nbsp;@&nbsp;</font>
10532     * </pre>
10533     */
10534    public static final SColor AURORA_MEDIUM_TEAL = new SColor(0x06C491, "Aurora Medium Teal");
10535
10536    /**
10537     * This color constant "Aurora Spring Green" has RGB code {@code 0x00DE6A}, red 0.0, green 0.87058824, blue 0.41568628, alpha 1, hue 0.41291285, saturation 1.0, and value 0.87058824.
10538     * It can be represented as a packed float with the constant {@code -0x1.d5bcp125F}.
10539     * <pre>
10540     * <font style='background-color: #00DE6A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00DE6A; color: #000000'>&nbsp;@&nbsp;</font>
10541     * <font style='background-color: #00DE6A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00DE6A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00DE6A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00DE6A'>&nbsp;@&nbsp;</font><font style='background-color: #00DE6A; color: #888888'>&nbsp;@&nbsp;</font>
10542     * <font style='background-color: #00DE6A;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00DE6A; color: #ffffff'>&nbsp;@&nbsp;</font>
10543     * </pre>
10544     */
10545    public static final SColor AURORA_SPRING_GREEN = new SColor(0x00DE6A, "Aurora Spring Green");
10546
10547    /**
10548     * This color constant "Aurora Turquoise" has RGB code {@code 0x2DEBA8}, red 0.1764706, green 0.92156863, blue 0.65882355, alpha 1, hue 0.44122815, saturation 0.80851066, and value 0.92156863.
10549     * It can be represented as a packed float with the constant {@code -0x1.51d65ap126F}.
10550     * <pre>
10551     * <font style='background-color: #2DEBA8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2DEBA8; color: #000000'>&nbsp;@&nbsp;</font>
10552     * <font style='background-color: #2DEBA8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2DEBA8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2DEBA8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2DEBA8'>&nbsp;@&nbsp;</font><font style='background-color: #2DEBA8; color: #888888'>&nbsp;@&nbsp;</font>
10553     * <font style='background-color: #2DEBA8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2DEBA8; color: #ffffff'>&nbsp;@&nbsp;</font>
10554     * </pre>
10555     */
10556    public static final SColor AURORA_TURQUOISE = new SColor(0x2DEBA8, "Aurora Turquoise");
10557
10558    /**
10559     * This color constant "Aurora Seafoam" has RGB code {@code 0x3CFEA5}, red 0.23529412, green 0.99607843, blue 0.64705884, alpha 1, hue 0.42353952, saturation 0.7637795, and value 0.99607843.
10560     * It can be represented as a packed float with the constant {@code -0x1.4bfc78p126F}.
10561     * <pre>
10562     * <font style='background-color: #3CFEA5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3CFEA5; color: #000000'>&nbsp;@&nbsp;</font>
10563     * <font style='background-color: #3CFEA5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3CFEA5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3CFEA5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3CFEA5'>&nbsp;@&nbsp;</font><font style='background-color: #3CFEA5; color: #888888'>&nbsp;@&nbsp;</font>
10564     * <font style='background-color: #3CFEA5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3CFEA5; color: #ffffff'>&nbsp;@&nbsp;</font>
10565     * </pre>
10566     */
10567    public static final SColor AURORA_SEAFOAM = new SColor(0x3CFEA5, "Aurora Seafoam");
10568
10569    /**
10570     * This color constant "Aurora Variscite" has RGB code {@code 0x6AFFCD}, red 0.41568628, green 1.0, blue 0.8039216, alpha 1, hue 0.44407153, saturation 0.58431375, and value 1.0.
10571     * It can be represented as a packed float with the constant {@code -0x1.9bfed4p126F}.
10572     * <pre>
10573     * <font style='background-color: #6AFFCD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6AFFCD; color: #000000'>&nbsp;@&nbsp;</font>
10574     * <font style='background-color: #6AFFCD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6AFFCD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6AFFCD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6AFFCD'>&nbsp;@&nbsp;</font><font style='background-color: #6AFFCD; color: #888888'>&nbsp;@&nbsp;</font>
10575     * <font style='background-color: #6AFFCD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6AFFCD; color: #ffffff'>&nbsp;@&nbsp;</font>
10576     * </pre>
10577     */
10578    public static final SColor AURORA_VARISCITE = new SColor(0x6AFFCD, "Aurora Variscite");
10579
10580    /**
10581     * This color constant "Aurora Refreshing Mist" has RGB code {@code 0x91EBFF}, red 0.5686275, green 0.92156863, blue 1.0, alpha 1, hue 0.530303, saturation 0.43137252, and value 1.0.
10582     * It can be represented as a packed float with the constant {@code -0x1.ffd722p126F}.
10583     * <pre>
10584     * <font style='background-color: #91EBFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #91EBFF; color: #000000'>&nbsp;@&nbsp;</font>
10585     * <font style='background-color: #91EBFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #91EBFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #91EBFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #91EBFF'>&nbsp;@&nbsp;</font><font style='background-color: #91EBFF; color: #888888'>&nbsp;@&nbsp;</font>
10586     * <font style='background-color: #91EBFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #91EBFF; color: #ffffff'>&nbsp;@&nbsp;</font>
10587     * </pre>
10588     */
10589    public static final SColor AURORA_REFRESHING_MIST = new SColor(0x91EBFF, "Aurora Refreshing Mist");
10590
10591    /**
10592     * This color constant "Aurora Shining Sky" has RGB code {@code 0x55E6FF}, red 0.33333334, green 0.9019608, blue 1.0, alpha 1, hue 0.52450967, saturation 0.6666666, and value 1.0.
10593     * It can be represented as a packed float with the constant {@code -0x1.ffccaap126F}.
10594     * <pre>
10595     * <font style='background-color: #55E6FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #55E6FF; color: #000000'>&nbsp;@&nbsp;</font>
10596     * <font style='background-color: #55E6FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #55E6FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #55E6FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #55E6FF'>&nbsp;@&nbsp;</font><font style='background-color: #55E6FF; color: #888888'>&nbsp;@&nbsp;</font>
10597     * <font style='background-color: #55E6FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #55E6FF; color: #ffffff'>&nbsp;@&nbsp;</font>
10598     * </pre>
10599     */
10600    public static final SColor AURORA_SHINING_SKY = new SColor(0x55E6FF, "Aurora Shining Sky");
10601
10602    /**
10603     * This color constant "Aurora Steam" has RGB code {@code 0x7DD7F0}, red 0.49019608, green 0.84313726, blue 0.9411765, alpha 1, hue 0.53623176, saturation 0.47916666, and value 0.9411765.
10604     * It can be represented as a packed float with the constant {@code -0x1.e1aefap126F}.
10605     * <pre>
10606     * <font style='background-color: #7DD7F0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7DD7F0; color: #000000'>&nbsp;@&nbsp;</font>
10607     * <font style='background-color: #7DD7F0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7DD7F0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7DD7F0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7DD7F0'>&nbsp;@&nbsp;</font><font style='background-color: #7DD7F0; color: #888888'>&nbsp;@&nbsp;</font>
10608     * <font style='background-color: #7DD7F0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7DD7F0; color: #ffffff'>&nbsp;@&nbsp;</font>
10609     * </pre>
10610     */
10611    public static final SColor AURORA_STEAM = new SColor(0x7DD7F0, "Aurora Steam");
10612
10613    /**
10614     * This color constant "Aurora Robin Egg Blue" has RGB code {@code 0x08DED5}, red 0.03137255, green 0.87058824, blue 0.8352941, alpha 1, hue 0.49299073, saturation 0.963964, and value 0.87058824.
10615     * It can be represented as a packed float with the constant {@code -0x1.abbc1p126F}.
10616     * <pre>
10617     * <font style='background-color: #08DED5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #08DED5; color: #000000'>&nbsp;@&nbsp;</font>
10618     * <font style='background-color: #08DED5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #08DED5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #08DED5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #08DED5'>&nbsp;@&nbsp;</font><font style='background-color: #08DED5; color: #888888'>&nbsp;@&nbsp;</font>
10619     * <font style='background-color: #08DED5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #08DED5; color: #ffffff'>&nbsp;@&nbsp;</font>
10620     * </pre>
10621     */
10622    public static final SColor AURORA_ROBIN_EGG_BLUE = new SColor(0x08DED5, "Aurora Robin Egg Blue");
10623
10624    /**
10625     * This color constant "Aurora Denim Blue" has RGB code {@code 0x109CDE}, red 0.0627451, green 0.6117647, blue 0.87058824, alpha 1, hue 0.55339813, saturation 0.9279279, and value 0.87058824.
10626     * It can be represented as a packed float with the constant {@code -0x1.bd382p126F}.
10627     * <pre>
10628     * <font style='background-color: #109CDE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #109CDE; color: #000000'>&nbsp;@&nbsp;</font>
10629     * <font style='background-color: #109CDE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #109CDE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #109CDE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #109CDE'>&nbsp;@&nbsp;</font><font style='background-color: #109CDE; color: #888888'>&nbsp;@&nbsp;</font>
10630     * <font style='background-color: #109CDE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #109CDE; color: #ffffff'>&nbsp;@&nbsp;</font>
10631     * </pre>
10632     */
10633    public static final SColor AURORA_DENIM_BLUE = new SColor(0x109CDE, "Aurora Denim Blue");
10634
10635    /**
10636     * This color constant "Aurora Deep Teal" has RGB code {@code 0x055A5C}, red 0.019607844, green 0.3529412, blue 0.36078432, alpha 1, hue 0.5038315, saturation 0.9456522, and value 0.36078432.
10637     * It can be represented as a packed float with the constant {@code -0x1.b8b40ap125F}.
10638     * <pre>
10639     * <font style='background-color: #055A5C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #055A5C; color: #000000'>&nbsp;@&nbsp;</font>
10640     * <font style='background-color: #055A5C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #055A5C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #055A5C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #055A5C'>&nbsp;@&nbsp;</font><font style='background-color: #055A5C; color: #888888'>&nbsp;@&nbsp;</font>
10641     * <font style='background-color: #055A5C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #055A5C; color: #ffffff'>&nbsp;@&nbsp;</font>
10642     * </pre>
10643     */
10644    public static final SColor AURORA_DEEP_TEAL = new SColor(0x055A5C, "Aurora Deep Teal");
10645
10646    /**
10647     * This color constant "Aurora Navy Blue" has RGB code {@code 0x162C52}, red 0.08627451, green 0.17254902, blue 0.32156864, alpha 1, hue 0.60555565, saturation 0.73170733, and value 0.32156864.
10648     * It can be represented as a packed float with the constant {@code -0x1.a4582cp125F}.
10649     * <pre>
10650     * <font style='background-color: #162C52;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #162C52; color: #000000'>&nbsp;@&nbsp;</font>
10651     * <font style='background-color: #162C52;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #162C52'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #162C52'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #162C52'>&nbsp;@&nbsp;</font><font style='background-color: #162C52; color: #888888'>&nbsp;@&nbsp;</font>
10652     * <font style='background-color: #162C52;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #162C52; color: #ffffff'>&nbsp;@&nbsp;</font>
10653     * </pre>
10654     */
10655    public static final SColor AURORA_NAVY_BLUE = new SColor(0x162C52, "Aurora Navy Blue");
10656
10657    /**
10658     * This color constant "Aurora Blueberry" has RGB code {@code 0x0F377D}, red 0.05882353, green 0.21568628, blue 0.49019608, alpha 1, hue 0.6060605, saturation 0.88, and value 0.49019608.
10659     * It can be represented as a packed float with the constant {@code -0x1.fa6e1ep125F}.
10660     * <pre>
10661     * <font style='background-color: #0F377D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0F377D; color: #000000'>&nbsp;@&nbsp;</font>
10662     * <font style='background-color: #0F377D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0F377D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0F377D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0F377D'>&nbsp;@&nbsp;</font><font style='background-color: #0F377D; color: #888888'>&nbsp;@&nbsp;</font>
10663     * <font style='background-color: #0F377D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0F377D; color: #ffffff'>&nbsp;@&nbsp;</font>
10664     * </pre>
10665     */
10666    public static final SColor AURORA_BLUEBERRY = new SColor(0x0F377D, "Aurora Blueberry");
10667
10668    /**
10669     * This color constant "Aurora Prussian Blue" has RGB code {@code 0x004A9C}, red 0.0, green 0.2901961, blue 0.6117647, alpha 1, hue 0.587607, saturation 1.0, and value 0.6117647.
10670     * It can be represented as a packed float with the constant {@code -0x1.3894p126F}.
10671     * <pre>
10672     * <font style='background-color: #004A9C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #004A9C; color: #000000'>&nbsp;@&nbsp;</font>
10673     * <font style='background-color: #004A9C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #004A9C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #004A9C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #004A9C'>&nbsp;@&nbsp;</font><font style='background-color: #004A9C; color: #888888'>&nbsp;@&nbsp;</font>
10674     * <font style='background-color: #004A9C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #004A9C; color: #ffffff'>&nbsp;@&nbsp;</font>
10675     * </pre>
10676     */
10677    public static final SColor AURORA_PRUSSIAN_BLUE = new SColor(0x004A9C, "Aurora Prussian Blue");
10678
10679    /**
10680     * This color constant "Aurora Desert Rain" has RGB code {@code 0x326496}, red 0.19607843, green 0.39215687, blue 0.5882353, alpha 1, hue 0.5833334, saturation 0.6666667, and value 0.5882353.
10681     * It can be represented as a packed float with the constant {@code -0x1.2cc864p126F}.
10682     * <pre>
10683     * <font style='background-color: #326496;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #326496; color: #000000'>&nbsp;@&nbsp;</font>
10684     * <font style='background-color: #326496;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #326496'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #326496'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #326496'>&nbsp;@&nbsp;</font><font style='background-color: #326496; color: #888888'>&nbsp;@&nbsp;</font>
10685     * <font style='background-color: #326496;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #326496; color: #ffffff'>&nbsp;@&nbsp;</font>
10686     * </pre>
10687     */
10688    public static final SColor AURORA_DESERT_RAIN = new SColor(0x326496, "Aurora Desert Rain");
10689
10690    /**
10691     * This color constant "Aurora Electric Blue" has RGB code {@code 0x0052F6}, red 0.0, green 0.32156864, blue 0.9647059, alpha 1, hue 0.61111116, saturation 1.0, and value 0.9647059.
10692     * It can be represented as a packed float with the constant {@code -0x1.eca4p126F}.
10693     * <pre>
10694     * <font style='background-color: #0052F6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0052F6; color: #000000'>&nbsp;@&nbsp;</font>
10695     * <font style='background-color: #0052F6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0052F6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0052F6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0052F6'>&nbsp;@&nbsp;</font><font style='background-color: #0052F6; color: #888888'>&nbsp;@&nbsp;</font>
10696     * <font style='background-color: #0052F6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0052F6; color: #ffffff'>&nbsp;@&nbsp;</font>
10697     * </pre>
10698     */
10699    public static final SColor AURORA_ELECTRIC_BLUE = new SColor(0x0052F6, "Aurora Electric Blue");
10700
10701    /**
10702     * This color constant "Aurora Hidden Blue" has RGB code {@code 0x186ABD}, red 0.09411765, green 0.41568628, blue 0.7411765, alpha 1, hue 0.5838386, saturation 0.8730159, and value 0.7411765.
10703     * It can be represented as a packed float with the constant {@code -0x1.7ad43p126F}.
10704     * <pre>
10705     * <font style='background-color: #186ABD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #186ABD; color: #000000'>&nbsp;@&nbsp;</font>
10706     * <font style='background-color: #186ABD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #186ABD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #186ABD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #186ABD'>&nbsp;@&nbsp;</font><font style='background-color: #186ABD; color: #888888'>&nbsp;@&nbsp;</font>
10707     * <font style='background-color: #186ABD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #186ABD; color: #ffffff'>&nbsp;@&nbsp;</font>
10708     * </pre>
10709     */
10710    public static final SColor AURORA_HIDDEN_BLUE = new SColor(0x186ABD, "Aurora Hidden Blue");
10711
10712    /**
10713     * This color constant "Aurora Dull Azure" has RGB code {@code 0x2378DC}, red 0.13725491, green 0.47058824, blue 0.8627451, alpha 1, hue 0.59009016, saturation 0.8409091, and value 0.8627451.
10714     * It can be represented as a packed float with the constant {@code -0x1.b8f046p126F}.
10715     * <pre>
10716     * <font style='background-color: #2378DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2378DC; color: #000000'>&nbsp;@&nbsp;</font>
10717     * <font style='background-color: #2378DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #2378DC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #2378DC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #2378DC'>&nbsp;@&nbsp;</font><font style='background-color: #2378DC; color: #888888'>&nbsp;@&nbsp;</font>
10718     * <font style='background-color: #2378DC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #2378DC; color: #ffffff'>&nbsp;@&nbsp;</font>
10719     * </pre>
10720     */
10721    public static final SColor AURORA_DULL_AZURE = new SColor(0x2378DC, "Aurora Dull Azure");
10722
10723    /**
10724     * This color constant "Aurora Ripped Denim" has RGB code {@code 0x699DC3}, red 0.4117647, green 0.6156863, blue 0.7647059, alpha 1, hue 0.57037055, saturation 0.46153846, and value 0.7647059.
10725     * It can be represented as a packed float with the constant {@code -0x1.873ad2p126F}.
10726     * <pre>
10727     * <font style='background-color: #699DC3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #699DC3; color: #000000'>&nbsp;@&nbsp;</font>
10728     * <font style='background-color: #699DC3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #699DC3'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #699DC3'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #699DC3'>&nbsp;@&nbsp;</font><font style='background-color: #699DC3; color: #888888'>&nbsp;@&nbsp;</font>
10729     * <font style='background-color: #699DC3;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #699DC3; color: #ffffff'>&nbsp;@&nbsp;</font>
10730     * </pre>
10731     */
10732    public static final SColor AURORA_RIPPED_DENIM = new SColor(0x699DC3, "Aurora Ripped Denim");
10733
10734    /**
10735     * This color constant "Aurora Calm Sky" has RGB code {@code 0x4AA4FF}, red 0.2901961, green 0.6431373, blue 1.0, alpha 1, hue 0.583794, saturation 0.70980394, and value 1.0.
10736     * It can be represented as a packed float with the constant {@code -0x1.ff4894p126F}.
10737     * <pre>
10738     * <font style='background-color: #4AA4FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4AA4FF; color: #000000'>&nbsp;@&nbsp;</font>
10739     * <font style='background-color: #4AA4FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4AA4FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4AA4FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4AA4FF'>&nbsp;@&nbsp;</font><font style='background-color: #4AA4FF; color: #888888'>&nbsp;@&nbsp;</font>
10740     * <font style='background-color: #4AA4FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4AA4FF; color: #ffffff'>&nbsp;@&nbsp;</font>
10741     * </pre>
10742     */
10743    public static final SColor AURORA_CALM_SKY = new SColor(0x4AA4FF, "Aurora Calm Sky");
10744
10745    /**
10746     * This color constant "Aurora Vapor" has RGB code {@code 0x90B0FF}, red 0.5647059, green 0.6901961, blue 1.0, alpha 1, hue 0.6186187, saturation 0.4352941, and value 1.0.
10747     * It can be represented as a packed float with the constant {@code -0x1.ff612p126F}.
10748     * <pre>
10749     * <font style='background-color: #90B0FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #90B0FF; color: #000000'>&nbsp;@&nbsp;</font>
10750     * <font style='background-color: #90B0FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #90B0FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #90B0FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #90B0FF'>&nbsp;@&nbsp;</font><font style='background-color: #90B0FF; color: #888888'>&nbsp;@&nbsp;</font>
10751     * <font style='background-color: #90B0FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #90B0FF; color: #ffffff'>&nbsp;@&nbsp;</font>
10752     * </pre>
10753     */
10754    public static final SColor AURORA_VAPOR = new SColor(0x90B0FF, "Aurora Vapor");
10755
10756    /**
10757     * This color constant "Aurora Powder Blue" has RGB code {@code 0x5AC5FF}, red 0.3529412, green 0.77254903, blue 1.0, alpha 1, hue 0.558586, saturation 0.64705884, and value 1.0.
10758     * It can be represented as a packed float with the constant {@code -0x1.ff8ab4p126F}.
10759     * <pre>
10760     * <font style='background-color: #5AC5FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5AC5FF; color: #000000'>&nbsp;@&nbsp;</font>
10761     * <font style='background-color: #5AC5FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5AC5FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5AC5FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5AC5FF'>&nbsp;@&nbsp;</font><font style='background-color: #5AC5FF; color: #888888'>&nbsp;@&nbsp;</font>
10762     * <font style='background-color: #5AC5FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5AC5FF; color: #ffffff'>&nbsp;@&nbsp;</font>
10763     * </pre>
10764     */
10765    public static final SColor AURORA_POWDER_BLUE = new SColor(0x5AC5FF, "Aurora Powder Blue");
10766
10767    /**
10768     * This color constant "Aurora Suds" has RGB code {@code 0xBEB9FA}, red 0.74509805, green 0.7254902, blue 0.98039216, alpha 1, hue 0.67948735, saturation 0.26, and value 0.98039216.
10769     * It can be represented as a packed float with the constant {@code -0x1.f5737cp126F}.
10770     * <pre>
10771     * <font style='background-color: #BEB9FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BEB9FA; color: #000000'>&nbsp;@&nbsp;</font>
10772     * <font style='background-color: #BEB9FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BEB9FA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BEB9FA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BEB9FA'>&nbsp;@&nbsp;</font><font style='background-color: #BEB9FA; color: #888888'>&nbsp;@&nbsp;</font>
10773     * <font style='background-color: #BEB9FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BEB9FA; color: #ffffff'>&nbsp;@&nbsp;</font>
10774     * </pre>
10775     */
10776    public static final SColor AURORA_SUDS = new SColor(0xBEB9FA, "Aurora Suds");
10777
10778    /**
10779     * This color constant "Aurora Strong Cyan" has RGB code {@code 0x00BFFF}, red 0.0, green 0.7490196, blue 1.0, alpha 1, hue 0.54183006, saturation 1.0, and value 1.0.
10780     * It can be represented as a packed float with the constant {@code -0x1.ff7ep126F}.
10781     * <pre>
10782     * <font style='background-color: #00BFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00BFFF; color: #000000'>&nbsp;@&nbsp;</font>
10783     * <font style='background-color: #00BFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #00BFFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #00BFFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #00BFFF'>&nbsp;@&nbsp;</font><font style='background-color: #00BFFF; color: #888888'>&nbsp;@&nbsp;</font>
10784     * <font style='background-color: #00BFFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00BFFF; color: #ffffff'>&nbsp;@&nbsp;</font>
10785     * </pre>
10786     */
10787    public static final SColor AURORA_STRONG_CYAN = new SColor(0x00BFFF, "Aurora Strong Cyan");
10788
10789    /**
10790     * This color constant "Aurora Sharp Azure" has RGB code {@code 0x007FFF}, red 0.0, green 0.49803922, blue 1.0, alpha 1, hue 0.5836601, saturation 1.0, and value 1.0.
10791     * It can be represented as a packed float with the constant {@code -0x1.fefep126F}.
10792     * <pre>
10793     * <font style='background-color: #007FFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #007FFF; color: #000000'>&nbsp;@&nbsp;</font>
10794     * <font style='background-color: #007FFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #007FFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #007FFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #007FFF'>&nbsp;@&nbsp;</font><font style='background-color: #007FFF; color: #888888'>&nbsp;@&nbsp;</font>
10795     * <font style='background-color: #007FFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #007FFF; color: #ffffff'>&nbsp;@&nbsp;</font>
10796     * </pre>
10797     */
10798    public static final SColor AURORA_SHARP_AZURE = new SColor(0x007FFF, "Aurora Sharp Azure");
10799
10800    /**
10801     * This color constant "Aurora Blue Eye" has RGB code {@code 0x4B7DC8}, red 0.29411766, green 0.49019608, blue 0.78431374, alpha 1, hue 0.60000014, saturation 0.625, and value 0.78431374.
10802     * It can be represented as a packed float with the constant {@code -0x1.90fa96p126F}.
10803     * <pre>
10804     * <font style='background-color: #4B7DC8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B7DC8; color: #000000'>&nbsp;@&nbsp;</font>
10805     * <font style='background-color: #4B7DC8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4B7DC8'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4B7DC8'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4B7DC8'>&nbsp;@&nbsp;</font><font style='background-color: #4B7DC8; color: #888888'>&nbsp;@&nbsp;</font>
10806     * <font style='background-color: #4B7DC8;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4B7DC8; color: #ffffff'>&nbsp;@&nbsp;</font>
10807     * </pre>
10808     */
10809    public static final SColor AURORA_BLUE_EYE = new SColor(0x4B7DC8, "Aurora Blue Eye");
10810
10811    /**
10812     * This color constant "Aurora Subtlety" has RGB code {@code 0x786EF0}, red 0.47058824, green 0.43137255, blue 0.9411765, alpha 1, hue 0.67948735, saturation 0.5416666, and value 0.9411765.
10813     * It can be represented as a packed float with the constant {@code -0x1.e0dcfp126F}.
10814     * <pre>
10815     * <font style='background-color: #786EF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #786EF0; color: #000000'>&nbsp;@&nbsp;</font>
10816     * <font style='background-color: #786EF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #786EF0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #786EF0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #786EF0'>&nbsp;@&nbsp;</font><font style='background-color: #786EF0; color: #888888'>&nbsp;@&nbsp;</font>
10817     * <font style='background-color: #786EF0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #786EF0; color: #ffffff'>&nbsp;@&nbsp;</font>
10818     * </pre>
10819     */
10820    public static final SColor AURORA_SUBTLETY = new SColor(0x786EF0, "Aurora Subtlety");
10821
10822    /**
10823     * This color constant "Aurora Rough Sapphire" has RGB code {@code 0x4A5AFF}, red 0.2901961, green 0.3529412, blue 1.0, alpha 1, hue 0.6519338, saturation 0.70980394, and value 1.0.
10824     * It can be represented as a packed float with the constant {@code -0x1.feb494p126F}.
10825     * <pre>
10826     * <font style='background-color: #4A5AFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4A5AFF; color: #000000'>&nbsp;@&nbsp;</font>
10827     * <font style='background-color: #4A5AFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #4A5AFF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #4A5AFF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #4A5AFF'>&nbsp;@&nbsp;</font><font style='background-color: #4A5AFF; color: #888888'>&nbsp;@&nbsp;</font>
10828     * <font style='background-color: #4A5AFF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #4A5AFF; color: #ffffff'>&nbsp;@&nbsp;</font>
10829     * </pre>
10830     */
10831    public static final SColor AURORA_ROUGH_SAPPHIRE = new SColor(0x4A5AFF, "Aurora Rough Sapphire");
10832
10833    /**
10834     * This color constant "Aurora Iris" has RGB code {@code 0x6241F6}, red 0.38431373, green 0.25490198, blue 0.9647059, alpha 1, hue 0.69705355, saturation 0.7357724, and value 0.9647059.
10835     * It can be represented as a packed float with the constant {@code -0x1.ec82c4p126F}.
10836     * <pre>
10837     * <font style='background-color: #6241F6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6241F6; color: #000000'>&nbsp;@&nbsp;</font>
10838     * <font style='background-color: #6241F6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6241F6'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6241F6'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6241F6'>&nbsp;@&nbsp;</font><font style='background-color: #6241F6; color: #888888'>&nbsp;@&nbsp;</font>
10839     * <font style='background-color: #6241F6;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6241F6; color: #ffffff'>&nbsp;@&nbsp;</font>
10840     * </pre>
10841     */
10842    public static final SColor AURORA_IRIS = new SColor(0x6241F6, "Aurora Iris");
10843
10844    /**
10845     * This color constant "Aurora Cornflower Blue" has RGB code {@code 0x3C3CF5}, red 0.23529412, green 0.23529412, blue 0.9607843, alpha 1, hue 0.66666687, saturation 0.75510204, and value 0.9607843.
10846     * It can be represented as a packed float with the constant {@code -0x1.ea7878p126F}.
10847     * <pre>
10848     * <font style='background-color: #3C3CF5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3C3CF5; color: #000000'>&nbsp;@&nbsp;</font>
10849     * <font style='background-color: #3C3CF5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #3C3CF5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #3C3CF5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #3C3CF5'>&nbsp;@&nbsp;</font><font style='background-color: #3C3CF5; color: #888888'>&nbsp;@&nbsp;</font>
10850     * <font style='background-color: #3C3CF5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #3C3CF5; color: #ffffff'>&nbsp;@&nbsp;</font>
10851     * </pre>
10852     */
10853    public static final SColor AURORA_CORNFLOWER_BLUE = new SColor(0x3C3CF5, "Aurora Cornflower Blue");
10854
10855    /**
10856     * This color constant "Aurora Polished Sapphire" has RGB code {@code 0x101CDA}, red 0.0627451, green 0.10980392, blue 0.85490197, alpha 1, hue 0.6567657, saturation 0.9266055, and value 0.85490197.
10857     * It can be represented as a packed float with the constant {@code -0x1.b4382p126F}.
10858     * <pre>
10859     * <font style='background-color: #101CDA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #101CDA; color: #000000'>&nbsp;@&nbsp;</font>
10860     * <font style='background-color: #101CDA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #101CDA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #101CDA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #101CDA'>&nbsp;@&nbsp;</font><font style='background-color: #101CDA; color: #888888'>&nbsp;@&nbsp;</font>
10861     * <font style='background-color: #101CDA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #101CDA; color: #ffffff'>&nbsp;@&nbsp;</font>
10862     * </pre>
10863     */
10864    public static final SColor AURORA_POLISHED_SAPPHIRE = new SColor(0x101CDA, "Aurora Polished Sapphire");
10865
10866    /**
10867     * This color constant "Aurora Royal Blue" has RGB code {@code 0x0010BD}, red 0.0, green 0.0627451, blue 0.7411765, alpha 1, hue 0.6525575, saturation 1.0, and value 0.7411765.
10868     * It can be represented as a packed float with the constant {@code -0x1.7a2p126F}.
10869     * <pre>
10870     * <font style='background-color: #0010BD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0010BD; color: #000000'>&nbsp;@&nbsp;</font>
10871     * <font style='background-color: #0010BD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0010BD'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0010BD'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0010BD'>&nbsp;@&nbsp;</font><font style='background-color: #0010BD; color: #888888'>&nbsp;@&nbsp;</font>
10872     * <font style='background-color: #0010BD;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0010BD; color: #ffffff'>&nbsp;@&nbsp;</font>
10873     * </pre>
10874     */
10875    public static final SColor AURORA_ROYAL_BLUE = new SColor(0x0010BD, "Aurora Royal Blue");
10876
10877    /**
10878     * This color constant "Aurora Indigo" has RGB code {@code 0x231094}, red 0.13725491, green 0.0627451, blue 0.5803922, alpha 1, hue 0.69065666, saturation 0.8918919, and value 0.5803922.
10879     * It can be represented as a packed float with the constant {@code -0x1.282046p126F}.
10880     * <pre>
10881     * <font style='background-color: #231094;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #231094; color: #000000'>&nbsp;@&nbsp;</font>
10882     * <font style='background-color: #231094;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #231094'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #231094'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #231094'>&nbsp;@&nbsp;</font><font style='background-color: #231094; color: #888888'>&nbsp;@&nbsp;</font>
10883     * <font style='background-color: #231094;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #231094; color: #ffffff'>&nbsp;@&nbsp;</font>
10884     * </pre>
10885     */
10886    public static final SColor AURORA_INDIGO = new SColor(0x231094, "Aurora Indigo");
10887
10888    /**
10889     * This color constant "Aurora Space Blue" has RGB code {@code 0x0C2148}, red 0.047058824, green 0.12941177, blue 0.28235295, alpha 1, hue 0.60833347, saturation 0.8333334, and value 0.28235295.
10890     * It can be represented as a packed float with the constant {@code -0x1.904218p125F}.
10891     * <pre>
10892     * <font style='background-color: #0C2148;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0C2148; color: #000000'>&nbsp;@&nbsp;</font>
10893     * <font style='background-color: #0C2148;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #0C2148'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #0C2148'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #0C2148'>&nbsp;@&nbsp;</font><font style='background-color: #0C2148; color: #888888'>&nbsp;@&nbsp;</font>
10894     * <font style='background-color: #0C2148;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0C2148; color: #ffffff'>&nbsp;@&nbsp;</font>
10895     * </pre>
10896     */
10897    public static final SColor AURORA_SPACE_BLUE = new SColor(0x0C2148, "Aurora Space Blue");
10898
10899    /**
10900     * This color constant "Aurora Thick Amethyst" has RGB code {@code 0x5010B0}, red 0.3137255, green 0.0627451, blue 0.6901961, alpha 1, hue 0.7333336, saturation 0.90909094, and value 0.6901961.
10901     * It can be represented as a packed float with the constant {@code -0x1.6020ap126F}.
10902     * <pre>
10903     * <font style='background-color: #5010B0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5010B0; color: #000000'>&nbsp;@&nbsp;</font>
10904     * <font style='background-color: #5010B0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5010B0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5010B0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5010B0'>&nbsp;@&nbsp;</font><font style='background-color: #5010B0; color: #888888'>&nbsp;@&nbsp;</font>
10905     * <font style='background-color: #5010B0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5010B0; color: #ffffff'>&nbsp;@&nbsp;</font>
10906     * </pre>
10907     */
10908    public static final SColor AURORA_THICK_AMETHYST = new SColor(0x5010B0, "Aurora Thick Amethyst");
10909
10910    /**
10911     * This color constant "Aurora Juicy Grape" has RGB code {@code 0x6010D0}, red 0.3764706, green 0.0627451, blue 0.8156863, alpha 1, hue 0.7361113, saturation 0.9230769, and value 0.8156863.
10912     * It can be represented as a packed float with the constant {@code -0x1.a020cp126F}.
10913     * <pre>
10914     * <font style='background-color: #6010D0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6010D0; color: #000000'>&nbsp;@&nbsp;</font>
10915     * <font style='background-color: #6010D0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #6010D0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #6010D0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #6010D0'>&nbsp;@&nbsp;</font><font style='background-color: #6010D0; color: #888888'>&nbsp;@&nbsp;</font>
10916     * <font style='background-color: #6010D0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #6010D0; color: #ffffff'>&nbsp;@&nbsp;</font>
10917     * </pre>
10918     */
10919    public static final SColor AURORA_JUICY_GRAPE = new SColor(0x6010D0, "Aurora Juicy Grape");
10920
10921    /**
10922     * This color constant "Aurora Blacklight Glow" has RGB code {@code 0x8732D2}, red 0.5294118, green 0.19607843, blue 0.8235294, alpha 1, hue 0.7552085, saturation 0.7619048, and value 0.8235294.
10923     * It can be represented as a packed float with the constant {@code -0x1.a4650ep126F}.
10924     * <pre>
10925     * <font style='background-color: #8732D2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8732D2; color: #000000'>&nbsp;@&nbsp;</font>
10926     * <font style='background-color: #8732D2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8732D2'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8732D2'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8732D2'>&nbsp;@&nbsp;</font><font style='background-color: #8732D2; color: #888888'>&nbsp;@&nbsp;</font>
10927     * <font style='background-color: #8732D2;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8732D2; color: #ffffff'>&nbsp;@&nbsp;</font>
10928     * </pre>
10929     */
10930    public static final SColor AURORA_BLACKLIGHT_GLOW = new SColor(0x8732D2, "Aurora Blacklight Glow");
10931
10932    /**
10933     * This color constant "Aurora Purple Freesia" has RGB code {@code 0x9C41FF}, red 0.6117647, green 0.25490198, blue 1.0, alpha 1, hue 0.74649143, saturation 0.745098, and value 1.0.
10934     * It can be represented as a packed float with the constant {@code -0x1.fe8338p126F}.
10935     * <pre>
10936     * <font style='background-color: #9C41FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9C41FF; color: #000000'>&nbsp;@&nbsp;</font>
10937     * <font style='background-color: #9C41FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #9C41FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #9C41FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #9C41FF'>&nbsp;@&nbsp;</font><font style='background-color: #9C41FF; color: #888888'>&nbsp;@&nbsp;</font>
10938     * <font style='background-color: #9C41FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #9C41FF; color: #ffffff'>&nbsp;@&nbsp;</font>
10939     * </pre>
10940     */
10941    public static final SColor AURORA_PURPLE_FREESIA = new SColor(0x9C41FF, "Aurora Purple Freesia");
10942
10943    /**
10944     * This color constant "Aurora Thin Amethyst" has RGB code {@code 0x7F00FF}, red 0.49803922, green 0.0, blue 1.0, alpha 1, hue 0.74967337, saturation 1.0, and value 1.0.
10945     * It can be represented as a packed float with the constant {@code -0x1.fe00fep126F}.
10946     * <pre>
10947     * <font style='background-color: #7F00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F00FF; color: #000000'>&nbsp;@&nbsp;</font>
10948     * <font style='background-color: #7F00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #7F00FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #7F00FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #7F00FF'>&nbsp;@&nbsp;</font><font style='background-color: #7F00FF; color: #888888'>&nbsp;@&nbsp;</font>
10949     * <font style='background-color: #7F00FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #7F00FF; color: #ffffff'>&nbsp;@&nbsp;</font>
10950     * </pre>
10951     */
10952    public static final SColor AURORA_THIN_AMETHYST = new SColor(0x7F00FF, "Aurora Thin Amethyst");
10953
10954    /**
10955     * This color constant "Aurora Orchid" has RGB code {@code 0xBD62FF}, red 0.7411765, green 0.38431373, blue 1.0, alpha 1, hue 0.7632698, saturation 0.6156863, and value 1.0.
10956     * It can be represented as a packed float with the constant {@code -0x1.fec57ap126F}.
10957     * <pre>
10958     * <font style='background-color: #BD62FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BD62FF; color: #000000'>&nbsp;@&nbsp;</font>
10959     * <font style='background-color: #BD62FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BD62FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BD62FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BD62FF'>&nbsp;@&nbsp;</font><font style='background-color: #BD62FF; color: #888888'>&nbsp;@&nbsp;</font>
10960     * <font style='background-color: #BD62FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BD62FF; color: #ffffff'>&nbsp;@&nbsp;</font>
10961     * </pre>
10962     */
10963    public static final SColor AURORA_ORCHID = new SColor(0xBD62FF, "Aurora Orchid");
10964
10965    /**
10966     * This color constant "Aurora Lavender" has RGB code {@code 0xB991FF}, red 0.7254902, green 0.5686275, blue 1.0, alpha 1, hue 0.72727287, saturation 0.43137252, and value 1.0.
10967     * It can be represented as a packed float with the constant {@code -0x1.ff2372p126F}.
10968     * <pre>
10969     * <font style='background-color: #B991FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B991FF; color: #000000'>&nbsp;@&nbsp;</font>
10970     * <font style='background-color: #B991FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B991FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B991FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B991FF'>&nbsp;@&nbsp;</font><font style='background-color: #B991FF; color: #888888'>&nbsp;@&nbsp;</font>
10971     * <font style='background-color: #B991FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B991FF; color: #ffffff'>&nbsp;@&nbsp;</font>
10972     * </pre>
10973     */
10974    public static final SColor AURORA_LAVENDER = new SColor(0xB991FF, "Aurora Lavender");
10975
10976    /**
10977     * This color constant "Aurora Lilac" has RGB code {@code 0xD7A5FF}, red 0.84313726, green 0.64705884, blue 1.0, alpha 1, hue 0.75925946, saturation 0.35294116, and value 1.0.
10978     * It can be represented as a packed float with the constant {@code -0x1.ff4baep126F}.
10979     * <pre>
10980     * <font style='background-color: #D7A5FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D7A5FF; color: #000000'>&nbsp;@&nbsp;</font>
10981     * <font style='background-color: #D7A5FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D7A5FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D7A5FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D7A5FF'>&nbsp;@&nbsp;</font><font style='background-color: #D7A5FF; color: #888888'>&nbsp;@&nbsp;</font>
10982     * <font style='background-color: #D7A5FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D7A5FF; color: #ffffff'>&nbsp;@&nbsp;</font>
10983     * </pre>
10984     */
10985    public static final SColor AURORA_LILAC = new SColor(0xD7A5FF, "Aurora Lilac");
10986
10987    /**
10988     * This color constant "Aurora Soap" has RGB code {@code 0xD7C3FA}, red 0.84313726, green 0.7647059, blue 0.98039216, alpha 1, hue 0.72727287, saturation 0.21999998, and value 0.98039216.
10989     * It can be represented as a packed float with the constant {@code -0x1.f587aep126F}.
10990     * <pre>
10991     * <font style='background-color: #D7C3FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D7C3FA; color: #000000'>&nbsp;@&nbsp;</font>
10992     * <font style='background-color: #D7C3FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #D7C3FA'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #D7C3FA'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #D7C3FA'>&nbsp;@&nbsp;</font><font style='background-color: #D7C3FA; color: #888888'>&nbsp;@&nbsp;</font>
10993     * <font style='background-color: #D7C3FA;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #D7C3FA; color: #ffffff'>&nbsp;@&nbsp;</font>
10994     * </pre>
10995     */
10996    public static final SColor AURORA_SOAP = new SColor(0xD7C3FA, "Aurora Soap");
10997
10998    /**
10999     * This color constant "Aurora Pink Tutu" has RGB code {@code 0xF8C6FC}, red 0.972549, green 0.7764706, blue 0.9882353, alpha 1, hue 0.8209878, saturation 0.2142857, and value 0.9882353.
11000     * It can be represented as a packed float with the constant {@code -0x1.f98dfp126F}.
11001     * <pre>
11002     * <font style='background-color: #F8C6FC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F8C6FC; color: #000000'>&nbsp;@&nbsp;</font>
11003     * <font style='background-color: #F8C6FC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #F8C6FC'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #F8C6FC'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #F8C6FC'>&nbsp;@&nbsp;</font><font style='background-color: #F8C6FC; color: #888888'>&nbsp;@&nbsp;</font>
11004     * <font style='background-color: #F8C6FC;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #F8C6FC; color: #ffffff'>&nbsp;@&nbsp;</font>
11005     * </pre>
11006     */
11007    public static final SColor AURORA_PINK_TUTU = new SColor(0xF8C6FC, "Aurora Pink Tutu");
11008
11009    /**
11010     * This color constant "Aurora Thistle" has RGB code {@code 0xE673FF}, red 0.9019608, green 0.4509804, blue 1.0, alpha 1, hue 0.8035716, saturation 0.5490196, and value 1.0.
11011     * It can be represented as a packed float with the constant {@code -0x1.fee7ccp126F}.
11012     * <pre>
11013     * <font style='background-color: #E673FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E673FF; color: #000000'>&nbsp;@&nbsp;</font>
11014     * <font style='background-color: #E673FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E673FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E673FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E673FF'>&nbsp;@&nbsp;</font><font style='background-color: #E673FF; color: #888888'>&nbsp;@&nbsp;</font>
11015     * <font style='background-color: #E673FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E673FF; color: #ffffff'>&nbsp;@&nbsp;</font>
11016     * </pre>
11017     */
11018    public static final SColor AURORA_THISTLE = new SColor(0xE673FF, "Aurora Thistle");
11019
11020    /**
11021     * This color constant "Aurora Heliotrope" has RGB code {@code 0xFF52FF}, red 1.0, green 0.32156864, blue 1.0, alpha 1, hue 0.8333334, saturation 0.6784314, and value 1.0.
11022     * It can be represented as a packed float with the constant {@code -0x1.fea5fep126F}.
11023     * <pre>
11024     * <font style='background-color: #FF52FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF52FF; color: #000000'>&nbsp;@&nbsp;</font>
11025     * <font style='background-color: #FF52FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF52FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF52FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF52FF'>&nbsp;@&nbsp;</font><font style='background-color: #FF52FF; color: #888888'>&nbsp;@&nbsp;</font>
11026     * <font style='background-color: #FF52FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF52FF; color: #ffffff'>&nbsp;@&nbsp;</font>
11027     * </pre>
11028     */
11029    public static final SColor AURORA_HELIOTROPE = new SColor(0xFF52FF, "Aurora Heliotrope");
11030
11031    /**
11032     * This color constant "Aurora Light Plum" has RGB code {@code 0xDA20E0}, red 0.85490197, green 0.1254902, blue 0.8784314, alpha 1, hue 0.82812524, saturation 0.85714287, and value 0.8784314.
11033     * It can be represented as a packed float with the constant {@code -0x1.c041b4p126F}.
11034     * <pre>
11035     * <font style='background-color: #DA20E0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA20E0; color: #000000'>&nbsp;@&nbsp;</font>
11036     * <font style='background-color: #DA20E0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #DA20E0'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #DA20E0'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #DA20E0'>&nbsp;@&nbsp;</font><font style='background-color: #DA20E0; color: #888888'>&nbsp;@&nbsp;</font>
11037     * <font style='background-color: #DA20E0;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #DA20E0; color: #ffffff'>&nbsp;@&nbsp;</font>
11038     * </pre>
11039     */
11040    public static final SColor AURORA_LIGHT_PLUM = new SColor(0xDA20E0, "Aurora Light Plum");
11041
11042    /**
11043     * This color constant "Aurora Wisteria" has RGB code {@code 0xBD29FF}, red 0.7411765, green 0.16078432, blue 1.0, alpha 1, hue 0.78193164, saturation 0.8392157, and value 1.0.
11044     * It can be represented as a packed float with the constant {@code -0x1.fe537ap126F}.
11045     * <pre>
11046     * <font style='background-color: #BD29FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BD29FF; color: #000000'>&nbsp;@&nbsp;</font>
11047     * <font style='background-color: #BD29FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BD29FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BD29FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BD29FF'>&nbsp;@&nbsp;</font><font style='background-color: #BD29FF; color: #888888'>&nbsp;@&nbsp;</font>
11048     * <font style='background-color: #BD29FF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BD29FF; color: #ffffff'>&nbsp;@&nbsp;</font>
11049     * </pre>
11050     */
11051    public static final SColor AURORA_WISTERIA = new SColor(0xBD29FF, "Aurora Wisteria");
11052
11053    /**
11054     * This color constant "Aurora Medium Plum" has RGB code {@code 0xBD10C5}, red 0.7411765, green 0.0627451, blue 0.77254903, alpha 1, hue 0.8259671, saturation 0.91878176, and value 0.77254903.
11055     * It can be represented as a packed float with the constant {@code -0x1.8a217ap126F}.
11056     * <pre>
11057     * <font style='background-color: #BD10C5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BD10C5; color: #000000'>&nbsp;@&nbsp;</font>
11058     * <font style='background-color: #BD10C5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BD10C5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BD10C5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BD10C5'>&nbsp;@&nbsp;</font><font style='background-color: #BD10C5; color: #888888'>&nbsp;@&nbsp;</font>
11059     * <font style='background-color: #BD10C5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BD10C5; color: #ffffff'>&nbsp;@&nbsp;</font>
11060     * </pre>
11061     */
11062    public static final SColor AURORA_MEDIUM_PLUM = new SColor(0xBD10C5, "Aurora Medium Plum");
11063
11064    /**
11065     * This color constant "Aurora Violet" has RGB code {@code 0x8C14BE}, red 0.54901963, green 0.078431375, blue 0.74509805, alpha 1, hue 0.7843139, saturation 0.8947368, and value 0.74509805.
11066     * It can be represented as a packed float with the constant {@code -0x1.7c2918p126F}.
11067     * <pre>
11068     * <font style='background-color: #8C14BE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C14BE; color: #000000'>&nbsp;@&nbsp;</font>
11069     * <font style='background-color: #8C14BE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #8C14BE'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #8C14BE'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #8C14BE'>&nbsp;@&nbsp;</font><font style='background-color: #8C14BE; color: #888888'>&nbsp;@&nbsp;</font>
11070     * <font style='background-color: #8C14BE;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #8C14BE; color: #ffffff'>&nbsp;@&nbsp;</font>
11071     * </pre>
11072     */
11073    public static final SColor AURORA_VIOLET = new SColor(0x8C14BE, "Aurora Violet");
11074
11075    /**
11076     * This color constant "Aurora Grape Lollipop" has RGB code {@code 0x5A187B}, red 0.3529412, green 0.09411765, blue 0.48235294, alpha 1, hue 0.7777779, saturation 0.80487806, and value 0.48235294.
11077     * It can be represented as a packed float with the constant {@code -0x1.f630b4p125F}.
11078     * <pre>
11079     * <font style='background-color: #5A187B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5A187B; color: #000000'>&nbsp;@&nbsp;</font>
11080     * <font style='background-color: #5A187B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #5A187B'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #5A187B'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #5A187B'>&nbsp;@&nbsp;</font><font style='background-color: #5A187B; color: #888888'>&nbsp;@&nbsp;</font>
11081     * <font style='background-color: #5A187B;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #5A187B; color: #ffffff'>&nbsp;@&nbsp;</font>
11082     * </pre>
11083     */
11084    public static final SColor AURORA_GRAPE_LOLLIPOP = new SColor(0x5A187B, "Aurora Grape Lollipop");
11085
11086    /**
11087     * This color constant "Aurora Mulberry" has RGB code {@code 0x641464}, red 0.39215687, green 0.078431375, blue 0.39215687, alpha 1, hue 0.8333334, saturation 0.8, and value 0.39215687.
11088     * It can be represented as a packed float with the constant {@code -0x1.c828c8p125F}.
11089     * <pre>
11090     * <font style='background-color: #641464;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #641464; color: #000000'>&nbsp;@&nbsp;</font>
11091     * <font style='background-color: #641464;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #641464'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #641464'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #641464'>&nbsp;@&nbsp;</font><font style='background-color: #641464; color: #888888'>&nbsp;@&nbsp;</font>
11092     * <font style='background-color: #641464;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #641464; color: #ffffff'>&nbsp;@&nbsp;</font>
11093     * </pre>
11094     */
11095    public static final SColor AURORA_MULBERRY = new SColor(0x641464, "Aurora Mulberry");
11096
11097    /**
11098     * This color constant "Aurora Grape Soda" has RGB code {@code 0x410062}, red 0.25490198, green 0.0, blue 0.38431373, alpha 1, hue 0.77721107, saturation 1.0, and value 0.38431373.
11099     * It can be represented as a packed float with the constant {@code -0x1.c40082p125F}.
11100     * <pre>
11101     * <font style='background-color: #410062;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #410062; color: #000000'>&nbsp;@&nbsp;</font>
11102     * <font style='background-color: #410062;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #410062'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #410062'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #410062'>&nbsp;@&nbsp;</font><font style='background-color: #410062; color: #888888'>&nbsp;@&nbsp;</font>
11103     * <font style='background-color: #410062;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #410062; color: #ffffff'>&nbsp;@&nbsp;</font>
11104     * </pre>
11105     */
11106    public static final SColor AURORA_GRAPE_SODA = new SColor(0x410062, "Aurora Grape Soda");
11107
11108    /**
11109     * This color constant "Aurora Eggplant" has RGB code {@code 0x320A46}, red 0.19607843, green 0.039215688, blue 0.27450982, alpha 1, hue 0.7777779, saturation 0.85714287, and value 0.27450982.
11110     * It can be represented as a packed float with the constant {@code -0x1.8c1464p125F}.
11111     * <pre>
11112     * <font style='background-color: #320A46;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #320A46; color: #000000'>&nbsp;@&nbsp;</font>
11113     * <font style='background-color: #320A46;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #320A46'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #320A46'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #320A46'>&nbsp;@&nbsp;</font><font style='background-color: #320A46; color: #888888'>&nbsp;@&nbsp;</font>
11114     * <font style='background-color: #320A46;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #320A46; color: #ffffff'>&nbsp;@&nbsp;</font>
11115     * </pre>
11116     */
11117    public static final SColor AURORA_EGGPLANT = new SColor(0x320A46, "Aurora Eggplant");
11118
11119    /**
11120     * This color constant "Aurora Cherry Syrup" has RGB code {@code 0x551937}, red 0.33333334, green 0.09803922, blue 0.21568628, alpha 1, hue 0.9166666, saturation 0.7058824, and value 0.33333334.
11121     * It can be represented as a packed float with the constant {@code -0x1.6e32aap125F}.
11122     * <pre>
11123     * <font style='background-color: #551937;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #551937; color: #000000'>&nbsp;@&nbsp;</font>
11124     * <font style='background-color: #551937;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #551937'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #551937'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #551937'>&nbsp;@&nbsp;</font><font style='background-color: #551937; color: #888888'>&nbsp;@&nbsp;</font>
11125     * <font style='background-color: #551937;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #551937; color: #ffffff'>&nbsp;@&nbsp;</font>
11126     * </pre>
11127     */
11128    public static final SColor AURORA_CHERRY_SYRUP = new SColor(0x551937, "Aurora Cherry Syrup");
11129
11130    /**
11131     * This color constant "Aurora Plum Juice" has RGB code {@code 0xA01982}, red 0.627451, green 0.09803922, blue 0.50980395, alpha 1, hue 0.8703704, saturation 0.84375, and value 0.627451.
11132     * It can be represented as a packed float with the constant {@code -0x1.04334p126F}.
11133     * <pre>
11134     * <font style='background-color: #A01982;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A01982; color: #000000'>&nbsp;@&nbsp;</font>
11135     * <font style='background-color: #A01982;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #A01982'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #A01982'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #A01982'>&nbsp;@&nbsp;</font><font style='background-color: #A01982; color: #888888'>&nbsp;@&nbsp;</font>
11136     * <font style='background-color: #A01982;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #A01982; color: #ffffff'>&nbsp;@&nbsp;</font>
11137     * </pre>
11138     */
11139    public static final SColor AURORA_PLUM_JUICE = new SColor(0xA01982, "Aurora Plum Juice");
11140
11141    /**
11142     * This color constant "Aurora Fruit Punch" has RGB code {@code 0xC80078}, red 0.78431374, green 0.0, blue 0.47058824, alpha 1, hue 0.8999999, saturation 1.0, and value 0.78431374.
11143     * It can be represented as a packed float with the constant {@code -0x1.f0019p125F}.
11144     * <pre>
11145     * <font style='background-color: #C80078;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C80078; color: #000000'>&nbsp;@&nbsp;</font>
11146     * <font style='background-color: #C80078;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #C80078'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #C80078'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #C80078'>&nbsp;@&nbsp;</font><font style='background-color: #C80078; color: #888888'>&nbsp;@&nbsp;</font>
11147     * <font style='background-color: #C80078;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #C80078; color: #ffffff'>&nbsp;@&nbsp;</font>
11148     * </pre>
11149     */
11150    public static final SColor AURORA_FRUIT_PUNCH = new SColor(0xC80078, "Aurora Fruit Punch");
11151
11152    /**
11153     * This color constant "Aurora Bubble Gum" has RGB code {@code 0xFF50BF}, red 1.0, green 0.3137255, blue 0.7490196, alpha 1, hue 0.8942858, saturation 0.6862745, and value 1.0.
11154     * It can be represented as a packed float with the constant {@code -0x1.7ea1fep126F}.
11155     * <pre>
11156     * <font style='background-color: #FF50BF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF50BF; color: #000000'>&nbsp;@&nbsp;</font>
11157     * <font style='background-color: #FF50BF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF50BF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF50BF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF50BF'>&nbsp;@&nbsp;</font><font style='background-color: #FF50BF; color: #888888'>&nbsp;@&nbsp;</font>
11158     * <font style='background-color: #FF50BF;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF50BF; color: #ffffff'>&nbsp;@&nbsp;</font>
11159     * </pre>
11160     */
11161    public static final SColor AURORA_BUBBLE_GUM = new SColor(0xFF50BF, "Aurora Bubble Gum");
11162
11163    /**
11164     * This color constant "Aurora Pink Lemonade" has RGB code {@code 0xFF6AC5}, red 1.0, green 0.41568628, blue 0.77254903, alpha 1, hue 0.8982104, saturation 0.58431375, and value 1.0.
11165     * It can be represented as a packed float with the constant {@code -0x1.8ad5fep126F}.
11166     * <pre>
11167     * <font style='background-color: #FF6AC5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF6AC5; color: #000000'>&nbsp;@&nbsp;</font>
11168     * <font style='background-color: #FF6AC5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF6AC5'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF6AC5'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF6AC5'>&nbsp;@&nbsp;</font><font style='background-color: #FF6AC5; color: #888888'>&nbsp;@&nbsp;</font>
11169     * <font style='background-color: #FF6AC5;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF6AC5; color: #ffffff'>&nbsp;@&nbsp;</font>
11170     * </pre>
11171     */
11172    public static final SColor AURORA_PINK_LEMONADE = new SColor(0xFF6AC5, "Aurora Pink Lemonade");
11173
11174    /**
11175     * This color constant "Aurora Shrimp" has RGB code {@code 0xFAA0B9}, red 0.98039216, green 0.627451, blue 0.7254902, alpha 1, hue 0.9537037, saturation 0.35999998, and value 0.98039216.
11176     * It can be represented as a packed float with the constant {@code -0x1.7341f4p126F}.
11177     * <pre>
11178     * <font style='background-color: #FAA0B9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FAA0B9; color: #000000'>&nbsp;@&nbsp;</font>
11179     * <font style='background-color: #FAA0B9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FAA0B9'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FAA0B9'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FAA0B9'>&nbsp;@&nbsp;</font><font style='background-color: #FAA0B9; color: #888888'>&nbsp;@&nbsp;</font>
11180     * <font style='background-color: #FAA0B9;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FAA0B9; color: #ffffff'>&nbsp;@&nbsp;</font>
11181     * </pre>
11182     */
11183    public static final SColor AURORA_SHRIMP = new SColor(0xFAA0B9, "Aurora Shrimp");
11184
11185    /**
11186     * This color constant "Aurora Flamingo" has RGB code {@code 0xFC3A8C}, red 0.9882353, green 0.22745098, blue 0.54901963, alpha 1, hue 0.9295532, saturation 0.7698413, and value 0.9882353.
11187     * It can be represented as a packed float with the constant {@code -0x1.1875f8p126F}.
11188     * <pre>
11189     * <font style='background-color: #FC3A8C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FC3A8C; color: #000000'>&nbsp;@&nbsp;</font>
11190     * <font style='background-color: #FC3A8C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FC3A8C'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FC3A8C'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FC3A8C'>&nbsp;@&nbsp;</font><font style='background-color: #FC3A8C; color: #888888'>&nbsp;@&nbsp;</font>
11191     * <font style='background-color: #FC3A8C;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FC3A8C; color: #ffffff'>&nbsp;@&nbsp;</font>
11192     * </pre>
11193     */
11194    public static final SColor AURORA_FLAMINGO = new SColor(0xFC3A8C, "Aurora Flamingo");
11195
11196    /**
11197     * This color constant "Aurora Lipstick" has RGB code {@code 0xE61E78}, red 0.9019608, green 0.11764706, blue 0.47058824, alpha 1, hue 0.925, saturation 0.86956525, and value 0.9019608.
11198     * It can be represented as a packed float with the constant {@code -0x1.f03dccp125F}.
11199     * <pre>
11200     * <font style='background-color: #E61E78;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E61E78; color: #000000'>&nbsp;@&nbsp;</font>
11201     * <font style='background-color: #E61E78;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #E61E78'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #E61E78'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #E61E78'>&nbsp;@&nbsp;</font><font style='background-color: #E61E78; color: #888888'>&nbsp;@&nbsp;</font>
11202     * <font style='background-color: #E61E78;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #E61E78; color: #ffffff'>&nbsp;@&nbsp;</font>
11203     * </pre>
11204     */
11205    public static final SColor AURORA_LIPSTICK = new SColor(0xE61E78, "Aurora Lipstick");
11206
11207    /**
11208     * This color constant "Aurora Carmine" has RGB code {@code 0xBD1039}, red 0.7411765, green 0.0627451, blue 0.22352941, alpha 1, hue 0.9605011, saturation 0.91534394, and value 0.7411765.
11209     * It can be represented as a packed float with the constant {@code -0x1.72217ap125F}.
11210     * <pre>
11211     * <font style='background-color: #BD1039;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BD1039; color: #000000'>&nbsp;@&nbsp;</font>
11212     * <font style='background-color: #BD1039;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #BD1039'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #BD1039'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #BD1039'>&nbsp;@&nbsp;</font><font style='background-color: #BD1039; color: #888888'>&nbsp;@&nbsp;</font>
11213     * <font style='background-color: #BD1039;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #BD1039; color: #ffffff'>&nbsp;@&nbsp;</font>
11214     * </pre>
11215     */
11216    public static final SColor AURORA_CARMINE = new SColor(0xBD1039, "Aurora Carmine");
11217
11218    /**
11219     * This color constant "Aurora Bologna" has RGB code {@code 0x98344D}, red 0.59607846, green 0.20392157, blue 0.3019608, alpha 1, hue 0.9583334, saturation 0.6578948, and value 0.59607846.
11220     * It can be represented as a packed float with the constant {@code -0x1.9a693p125F}.
11221     * <pre>
11222     * <font style='background-color: #98344D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #98344D; color: #000000'>&nbsp;@&nbsp;</font>
11223     * <font style='background-color: #98344D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #98344D'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #98344D'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #98344D'>&nbsp;@&nbsp;</font><font style='background-color: #98344D; color: #888888'>&nbsp;@&nbsp;</font>
11224     * <font style='background-color: #98344D;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #98344D; color: #ffffff'>&nbsp;@&nbsp;</font>
11225     * </pre>
11226     */
11227    public static final SColor AURORA_BOLOGNA = new SColor(0x98344D, "Aurora Bologna");
11228
11229    /**
11230     * This color constant "Aurora Raspberry" has RGB code {@code 0x911437}, red 0.5686275, green 0.078431375, blue 0.21568628, alpha 1, hue 0.9533334, saturation 0.86206895, and value 0.5686275.
11231     * It can be represented as a packed float with the constant {@code -0x1.6e2922p125F}.
11232     * <pre>
11233     * <font style='background-color: #911437;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #911437; color: #000000'>&nbsp;@&nbsp;</font>
11234     * <font style='background-color: #911437;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #911437'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #911437'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #911437'>&nbsp;@&nbsp;</font><font style='background-color: #911437; color: #888888'>&nbsp;@&nbsp;</font>
11235     * <font style='background-color: #911437;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #911437; color: #ffffff'>&nbsp;@&nbsp;</font>
11236     * </pre>
11237     */
11238    public static final SColor AURORA_RASPBERRY = new SColor(0x911437, "Aurora Raspberry");
11239
11240
11241
11242
11243    // COMPATIBILITY COLORS
11244    /**
11245     * This color constant "Fucshia Pink" (misspelled but here for compatibility) has RGB code {@code 0xFF77FF}, hue 
11246     * 0.8333333, saturation 0.5333333, and value 1.0. It can be represented as a packed float with the constant
11247     * {@code -0x1.feeffep126F}. It is equivalent except for in name to {@link #FUCHSIA_PINK}.
11248     * <pre>
11249     * <font style='background-color: #FF77FF; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF77FF; color: #000000'>&nbsp;@&nbsp;</font>
11250     * <font style='background-color: #FF77FF; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #FF77FF'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #FF77FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #FF77FF'>&nbsp;@&nbsp;</font><font style='background-color: #FF77FF; color: #888888'>&nbsp;@&nbsp;</font>
11251     * <font style='background-color: #FF77FF; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #FF77FF; color: #ffffff'>&nbsp;@&nbsp;</font>
11252     * <br>
11253     * <font style='background-color: #ff0000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00ff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000ff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #964b00; color: #000000'>&nbsp;&nbsp;&nbsp;</font>
11254     * <font style='background-color: #ff0000; color: #FF77FF'>&nbsp;@&nbsp;</font><font style='background-color: #ffff00; color: #FF77FF'>&nbsp;@&nbsp;</font><font style='background-color: #00ff00; color: #FF77FF'>&nbsp;@&nbsp;</font><font style='background-color: #0000ff; color: #FF77FF'>&nbsp;@&nbsp;</font><font style='background-color: #964b00; color: #FF77FF'>&nbsp;@&nbsp;</font>
11255     * <font style='background-color: #ff0000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00ff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000ff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #964b00; color: #000000'>&nbsp;&nbsp;&nbsp;</font></pre>
11256     * @deprecated This color name was misspelled; prefer {@link #FUCHSIA_PINK}
11257     */
11258    @Deprecated
11259    public static final SColor FUCSHIA_PINK = new SColor(0xFF7FF, "Fucshia Pink");
11260
11261    /**
11262     * This color constant "Scortched Brown" (misspelled but here for compatibility) has RGB code {@code 0x351F19}, hue
11263     * 0.03571427, saturation 0.5283019, and value 0.20784314. It can be represented as a packed float with the constant
11264     * {@code -0x1.323e6ap125F}. It is equivalent except for in name to {@link #SCORCHED_BROWN}.
11265     * <pre>
11266     * <font style='background-color: #351F19; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #351F19; color: #000000'>&nbsp;@&nbsp;</font>
11267     * <font style='background-color: #351F19; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #351F19'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #351F19'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #351F19'>&nbsp;@&nbsp;</font><font style='background-color: #351F19; color: #888888'>&nbsp;@&nbsp;</font>
11268     * <font style='background-color: #351F19; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #351F19; color: #ffffff'>&nbsp;@&nbsp;</font>
11269     * <br>
11270     * <font style='background-color: #ff0000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00ff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000ff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #964b00; color: #000000'>&nbsp;&nbsp;&nbsp;</font>
11271     * <font style='background-color: #ff0000; color: #351F19'>&nbsp;@&nbsp;</font><font style='background-color: #ffff00; color: #351F19'>&nbsp;@&nbsp;</font><font style='background-color: #00ff00; color: #351F19'>&nbsp;@&nbsp;</font><font style='background-color: #0000ff; color: #351F19'>&nbsp;@&nbsp;</font><font style='background-color: #964b00; color: #351F19'>&nbsp;@&nbsp;</font>
11272     * <font style='background-color: #ff0000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00ff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000ff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #964b00; color: #000000'>&nbsp;&nbsp;&nbsp;</font></pre>
11273     * @deprecated This color name was misspelled; prefer {@link #SCORCHED_BROWN}
11274     */
11275    @Deprecated
11276    public static final SColor SCORTCHED_BROWN = new SColor(0x351F19, "Scortched Brown");
11277
11278    /**
11279     * This color constant "Sen No Riyu's Tea" (misspelled but here for compatibility; correctly it should refer to
11280     * <a href="https://en.wikipedia.org/wiki/Sen_no_Rikyū">Sen No Rikyu</a>) has RGB code {@code 0x826B58}, hue
11281     * 0.075396836, saturation 0.32307693, and value 0.50980395. It can be represented as a packed float with the
11282     * constant {@code -0x1.b0d704p125F}. It is equivalent except for in name to {@link #SEN_NO_RIKYUS_TEA}.
11283     * <pre>
11284     * <font style='background-color: #826B58; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #826B58; color: #000000'>&nbsp;@&nbsp;</font>
11285     * <font style='background-color: #826B58; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #826B58'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #826B58'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #826B58'>&nbsp;@&nbsp;</font><font style='background-color: #826B58; color: #888888'>&nbsp;@&nbsp;</font>
11286     * <font style='background-color: #826B58; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #826B58; color: #ffffff'>&nbsp;@&nbsp;</font>
11287     * <br>
11288     * <font style='background-color: #ff0000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00ff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000ff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #964b00; color: #000000'>&nbsp;&nbsp;&nbsp;</font>
11289     * <font style='background-color: #ff0000; color: #826B58'>&nbsp;@&nbsp;</font><font style='background-color: #ffff00; color: #826B58'>&nbsp;@&nbsp;</font><font style='background-color: #00ff00; color: #826B58'>&nbsp;@&nbsp;</font><font style='background-color: #0000ff; color: #826B58'>&nbsp;@&nbsp;</font><font style='background-color: #964b00; color: #826B58'>&nbsp;@&nbsp;</font>
11290     * <font style='background-color: #ff0000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00ff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000ff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #964b00; color: #000000'>&nbsp;&nbsp;&nbsp;</font></pre>
11291     * @deprecated This color name was misspelled; prefer {@link #SEN_NO_RIKYUS_TEA}
11292     */
11293    @Deprecated
11294    public static final SColor SEN_NO_RIYUS_TEA = new SColor(0x826B58, "Sen No Riyu's Tea");
11295
11296    /**
11297     * This color constant "Faded Den No Rikyu's Tea" (misspelled but here for compatibility; correctly it should refer
11298     * to <a href="https://en.wikipedia.org/wiki/Sen_no_Rikyū">Sen No Rikyu</a>) has RGB code {@code 0xB0927A}, hue
11299     * 0.07407403, saturation 0.3068182, and value 0.6901961. It can be represented as a packed float with the constant
11300     * {@code -0x1.f5256p125F}. It is equivalent except for in name to {@link #FADED_SEN_NO_RIKYUS_TEA}.
11301     * <pre>
11302     * <font style='background-color: #B0927A; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B0927A; color: #000000'>&nbsp;@&nbsp;</font>
11303     * <font style='background-color: #B0927A; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #B0927A'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #B0927A'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #B0927A'>&nbsp;@&nbsp;</font><font style='background-color: #B0927A; color: #888888'>&nbsp;@&nbsp;</font>
11304     * <font style='background-color: #B0927A; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #B0927A; color: #ffffff'>&nbsp;@&nbsp;</font>
11305     * <br>
11306     * <font style='background-color: #ff0000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00ff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000ff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #964b00; color: #000000'>&nbsp;&nbsp;&nbsp;</font>
11307     * <font style='background-color: #ff0000; color: #B0927A'>&nbsp;@&nbsp;</font><font style='background-color: #ffff00; color: #B0927A'>&nbsp;@&nbsp;</font><font style='background-color: #00ff00; color: #B0927A'>&nbsp;@&nbsp;</font><font style='background-color: #0000ff; color: #B0927A'>&nbsp;@&nbsp;</font><font style='background-color: #964b00; color: #B0927A'>&nbsp;@&nbsp;</font>
11308     * <font style='background-color: #ff0000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #00ff00; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #0000ff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #964b00; color: #000000'>&nbsp;&nbsp;&nbsp;</font></pre>
11309     * @deprecated This color name was misspelled; prefer {@link #FADED_SEN_NO_RIKYUS_TEA}
11310     */
11311    @Deprecated
11312    public static final SColor FADED_DEN_NO_RIKYUS_TEA = new SColor(0xB0927A, "Faded Den No Rikyu's Tea");
11313    /**
11314     * This color constant "Tead Garden Contemplation"  (misspelled but here for compatibility) has RGB code
11315     * {@code 0x665343}, red 0.4, green 0.3254902, blue 0.2627451, alpha 1, hue 0.07619047, saturation 0.34313723, and
11316     * value 0.4. It can be represented as a packed float with the constant {@code -0x1.86a6ccp125F}. It is equivalent
11317     * except for in name to {@link #TEA_GARDEN_CONTEMPLATION}.
11318     * <pre>
11319     * <font style='background-color: #665343;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #665343; color: #000000'>&nbsp;@&nbsp;</font>
11320     * <font style='background-color: #665343;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #665343'>&nbsp;@&nbsp;</font><font style='background-color: #888888; color: #665343'>&nbsp;@&nbsp;</font><font style='background-color: #ffffff; color: #665343'>&nbsp;@&nbsp;</font><font style='background-color: #665343; color: #888888'>&nbsp;@&nbsp;</font>
11321     * <font style='background-color: #665343;'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #000000; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #888888; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #ffffff; color: #000000'>&nbsp;&nbsp;&nbsp;</font><font style='background-color: #665343; color: #ffffff'>&nbsp;@&nbsp;</font>
11322     * </pre>
11323     * @deprecated This color name was misspelled; prefer {@link #TEA_GARDEN_CONTEMPLATION}
11324     */
11325    @Deprecated
11326    public static final SColor TEAD_GARDEN_CONTEMPLATION = new SColor(0x665343, "Tead Garden Contemplation");
11327
11328    /**
11329     * A color constant that is fully transparent. The RGB portion is 000000 (black), but should not render when used in
11330     * a method that respects alpha values. When transitioning between colors and ending or starting on transparent, you
11331     * should prefer making a color that has the correct RGB values and also has 0 for the alpha component unless you
11332     * are transitioning from opaque black to this SColor. Using {@link #SColor(int, int, int, int)} will work, as will
11333     * copying the SColor with {@link #cpy()} to get a Color and setting the copy's {@link #a} to 0. If you want to
11334     * obtain a packed float color that has a reduced alpha, you can use {@link #translucentColor(Color, float)} if you
11335     * have a Color or SColor, or its overload that takes a packed float color. This color can be represented as a
11336     * packed float with the constant 0x0.0p0F.
11337     */
11338    public static final SColor TRANSPARENT = new SColor(0, 0, 0, 0, "Transparent");
11339
11340    /**
11341     * This array is loaded with the colors found in the rainbow, in the
11342     * standard ROYGBIV order. You may want to consider {@link #COLOR_WHEEL_PALETTE}
11343     * if you want more hues or varying saturation/lightness; this is close to {@link #COLOR_WHEEL_PALETTE_BRIGHT}.
11344     */
11345    public static final SColor[] RAINBOW = {
11346            RED_PIGMENT, ORANGE_PEEL, YELLOW, GREEN, BLUE, INDIGO_DYE, VIOLET};
11347    /**
11348     * This array is loaded with the colors from the traditional Japanese
11349     * Red-Violet Series found at the wikipedia site here:
11350     * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan
11351     */
11352    public static final SColor[] RED_VIOLET_SERIES = {
11353            ONE_KIN_DYE, RED_PLUM, CHERRY_BLOSSOM_DYE, PALE_CRIMSON, PEACH_DYE, MEDIUM_CRIMSON, WASHED_OUT_CRIMSON};
11354    /**
11355     * This array is loaded with the colors from the traditional Japanese Red
11356     * Series found at the wikipedia site here:
11357     * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan
11358     */
11359    public static final SColor[] RED_SERIES = {
11360            IBIS_WING, LONG_SPRING, COCHINEAL_RED, THRICE_DYED_CRIMSON, PLUM_BLOSSOM_MOUSE, PURE_CRIMSON, RED_BEAN,
11361            SHRIMP_BROWN, DAWN, ORANGUTAN, PERSIMMON_JUICE, RED_KITE, BLACK_KITE, GLAZED_PERSIMMON, EDO_BROWN,
11362            CYPRESS_BARK, RINSED_OUT_RED, BREWED_MUSTARD_BROWN, OVERDYED_RED_BROWN, CHINESE_TEA_BROWN, FADED_CHINESE_TEA_BROWN,
11363            CHESTNUT_LEATHER_BROWN, IBIS, CHERRY_BLOSSOM_MOUSE, FOREIGN_CRIMSON, DEEP_SCARLET, WATER_PERSIMMON,
11364            SAPPANWOOD_INCENSE, TRUE_RED, SILVERED_RED, CHESTNUT_PLUM, CORAL_DYE, WILTED_LAWN_CLIPPINGS, RED_BIRCH,
11365            CYPRESS_BARK_RED, BLOOD_RED, BLOOD, BENI_DYE, MEAT, RED_INCENSE, EARTHEN_YELLOW_RED_BROWN, DISTANT_RIVER_BROWN,
11366            BIRCH_BROWN, SPARROW_BROWN, BOILED_RED_BEAN_BROWN};
11367    /**
11368     * This array is loaded with the colors from the traditional Japanese Yellow
11369     * Red Series found at the wikipedia site here:
11370     * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan
11371     */
11372    public static final SColor[] YELLOW_RED_SERIES = {
11373            WALNUT, SUMAC, RICH_GARDENIA, RED_OCHRE, POLISHED_BROWN, STYLISH_PERSIMMON, DAYLILY, RED_DYE_TURMERIC,
11374            LEGAL_DYE, AMBER_DYE, DECAYING_LEAVES, CLOVE_DYED, BRUSHWOOD_DYED, SOOTY_BAMBOO, EARTHEN_YELLOW, CHINESE_TEA_YELLOW,
11375            CATTAIL, SCORCHED_BROWN, WASHED_OUT_PERSIMMON, SAWTOOTH_OAK, GREEN_TEA_DYE, PALE_PERSIMMON, PLUM_DYED,
11376            CLOVE_BROWN, LOQUAT_BROWN, PALE_INCENSE, GOLDEN_BROWN_DYE, FOX, ALOEWOOD, WHITE_TEA_DYE,
11377            DRIED_WEATHERED_BAMBOO, FLATTERY_BROWN};
11378    /**
11379     * This array is loaded with the colors from the traditional Japanese Yellow
11380     * Series found at the wikipedia site here:
11381     * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan
11382     */
11383    public static final SColor[] YELLOW_SERIES = {
11384            LIGHT_YELLOW_DYE, EGG_DYE, BRIGHT_GOLD_BROWN, UNDRIED_WALL, CORN_DYE, GOLDEN_OAK, FLORAL_LEAF, TURMERIC,
11385            FADED_SEN_NO_RIKYUS_TEA, LYE, TEA_GARDEN_CONTEMPLATION, RAPESEED_OIL, NIGHTINGALE_BROWN, JAPANESE_TRIANDRA_GRASS,
11386            STEAMED_CHESTNUT, FINCH_BROWN, NIGHTINGALE, BRIGHT_GOLDEN_YELLOW, SUMAC_DYED, MULBERRY_DYED, CAPE_JASMINE,
11387            WHITE_OAK, GAMBOGE_DYE, EGGSHELL_PAPER, GOLDEN_FALLEN_LEAVES, SEN_NO_RIKYUS_TEA, JAPANESE_IRIS,
11388            SIMMERED_SEAWEED, YELLOW_SEA_PINE_BROWN, RAPEBLOSSOM_BROWN, AMUR_CORK_TREE, PALE_FALLEN_LEAVES, PATRINIA_FLOWER};
11389    /**
11390     * This array is loaded with the colors from the traditional Japanese Yellow
11391     * Green Series found at the wikipedia site here:
11392     * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan
11393     */
11394    public static final SColor[] YELLOW_GREEN_SERIES = {
11395            GREENFINCH, WILLOW_TEA, FLIRTATIOUS_INDIGO_TEA, DEAD_MANS_FINGERS_SEAWEED, BAIKO_BROWN, SISKIN_SPROUT_YELLOW,
11396            WILLOW_LEAVES_UNDERSIDE, WILLOW_DYE, BLUE_BLACK_CRAYFISH, PALE_OAK, RIKAN_BROWN, MOSS, THOUSAND_YEAR_OLD_BROWN,
11397            IWAI_BROWN, SOOTY_WILLOW_BAMBOO, PALE_YOUNG_GREEN_ONION, FRESH_ONION, PINE_NEEDLE};
11398    /**
11399     * This array is loaded with the colors from the traditional Japanese Blue
11400     * Green Series found at the wikipedia site here:
11401     * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan
11402     */
11403    public static final SColor[] BLUE_GREEN_SERIES = {
11404            JAPANESE_PALE_BLUE, WILLOW_GREY, THOUSAND_YEAR_OLD_GREEN, WHITISH_GREEN, PATINA, STOREROOM_BROWN, GREYISH_DARK_GREEN,
11405            INSECT_SCREEN, ALOEWOOD_BROWN, CELADON_DYE, RUSTY_STOREROOM, SILK_CREPE_BROWN, YOUNG_BAMBOO, OLD_BAMBOO,
11406            MIDORI, RUSTY_CELADON, HORSETAIL, GREEN_BAMBOO, VELVET, FRAGILE_SEAWEED_BROWN, PALE_GREEN_ONION, BLUE_GREEN_DYE,
11407            IRON, GORYEO_STOREROOM};
11408    /**
11409     * This array is loaded with the colors from the traditional Japanese Blue
11410     * Violet Series found at the wikipedia site here:
11411     * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan
11412     */
11413    public static final SColor[] BLUE_VIOLET_SERIES = {
11414            HARBOR_RAT, IRON_STORAGE, RUSTED_LIGHT_BLUE, LIGHT_BLUE_DYE, RUSTY_STORAGE, JAPANESE_INDIGO, LIGHT_BLUE_FLOWER,
11415            OPPOSITE_FLOWER, IRONHEAD_FLOWER, SKY, ULTRAMARINE_DYE, COARSE_WOOL, NAVY_BLUE_DYE, STAINED_RED, MOUSY_WISTERIA,
11416            WISTERIA_DYE, DULL_BLUE, WATER, INSIDE_OF_A_BOTTLE, NEW_BRIDGE, MOUSY_INDIGO, ONANDO, THOUSAND_HERB, LIGHT_BLUE_SILK,
11417            KIMONO_STORAGE, BLACK_CHESTNUT_OAK, DARK_BLUE_DYE, LAPIS_LAZULI, DARK_BLUE_LAPIS_LAZULI, NAVY_BLUE_BELLFLOWER,
11418            SAFFLOWER, DARK_INDIGO};
11419    /**
11420     * This array is loaded with the colors from the traditional Japanese Violet
11421     * Series found at the wikipedia site here:
11422     * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan
11423     */
11424    public static final SColor[] VIOLET_SERIES = {
11425            WISTERIA_PURPLE, TATARIAN_ASTER, BLUE_VIOLET_DYE, THIN_VIOLET, VIOLET_DYE, DARK_RED_DYE, RED_WISTERIA,
11426            DOVE_FEATHER_GREY, VINE_GRAPE, TREE_PEONY, FAKE_PURPLE, SAPPANWOOD, VANISHING_RED_MOUSE, BELLFLOWER,
11427            DISAPPEARING_PURPLE, DEEP_PURPLE, HALF_PURPLE, PURPLE_DYE, IRIS, RABBIT_EAR_IRIS, GRAPE_MOUSE, BURNT_BAMBOO,
11428            PLUM_PURPLE, PURPLE_KITE, MULBERRY};
11429    /**
11430     * This array is loaded with the colors from the traditional Japanese
11431     * Achromatic Series found at the wikipedia site here:
11432     * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan
11433     */
11434    public static final SColor[] ACHROMATIC_SERIES = {
11435            UNBLEACHED_SILK, SILVER_GREY, BROWN_RAT_GREY, BETEL_NUT_DYE, BLACK_DYE, WHITE_MOUSE, PLAIN_MOUSE,
11436            INDIGO_INK_BROWN, INK, INDIGO_WHITE};
11437
11438    /**
11439     * An array of SColor values that should all be fairly different from any other in the group.
11440     * This may be useful for tinting things that should be color-coded differently from each other. To get a random
11441     * order for these colors while still guaranteeing that no color will be drawn twice in the first 56 choices, you
11442     * can use {@code OrderedSet<SColor> palette = new OrderedSet<SColor>(SColor.VARIED_PALETTE).shuffle(rng);} (where
11443     * rng is any non-null IRNG) and then get sequential colors from that set with
11444     * {@code int i = 0; SColor color = palette.getAt(i);} , incrementing i before calling getAt again and possibly
11445     * wrapping with {@code i %= 56;} .
11446     * This includes 56 colors, organized in groups of 4 from dark to light in each group:
11447     * <ul>
11448     * <li>0-3: gray group</li>
11449     * <li>4-7: brown group</li>
11450     * <li>8-11: red group</li>
11451     * <li>12-15: pink group</li>
11452     * <li>16-19: magenta/purple group</li>
11453     * <li>20-23: purple/blue-ish group</li>
11454     * <li>24-27: darker blue group</li>
11455     * <li>28-31: lighter blue and blue-green group</li>
11456     * <li>32-35: pure green group</li>
11457     * <li>36-39: grayish-green group</li>
11458     * <li>40-43: yellow-green group</li>
11459     * <li>44-47: yellow group</li>
11460     * <li>48-51: orange group</li>
11461     * <li>52-55: orange-red-pink/salmon/coral group</li>
11462     * </ul>
11463     */
11464    public static final SColor[] VARIED_PALETTE = {
11465            DARK_GRAY, GRAY, LIGHT_GRAY, DB_EGGSHELL,
11466            DB_SEAL_BROWN, BROWNER, DARK_TAN, TAN,
11467            DB_BLOOD, PURE_CRIMSON, RED, IBIS_WING,
11468            TREE_PEONY, DEEP_CERISE, HOT_PINK, PINK,
11469            INDIGO, PURPLE, PSYCHEDELIC_PURPLE, LIGHT_VIOLET,
11470            ROYAL_PURPLE, VIOLET, HALF_PURPLE, LAVENDER_FLORAL,
11471            COBALT, CERULEAN_BLUE, BLUE, CORNFLOWER_BLUE,
11472            LIGHT_BLUE_FLOWER, ROBIN_EGG_BLUE, CYAN, LIGHT_BLUE,
11473            GREEN_BAMBOO, PERSIAN_GREEN, ELECTRIC_GREEN, MINT_GREEN,
11474            CAMO_GREEN, PALE_GREEN_ONION, PASTEL_GREEN, MOSS_GREEN,
11475            OLIVE_DRAB, YELLOW_GREEN, CHARTREUSE_GREEN, ELECTRIC_LIME,
11476            GOLD, SCHOOL_BUS_YELLOW, YELLOW, LEMON_CHIFFON,
11477            BURNT_ORANGE, OCHRE, CAPE_JASMINE, PEACH_YELLOW,
11478            SAFETY_ORANGE, CORAL_DYE, DARK_SALMON, LIGHT_YELLOW_DYE
11479    };
11480
11481    /**
11482     * DawnBringer's original 16-color palette, as posted on the Pixel Joint forums,
11483     * http://www.pixeljoint.com/forum/forum_posts.asp?TID=12795 , and since then used in lots of pixel art.
11484     * Some useful previews can be seen here https://github.com/geoffb/dawnbringer-palettes , and the order
11485     * this array uses is the same as the previews at the bottom of that page.
11486     * <br>
11487     * <a href="http://i.imgur.com/iFJXQTx.png">Preview of all 16 colors, with names</a>
11488     */
11489    public static final SColor[] DAWNBRINGER_16 = {DB_MIDNIGHT, DB_DARK_LEATHER, DB_DEEP_OCEAN, DB_LEAD, DB_EARTH,
11490            DB_FOREST, DB_LOBSTER, DB_DRAB, DB_CADET_BLUE, DB_TAWNY_BROWN, DB_IRON, DB_PEA_SOUP, DB_PUTTY,
11491            DB_TURQUOISE, DB_MUSTARD, DB_EGGSHELL};
11492
11493
11494    /**
11495     * DawnBringer's 32-color palette, as posted on the Pixel Joint forums,
11496     * http://www.pixeljoint.com/forum/forum_posts.asp?TID=16247 , and since then used in lots of pixel art.
11497     * Some useful previews can be seen here https://github.com/geoffb/dawnbringer-palettes , and the order
11498     * this array uses is the same as the previews at the bottom of that page.
11499     * <br>
11500     * <a href="http://i.imgur.com/2xSFryj.png">Preview of all 32 colors, with names</a>
11501     */
11502    public static final SColor[] DAWNBRINGER_32 = {DB_BLACK, DB_INK, DB_SEAL_BROWN, DB_CHESTNUT, DB_CAPPUCCINO,
11503            DB_PUMPKIN, DB_FAWN, DB_NUDE, DB_DAFFODIL, DB_KEY_LIME, DB_SHAMROCK, DB_JUNGLE, DB_OLIVE, DB_MUD,
11504            DB_SHADOW, DB_COBALT, DB_CERULEAN, DB_DENIM, DB_SKY_BLUE, DB_SEAFOAM, DB_PLATINUM, DB_WHITE,
11505            DB_STORM_CLOUD, DB_ELEPHANT, DB_GRAPHITE, DB_SOOT, DB_EGGPLANT, DB_BLOOD, DB_CORAL, DB_LAVENDER,
11506            DB_ARMY_GREEN, DB_COMPOST};
11507
11508    /**
11509     * DawnBringer's 256-color Aurora palette, modified slightly to fit one transparent color by removing one gray.
11510     * Aurora is available in <a href="http://pixeljoint.com/forum/forum_posts.asp?TID=26080">this set of tools</a>
11511     * for a pixel art editor, but it is usable for lots of high-color purposes. The original palette did not have
11512     * names. Naming 256 colors was an ordeal, since many of these colors are well-described by the same name, even when
11513     * two or more can be distinguished visually from each other. Aurora is a good option as a broad-purpose palette
11514     * when using {@link com.github.tommyettinger.anim8.PaletteReducer}, and it is the default there if no palette is
11515     * specified. For pixel art or low-color edits of traditional art, this palette can reproduce a lot of realistic
11516     * colors and slight changes on those colors, with many skin tones (mostly, these are numbered so 1 is the darkest
11517     * skin tone in a group and higher numbers get progressively lighter; the lightest tones are
11518     * {@link #AURORA_LIGHT_SKIN_9}, {@link #AURORA_PINK_SKIN_4}, {@link #AURORA_BRONZE_SKIN_4}, and
11519     * {@link #AURORA_DARK_SKIN_3}, with the LIGHT skin tones steadily going from warm and saturated colors at
11520     * {@link #AURORA_LIGHT_SKIN_1} to more pale at 9, and the PINK skin tones meant for accents on some body parts that
11521     * aren't quite skin-colored, like the lips and ears). <a href="https://i.imgur.com/CrI1LyU.png">Preview of all 256
11522     * colors, each with the hex number for its index in this array.</a>
11523     * <a href="https://i.imgur.com/hufvt0v.png">Another preview of all 256 colors, but with the name of each color
11524     * instead (without "Aurora " at the start).</a>
11525     */
11526    public static final SColor[] DAWNBRINGER_AURORA = {
11527            AURORA_TRANSPARENT, AURORA_PITCH_BLACK, AURORA_COAL_BLACK, AURORA_SHADOW, AURORA_GRAPHITE, AURORA_SMOKE, AURORA_LEAD, AURORA_IRON,
11528            AURORA_ELEPHANT, AURORA_CHINCHILLA, AURORA_GREYHOUND, AURORA_SILVER, AURORA_FOG, AURORA_PLATINUM, AURORA_CLOUD, AURORA_SHINING_WHITE,
11529            AURORA_SEAWATER, AURORA_HOSPITAL_GREEN, AURORA_CYAN, AURORA_BUBBLE, AURORA_PERIWINKLE, AURORA_ULTRAMARINE, AURORA_FADED_BLUE, AURORA_OCEAN_BLUE,
11530            AURORA_STYGIAN_BLUE, AURORA_DEEP_PURPLE, AURORA_TYRIAN_PURPLE, AURORA_MAGENTA, AURORA_BUBBLEGUM_PINK, AURORA_PORK_CHOP, AURORA_RAW_MEAT, AURORA_FRESH_BLOOD,
11531            AURORA_PUTTY, AURORA_SIENNA, AURORA_SEAL_BROWN, AURORA_MUMMY_BROWN, AURORA_FAWN, AURORA_ORANGE, AURORA_PEACH, AURORA_CREAM,
11532            AURORA_LEMON, AURORA_EARWAX, AURORA_UMBER, AURORA_IVY_GREEN, AURORA_JADE, AURORA_SHAMROCK_GREEN, AURORA_CELADON, AURORA_PUCE,
11533            AURORA_BEIGE, AURORA_WET_STONE, AURORA_SLOW_CREEK, AURORA_SLATE_GRAY, AURORA_LIGHT_SKIN_1, AURORA_LIGHT_SKIN_2, AURORA_LIGHT_SKIN_3, AURORA_LIGHT_SKIN_4,
11534            AURORA_LIGHT_SKIN_5, AURORA_LIGHT_SKIN_6, AURORA_LIGHT_SKIN_7, AURORA_LIGHT_SKIN_8, AURORA_LIGHT_SKIN_9, AURORA_DARK_SKIN_1, AURORA_DARK_SKIN_2, AURORA_DARK_SKIN_3,
11535            AURORA_PINK_SKIN_1, AURORA_PINK_SKIN_2, AURORA_PINK_SKIN_3, AURORA_PINK_SKIN_4, AURORA_BRONZE_SKIN_4, AURORA_BRONZE_SKIN_3, AURORA_BRONZE_SKIN_2, AURORA_BRONZE_SKIN_1,
11536            AURORA_TAUPE, AURORA_DRAB_GREEN, AURORA_LIZARD_SCALES, AURORA_CRICKET, AURORA_OLIVE_OIL, AURORA_DUN, AURORA_CORN_SILK, AURORA_TAN,
11537            AURORA_STRAW, AURORA_HONEYDEW, AURORA_TARNISH, AURORA_PEA_SOUP, AURORA_MARSH, AURORA_ASPARAGUS, AURORA_PEAT_BOG, AURORA_DEEP_JUNGLE,
11538            AURORA_PINE_GREEN, AURORA_OLIVE_GREEN, AURORA_GRAY_GREEN, AURORA_MAIDENHAIR_FERN, AURORA_KELLY_GREEN, AURORA_DUSTY_GREEN, AURORA_GARTER_SNAKE, AURORA_SILVER_GREEN,
11539            AURORA_PISTACHIO, AURORA_ANGEL_WING, AURORA_SAGE_GREEN, AURORA_DRIED_SAGE, AURORA_ARTICHOKE, AURORA_VIRIDIAN, AURORA_FLORAL_FOAM, AURORA_HUNTER_GREEN,
11540            AURORA_DARK_TEAL, AURORA_KYANITE, AURORA_SPEARMINT, AURORA_AMAZONITE, AURORA_PASTEL_SKY, AURORA_AQUAMARINE, AURORA_DUST_BUNNY, AURORA_PATINA,
11541            AURORA_CHIPPED_GRANITE, AURORA_BLUE_SMOKE, AURORA_AIR_FORCE_BLUE, AURORA_COLD_IRON, AURORA_DREARY_BLUE, AURORA_MURK, AURORA_NINJA, AURORA_WATERCOLOR_BLACK,
11542            AURORA_IOLITE, AURORA_BOYSENBERRY, AURORA_WATERCOLOR_GRAY, AURORA_BLUE_STEEL, AURORA_TWILIGHT_CLOUD, AURORA_SMOG, AURORA_TROPIC_MIST, AURORA_FEATHER_DOWN,
11543            AURORA_MILD_VIOLET, AURORA_VIOLET_CUSHIONS, AURORA_DULL_VIOLET, AURORA_ROYAL_VIOLET, AURORA_EMINENCE, AURORA_PRUNE, AURORA_DUSTY_GRAPE, AURORA_PINK_VIOLET,
11544            AURORA_RIPE_PLUM, AURORA_MAUVE, AURORA_HAM, AURORA_COTTON_CANDY, AURORA_SILVER_PINK, AURORA_TEA_ROSE, AURORA_OLD_ROSE, AURORA_DUSTY_PINK,
11545            AURORA_ROSEATE_SPOONBILL, AURORA_THULIAN_PINK, AURORA_BROWN_VELVET, AURORA_NIGHTSHADE, AURORA_SCRIBE_INK, AURORA_VARNISH, AURORA_CEDAR_WOOD, AURORA_HOT_SAUCE,
11546            AURORA_LURID_RED, AURORA_BRICK, AURORA_FUSION_RED, AURORA_EMBERS, AURORA_SALMON, AURORA_TAXICAB_YELLOW, AURORA_APRICOT, AURORA_BURNT_YELLOW,
11547            AURORA_DRY_PEPPER, AURORA_REDWOOD, AURORA_KOA, AURORA_OCHRE, AURORA_DULL_GREEN, AURORA_ARMY_GREEN, AURORA_DRIFTWOOD, AURORA_DRY_BRUSH,
11548            AURORA_MUSH, AURORA_BANANA_PUDDING, AURORA_SAFFRON, AURORA_PENCIL_YELLOW, AURORA_CHARTREUSE, AURORA_ABSINTHE, AURORA_INFECTION, AURORA_FROG_GREEN,
11549            AURORA_AVOCADO, AURORA_WOODLANDS, AURORA_DARK_PINE, AURORA_MOSS_GREEN, AURORA_FERN_GREEN, AURORA_FOREST_GLEN, AURORA_MALACHITE, AURORA_APPLE_GREEN,
11550            AURORA_CELERY, AURORA_MINT_GREEN, AURORA_EMERALD, AURORA_PRASE, AURORA_EUCALYPTUS, AURORA_ZUCCHINI, AURORA_SOFT_TEAL, AURORA_MEDIUM_TEAL,
11551            AURORA_SPRING_GREEN, AURORA_TURQUOISE, AURORA_SEAFOAM, AURORA_VARISCITE, AURORA_REFRESHING_MIST, AURORA_SHINING_SKY, AURORA_STEAM, AURORA_ROBIN_EGG_BLUE,
11552            AURORA_DENIM_BLUE, AURORA_DEEP_TEAL, AURORA_NAVY_BLUE, AURORA_BLUEBERRY, AURORA_PRUSSIAN_BLUE, AURORA_DESERT_RAIN, AURORA_ELECTRIC_BLUE, AURORA_HIDDEN_BLUE,
11553            AURORA_DULL_AZURE, AURORA_RIPPED_DENIM, AURORA_CALM_SKY, AURORA_VAPOR, AURORA_POWDER_BLUE, AURORA_SUDS, AURORA_STRONG_CYAN, AURORA_SHARP_AZURE,
11554            AURORA_BLUE_EYE, AURORA_SUBTLETY, AURORA_ROUGH_SAPPHIRE, AURORA_IRIS, AURORA_CORNFLOWER_BLUE, AURORA_POLISHED_SAPPHIRE, AURORA_ROYAL_BLUE, AURORA_INDIGO,
11555            AURORA_SPACE_BLUE, AURORA_THICK_AMETHYST, AURORA_JUICY_GRAPE, AURORA_BLACKLIGHT_GLOW, AURORA_PURPLE_FREESIA, AURORA_THIN_AMETHYST, AURORA_ORCHID, AURORA_LAVENDER,
11556            AURORA_LILAC, AURORA_SOAP, AURORA_PINK_TUTU, AURORA_THISTLE, AURORA_HELIOTROPE, AURORA_LIGHT_PLUM, AURORA_WISTERIA, AURORA_MEDIUM_PLUM,
11557            AURORA_VIOLET, AURORA_GRAPE_LOLLIPOP, AURORA_MULBERRY, AURORA_GRAPE_SODA, AURORA_EGGPLANT, AURORA_CHERRY_SYRUP, AURORA_PLUM_JUICE, AURORA_FRUIT_PUNCH,
11558            AURORA_BUBBLE_GUM, AURORA_PINK_LEMONADE, AURORA_SHRIMP, AURORA_FLAMINGO, AURORA_LIPSTICK, AURORA_CARMINE, AURORA_BOLOGNA, AURORA_RASPBERRY,
11559    };
11560
11561    /**
11562     * A predefined palette of 198 colors derived from 21 hand-picked hues on the color wheel, with 9 variations on
11563     * saturation and value per hue, along with 9 grayscale colors from black to white. Not all of these colors are
11564     * especially distinguishable from each other; this mainly applies to the darkened colors (DARK_, DRAB_, and
11565     * RICH_) and sometimes the saturated colors (FLUSH_, BRIGHT_, and RICH_). The precise meanings of the terms used:
11566     * CW_ is the base color wheel color with medium saturation and value, CW_FADED_ is desaturated, CW_FLUSH_ is
11567     * saturated, CW_LIGHT_ has value increased, CW_PALE_ has value increased and is desaturated, CW_BRIGHT_ has value
11568     * increased and is saturated, CW_DARK_ has value decreased significantly, CW_DRAB_ has value decreased and is
11569     * desaturated, and CW_RICH_ has value decreased and is saturated. The names for the colors are usually chosen based
11570     * on the appearance of the CW_BRIGHT_ version and the CW_ version, which explains why CW_DRAB_APRICOT doesn't look
11571     * like the apricot fruit, but CW_BRIGHT_APRICOT probably does, depending on monitor brightness.
11572     * <br>
11573     * The array is organized into 21 hue blocks of 9 colors each, going from mid-value to light-value to dark-value
11574     * before moving to the next hue block. It starts at red, moves on to brown and orange, yellow, green, blue, purple,
11575     * and comes almost all the way back around to red. It ends with 9 grayscale colors, from black to white, ordered by
11576     * brightness. The grayscale colors use different names, going from darkest to lightest: CW_BLACK, CW_ALMOST_BLACK,
11577     * CW_GRAY_BLACK, CW_DARK_GRAY, CW_GRAY, CW_LIGHT_GRAY, CW_GRAY_WHITE, CW_ALMOST_WHITE, and CW_WHITE. The CW_BROWN
11578     * group was added after the rest, and has especially low saturation and value, but its hue is at the correct point
11579     * in the order.
11580     * <br>
11581     * <a href="https://i.imgur.com/IWXa2KK.png">Preview of 189 colors (all except grayscale), with names</a>
11582     */
11583    public static final SColor[] COLOR_WHEEL_PALETTE = {
11584            CW_RED, CW_FADED_RED, CW_FLUSH_RED, CW_LIGHT_RED, CW_PALE_RED, CW_BRIGHT_RED, CW_DARK_RED, CW_DRAB_RED, CW_RICH_RED,
11585            CW_ORANGE, CW_FADED_ORANGE, CW_FLUSH_ORANGE, CW_LIGHT_ORANGE, CW_PALE_ORANGE, CW_BRIGHT_ORANGE, CW_DARK_ORANGE, CW_DRAB_ORANGE, CW_RICH_ORANGE,
11586            CW_BROWN, CW_FADED_BROWN, CW_FLUSH_BROWN, CW_LIGHT_BROWN, CW_PALE_BROWN, CW_BRIGHT_BROWN, CW_DARK_BROWN, CW_DRAB_BROWN, CW_RICH_BROWN,
11587            CW_APRICOT, CW_FADED_APRICOT, CW_FLUSH_APRICOT, CW_LIGHT_APRICOT, CW_PALE_APRICOT, CW_BRIGHT_APRICOT, CW_DARK_APRICOT, CW_DRAB_APRICOT, CW_RICH_APRICOT,
11588            CW_GOLD, CW_FADED_GOLD, CW_FLUSH_GOLD, CW_LIGHT_GOLD, CW_PALE_GOLD, CW_BRIGHT_GOLD, CW_DARK_GOLD, CW_DRAB_GOLD, CW_RICH_GOLD,
11589            CW_YELLOW, CW_FADED_YELLOW, CW_FLUSH_YELLOW, CW_LIGHT_YELLOW, CW_PALE_YELLOW, CW_BRIGHT_YELLOW, CW_DARK_YELLOW, CW_DRAB_YELLOW, CW_RICH_YELLOW,
11590            CW_CHARTREUSE, CW_FADED_CHARTREUSE, CW_FLUSH_CHARTREUSE, CW_LIGHT_CHARTREUSE, CW_PALE_CHARTREUSE, CW_BRIGHT_CHARTREUSE, CW_DARK_CHARTREUSE, CW_DRAB_CHARTREUSE, CW_RICH_CHARTREUSE,
11591            CW_LIME, CW_FADED_LIME, CW_FLUSH_LIME, CW_LIGHT_LIME, CW_PALE_LIME, CW_BRIGHT_LIME, CW_DARK_LIME, CW_DRAB_LIME, CW_RICH_LIME,
11592            CW_HONEYDEW, CW_FADED_HONEYDEW, CW_FLUSH_HONEYDEW, CW_LIGHT_HONEYDEW, CW_PALE_HONEYDEW, CW_BRIGHT_HONEYDEW, CW_DARK_HONEYDEW, CW_DRAB_HONEYDEW, CW_RICH_HONEYDEW,
11593            CW_GREEN, CW_FADED_GREEN, CW_FLUSH_GREEN, CW_LIGHT_GREEN, CW_PALE_GREEN, CW_BRIGHT_GREEN, CW_DARK_GREEN, CW_DRAB_GREEN, CW_RICH_GREEN,
11594            CW_JADE, CW_FADED_JADE, CW_FLUSH_JADE, CW_LIGHT_JADE, CW_PALE_JADE, CW_BRIGHT_JADE, CW_DARK_JADE, CW_DRAB_JADE, CW_RICH_JADE,
11595            CW_SEAFOAM, CW_FADED_SEAFOAM, CW_FLUSH_SEAFOAM, CW_LIGHT_SEAFOAM, CW_PALE_SEAFOAM, CW_BRIGHT_SEAFOAM, CW_DARK_SEAFOAM, CW_DRAB_SEAFOAM, CW_RICH_SEAFOAM,
11596            CW_CYAN, CW_FADED_CYAN, CW_FLUSH_CYAN, CW_LIGHT_CYAN, CW_PALE_CYAN, CW_BRIGHT_CYAN, CW_DARK_CYAN, CW_DRAB_CYAN, CW_RICH_CYAN,
11597            CW_AZURE, CW_FADED_AZURE, CW_FLUSH_AZURE, CW_LIGHT_AZURE, CW_PALE_AZURE, CW_BRIGHT_AZURE, CW_DARK_AZURE, CW_DRAB_AZURE, CW_RICH_AZURE,
11598            CW_BLUE, CW_FADED_BLUE, CW_FLUSH_BLUE, CW_LIGHT_BLUE, CW_PALE_BLUE, CW_BRIGHT_BLUE, CW_DARK_BLUE, CW_DRAB_BLUE, CW_RICH_BLUE,
11599            CW_SAPPHIRE, CW_FADED_SAPPHIRE, CW_FLUSH_SAPPHIRE, CW_LIGHT_SAPPHIRE, CW_PALE_SAPPHIRE, CW_BRIGHT_SAPPHIRE, CW_DARK_SAPPHIRE, CW_DRAB_SAPPHIRE, CW_RICH_SAPPHIRE,
11600            CW_INDIGO, CW_FADED_INDIGO, CW_FLUSH_INDIGO, CW_LIGHT_INDIGO, CW_PALE_INDIGO, CW_BRIGHT_INDIGO, CW_DARK_INDIGO, CW_DRAB_INDIGO, CW_RICH_INDIGO,
11601            CW_VIOLET, CW_FADED_VIOLET, CW_FLUSH_VIOLET, CW_LIGHT_VIOLET, CW_PALE_VIOLET, CW_BRIGHT_VIOLET, CW_DARK_VIOLET, CW_DRAB_VIOLET, CW_RICH_VIOLET,
11602            CW_PURPLE, CW_FADED_PURPLE, CW_FLUSH_PURPLE, CW_LIGHT_PURPLE, CW_PALE_PURPLE, CW_BRIGHT_PURPLE, CW_DARK_PURPLE, CW_DRAB_PURPLE, CW_RICH_PURPLE,
11603            CW_MAGENTA, CW_FADED_MAGENTA, CW_FLUSH_MAGENTA, CW_LIGHT_MAGENTA, CW_PALE_MAGENTA, CW_BRIGHT_MAGENTA, CW_DARK_MAGENTA, CW_DRAB_MAGENTA, CW_RICH_MAGENTA,
11604            CW_ROSE, CW_FADED_ROSE, CW_FLUSH_ROSE, CW_LIGHT_ROSE, CW_PALE_ROSE, CW_BRIGHT_ROSE, CW_DARK_ROSE, CW_DRAB_ROSE, CW_RICH_ROSE,
11605            CW_BLACK, CW_ALMOST_BLACK, CW_GRAY_BLACK, CW_DARK_GRAY, CW_GRAY, CW_LIGHT_GRAY, CW_GRAY_WHITE, CW_ALMOST_WHITE, CW_WHITE,
11606    };
11607
11608    /**
11609     * An alternate version of {@link #COLOR_WHEEL_PALETTE} that has 16 hues (instead of 21 in the other palette)
11610     * followed by grayscale, with each hue containing 9 colors (there are also 9 grayscale colors). Very similar hues
11611     * have been removed from COLOR_WHEEL_PALETTE to try to better support random (or random-like) selection of colors.
11612     * Each section of 9 colors per hue has been reordered as well, going in this order:
11613     * <ol>
11614     *     <li>{@code CW_PALE}, high brightness, low saturation</li>
11615     *     <li>{@code CW_LIGHT}, high brightness, medium saturation</li>
11616     *     <li>{@code CW_BRIGHT}, high brightness, high saturation</li>
11617     *     <li>{@code CW_FADED}, medium brightness, low saturation</li>
11618     *     <li>{@code CW}, medium brightness, medium saturation</li>
11619     *     <li>{@code CW_FLUSH}, medium brightness, high saturation</li>
11620     *     <li>{@code CW_DRAB}, low brightness, low saturation</li>
11621     *     <li>{@code CW_DARK}, low brightness, medium saturation</li>
11622     *     <li>{@code CW_RICH}, low brightness, high saturation</li>
11623     * </ol>
11624     * The grayscale colors go from high brightness to low brightness as well, the reverse of COLOR_WHEEL_PALETTE.
11625     * <br>
11626     * You can use some of the utility methods in this class to get colors from this with a good distribution, including
11627     * {@link #randomColorWheel(IRNG, int, int)}, {@link #indexedColorWheel(int, int, int)}, and the overloads of those
11628     * methods with less parameters. If those methods fit your needs, you don't need to read the next section.
11629     * <br>
11630     * This is organized the way it is to allow efficient random color fetching when you know what brightness and
11631     * saturation you want. Example code for this given an {@link IRNG} called {@code rng}, with brightness and
11632     * saturation as ints called {@code bright} and {@code sat} between 0 and 2 inclusive, would be:
11633     * {@code SColor.COLOR_WHEEL_PALETTE_REDUCED[rng.next(4) * 9 + 3 * bright + sat]}. That code won't ever get a
11634     * grayscale color, but should have an equal chance of choosing any of the 16 hues, with the given saturation and
11635     * brightness. You might want to select colors in a sequence, with a very low chance of similar colors being close
11636     * in the sequence; this can be done in a few ways depending on whether you want saturation and brightness to change
11637     * as well as hue. If you know brightness and saturation as ints between 0 and 2 (inclusive) called {@code bright}
11638     * and {@code sat}, as before, you can go through the 16 hues in a good pattern using a change to the index (an int
11639     * called {@code idx} here): {@code SColor.COLOR_WHEEL_PALETTE_REDUCED[(idx * 7 & 15) * 9 + 3 * bright + sat]}. If
11640     * you add 1 to idx each time, as in an ordinary for loop, then that code will produce 16 different hues in a fairly
11641     * well-distributed way as idx goes from 0 to 15. If you want brightness to also change in a sequence, you can use
11642     * {@code SColor.COLOR_WHEEL_PALETTE_REDUCED[((idx * 497) % 48 ^ (idx * 497 >> 2 & 3)) * 3 + sat]} for idx values
11643     * between 0 and 47, inclusive (this is rather complicated due to issues with simpler methods yielding brightness
11644     * changes in an obvious pattern). If you want to select from all 144 non-grayscale colors in a sequence, you can
11645     * try {@code SColor.COLOR_WHEEL_PALETTE_REDUCED[(idx * 89) % 144 ^ (idx * 89 >> 2 & 3)]}, which will yield all of
11646     * the colors with a good distribution as idx goes from 0 to 143.
11647     */
11648    public static final SColor[] COLOR_WHEEL_PALETTE_REDUCED = {
11649            CW_PALE_RED,CW_LIGHT_RED, CW_BRIGHT_RED, CW_FADED_RED, CW_RED, CW_FLUSH_RED, CW_DRAB_RED, CW_DARK_RED, CW_RICH_RED,
11650            CW_PALE_ORANGE,CW_LIGHT_ORANGE, CW_BRIGHT_ORANGE, CW_FADED_ORANGE, CW_ORANGE, CW_FLUSH_ORANGE, CW_DRAB_ORANGE, CW_DARK_ORANGE, CW_RICH_ORANGE,
11651            CW_PALE_BROWN,CW_LIGHT_BROWN, CW_BRIGHT_BROWN, CW_FADED_BROWN, CW_BROWN, CW_FLUSH_BROWN, CW_DRAB_BROWN, CW_DARK_BROWN, CW_RICH_BROWN,
11652            CW_PALE_APRICOT,CW_LIGHT_APRICOT, CW_BRIGHT_APRICOT, CW_FADED_APRICOT, CW_APRICOT, CW_FLUSH_APRICOT, CW_DRAB_APRICOT, CW_DARK_APRICOT, CW_RICH_APRICOT,
11653            CW_PALE_GOLD,CW_LIGHT_GOLD, CW_BRIGHT_GOLD, CW_FADED_GOLD, CW_GOLD, CW_FLUSH_GOLD, CW_DRAB_GOLD, CW_DARK_GOLD, CW_RICH_GOLD,
11654            CW_PALE_YELLOW,CW_LIGHT_YELLOW, CW_BRIGHT_YELLOW, CW_FADED_YELLOW, CW_YELLOW, CW_FLUSH_YELLOW, CW_DRAB_YELLOW, CW_DARK_YELLOW, CW_RICH_YELLOW,
11655            CW_PALE_CHARTREUSE,CW_LIGHT_CHARTREUSE, CW_BRIGHT_CHARTREUSE, CW_FADED_CHARTREUSE, CW_CHARTREUSE, CW_FLUSH_CHARTREUSE, CW_DRAB_CHARTREUSE, CW_DARK_CHARTREUSE, CW_RICH_CHARTREUSE,
11656            CW_PALE_HONEYDEW,CW_LIGHT_HONEYDEW, CW_BRIGHT_HONEYDEW, CW_FADED_HONEYDEW, CW_HONEYDEW, CW_FLUSH_HONEYDEW, CW_DRAB_HONEYDEW, CW_DARK_HONEYDEW, CW_RICH_HONEYDEW,
11657            CW_PALE_GREEN,CW_LIGHT_GREEN, CW_BRIGHT_GREEN, CW_FADED_GREEN, CW_GREEN, CW_FLUSH_GREEN, CW_DRAB_GREEN, CW_DARK_GREEN, CW_RICH_GREEN,
11658            CW_PALE_SEAFOAM,CW_LIGHT_SEAFOAM, CW_BRIGHT_SEAFOAM, CW_FADED_SEAFOAM, CW_SEAFOAM, CW_FLUSH_SEAFOAM, CW_DRAB_SEAFOAM, CW_DARK_SEAFOAM, CW_RICH_SEAFOAM,
11659            CW_PALE_AZURE,CW_LIGHT_AZURE, CW_BRIGHT_AZURE, CW_FADED_AZURE, CW_AZURE, CW_FLUSH_AZURE, CW_DRAB_AZURE, CW_DARK_AZURE, CW_RICH_AZURE,
11660            CW_PALE_BLUE,CW_LIGHT_BLUE, CW_BRIGHT_BLUE, CW_FADED_BLUE, CW_BLUE, CW_FLUSH_BLUE, CW_DRAB_BLUE, CW_DARK_BLUE, CW_RICH_BLUE,
11661            CW_PALE_INDIGO,CW_LIGHT_INDIGO, CW_BRIGHT_INDIGO, CW_FADED_INDIGO, CW_INDIGO, CW_FLUSH_INDIGO, CW_DRAB_INDIGO, CW_DARK_INDIGO, CW_RICH_INDIGO,
11662            CW_PALE_VIOLET,CW_LIGHT_VIOLET, CW_BRIGHT_VIOLET, CW_FADED_VIOLET, CW_VIOLET, CW_FLUSH_VIOLET, CW_DRAB_VIOLET, CW_DARK_VIOLET, CW_RICH_VIOLET,
11663            CW_PALE_PURPLE,CW_LIGHT_PURPLE, CW_BRIGHT_PURPLE, CW_FADED_PURPLE, CW_PURPLE, CW_FLUSH_PURPLE, CW_DRAB_PURPLE, CW_DARK_PURPLE, CW_RICH_PURPLE,
11664            CW_PALE_MAGENTA,CW_LIGHT_MAGENTA, CW_BRIGHT_MAGENTA, CW_FADED_MAGENTA, CW_MAGENTA, CW_FLUSH_MAGENTA, CW_DRAB_MAGENTA, CW_DARK_MAGENTA, CW_RICH_MAGENTA,
11665            CW_WHITE, CW_ALMOST_WHITE, CW_GRAY_WHITE, CW_LIGHT_GRAY, CW_GRAY, CW_DARK_GRAY, CW_GRAY_BLACK, CW_ALMOST_BLACK, CW_BLACK,
11666    };
11667    /** 16 high-brightness, low-saturation colors. */
11668    public static final SColor[] COLOR_WHEEL_PALETTE_PALE =  {
11669            CW_PALE_RED,
11670            CW_PALE_ORANGE,
11671            CW_PALE_BROWN,
11672            CW_PALE_APRICOT,
11673            CW_PALE_GOLD,
11674            CW_PALE_YELLOW,
11675            CW_PALE_CHARTREUSE,
11676            CW_PALE_HONEYDEW,
11677            CW_PALE_GREEN,
11678            CW_PALE_SEAFOAM,
11679            CW_PALE_AZURE,
11680            CW_PALE_BLUE,
11681            CW_PALE_INDIGO,
11682            CW_PALE_VIOLET,
11683            CW_PALE_PURPLE,
11684            CW_PALE_MAGENTA
11685    };
11686    /** 16 high-brightness, mid-saturation colors. */
11687    public static final SColor[] COLOR_WHEEL_PALETTE_LIGHT =  {
11688            CW_LIGHT_RED,
11689            CW_LIGHT_ORANGE,
11690            CW_LIGHT_BROWN,
11691            CW_LIGHT_APRICOT,
11692            CW_LIGHT_GOLD,
11693            CW_LIGHT_YELLOW,
11694            CW_LIGHT_CHARTREUSE,
11695            CW_LIGHT_HONEYDEW,
11696            CW_LIGHT_GREEN,
11697            CW_LIGHT_SEAFOAM,
11698            CW_LIGHT_AZURE,
11699            CW_LIGHT_BLUE,
11700            CW_LIGHT_INDIGO,
11701            CW_LIGHT_VIOLET,
11702            CW_LIGHT_PURPLE,
11703            CW_LIGHT_MAGENTA
11704    };
11705    /** 16 high-brightness, high-saturation colors. */
11706    public static final SColor[] COLOR_WHEEL_PALETTE_BRIGHT =  {
11707            CW_BRIGHT_RED,
11708            CW_BRIGHT_ORANGE,
11709            CW_BRIGHT_BROWN,
11710            CW_BRIGHT_APRICOT,
11711            CW_BRIGHT_GOLD,
11712            CW_BRIGHT_YELLOW,
11713            CW_BRIGHT_CHARTREUSE,
11714            CW_BRIGHT_HONEYDEW,
11715            CW_BRIGHT_GREEN,
11716            CW_BRIGHT_SEAFOAM,
11717            CW_BRIGHT_AZURE,
11718            CW_BRIGHT_BLUE,
11719            CW_BRIGHT_INDIGO,
11720            CW_BRIGHT_VIOLET,
11721            CW_BRIGHT_PURPLE,
11722            CW_BRIGHT_MAGENTA
11723    };
11724    /** 16 mid-brightness, low-saturation colors. */
11725    public static final SColor[] COLOR_WHEEL_PALETTE_FADED =  {
11726            CW_FADED_RED,
11727            CW_FADED_ORANGE,
11728            CW_FADED_BROWN,
11729            CW_FADED_APRICOT,
11730            CW_FADED_GOLD,
11731            CW_FADED_YELLOW,
11732            CW_FADED_CHARTREUSE,
11733            CW_FADED_HONEYDEW,
11734            CW_FADED_GREEN,
11735            CW_FADED_SEAFOAM,
11736            CW_FADED_AZURE,
11737            CW_FADED_BLUE,
11738            CW_FADED_INDIGO,
11739            CW_FADED_VIOLET,
11740            CW_FADED_PURPLE,
11741            CW_FADED_MAGENTA
11742    };
11743    /** 16 mid-brightness, mid-saturation colors. */
11744    public static final SColor[] COLOR_WHEEL_PALETTE_MID =  {
11745            CW_RED,
11746            CW_ORANGE,
11747            CW_BROWN,
11748            CW_APRICOT,
11749            CW_GOLD,
11750            CW_YELLOW,
11751            CW_CHARTREUSE,
11752            CW_HONEYDEW,
11753            CW_GREEN,
11754            CW_SEAFOAM,
11755            CW_AZURE,
11756            CW_BLUE,
11757            CW_INDIGO,
11758            CW_VIOLET,
11759            CW_PURPLE,
11760            CW_MAGENTA
11761    };
11762    /** 16 mid-brightness, high-saturation colors. */
11763    public static final SColor[] COLOR_WHEEL_PALETTE_FLUSH =  {
11764            CW_FLUSH_RED,
11765            CW_FLUSH_ORANGE,
11766            CW_FLUSH_BROWN,
11767            CW_FLUSH_APRICOT,
11768            CW_FLUSH_GOLD,
11769            CW_FLUSH_YELLOW,
11770            CW_FLUSH_CHARTREUSE,
11771            CW_FLUSH_HONEYDEW,
11772            CW_FLUSH_GREEN,
11773            CW_FLUSH_SEAFOAM,
11774            CW_FLUSH_AZURE,
11775            CW_FLUSH_BLUE,
11776            CW_FLUSH_INDIGO,
11777            CW_FLUSH_VIOLET,
11778            CW_FLUSH_PURPLE,
11779            CW_FLUSH_MAGENTA
11780    };
11781    /** 16 low-brightness, low-saturation colors. */
11782    public static final SColor[] COLOR_WHEEL_PALETTE_DRAB =  {
11783            CW_DRAB_RED,
11784            CW_DRAB_ORANGE,
11785            CW_DRAB_BROWN,
11786            CW_DRAB_APRICOT,
11787            CW_DRAB_GOLD,
11788            CW_DRAB_YELLOW,
11789            CW_DRAB_CHARTREUSE,
11790            CW_DRAB_HONEYDEW,
11791            CW_DRAB_GREEN,
11792            CW_DRAB_SEAFOAM,
11793            CW_DRAB_AZURE,
11794            CW_DRAB_BLUE,
11795            CW_DRAB_INDIGO,
11796            CW_DRAB_VIOLET,
11797            CW_DRAB_PURPLE,
11798            CW_DRAB_MAGENTA
11799    };
11800    /** 16 low-brightness, mid-saturation colors. */
11801    public static final SColor[] COLOR_WHEEL_PALETTE_DARK =  {
11802            CW_DARK_RED,
11803            CW_DARK_ORANGE,
11804            CW_DARK_BROWN,
11805            CW_DARK_APRICOT,
11806            CW_DARK_GOLD,
11807            CW_DARK_YELLOW,
11808            CW_DARK_CHARTREUSE,
11809            CW_DARK_HONEYDEW,
11810            CW_DARK_GREEN,
11811            CW_DARK_SEAFOAM,
11812            CW_DARK_AZURE,
11813            CW_DARK_BLUE,
11814            CW_DARK_INDIGO,
11815            CW_DARK_VIOLET,
11816            CW_DARK_PURPLE,
11817            CW_DARK_MAGENTA
11818    };
11819    /** 16 low-brightness, high-saturation colors. */
11820    public static final SColor[] COLOR_WHEEL_PALETTE_RICH =  {
11821            CW_RICH_RED,
11822            CW_RICH_ORANGE,
11823            CW_RICH_BROWN,
11824            CW_RICH_APRICOT,
11825            CW_RICH_GOLD,
11826            CW_RICH_YELLOW,
11827            CW_RICH_CHARTREUSE,
11828            CW_RICH_HONEYDEW,
11829            CW_RICH_GREEN,
11830            CW_RICH_SEAFOAM,
11831            CW_RICH_AZURE,
11832            CW_RICH_BLUE,
11833            CW_RICH_INDIGO,
11834            CW_RICH_VIOLET,
11835            CW_RICH_PURPLE,
11836            CW_RICH_MAGENTA
11837    };
11838    /**
11839     * Contains 9 arrays of 16 SColors each, with each of the outer arrays having a specific saturation and brightness,
11840     * and the inner arrays all going through the 16 "reduced" Color Wheel palette hues. Meant to be used with
11841     * {@link #randomHueSequence()} or its overloads to allow getting various saturation and brightness combinations
11842     * from the same hue. Note that randomHueSequence returns an Integer between 0 and 15, so it would be used to select
11843     * from the inner arrays.
11844     */
11845    public static final SColor[][] COLOR_WHEEL_PALETTES = {
11846            COLOR_WHEEL_PALETTE_PALE, COLOR_WHEEL_PALETTE_LIGHT, COLOR_WHEEL_PALETTE_BRIGHT,
11847            COLOR_WHEEL_PALETTE_FADED, COLOR_WHEEL_PALETTE_MID, COLOR_WHEEL_PALETTE_FLUSH,
11848            COLOR_WHEEL_PALETTE_DRAB, COLOR_WHEEL_PALETTE_DARK, COLOR_WHEEL_PALETTE_RICH
11849    };
11850
11851    /**
11852     * Gets a random color from the palette {@link #COLOR_WHEEL_PALETTE_REDUCED}, with the specified brightness (0 is
11853     * darkest, 1 is middle-bright, 2 is brightest) and saturation (0 is grayest, 1 is mid-saturation, 2 is fully
11854     * saturated), using the specified IRNG.
11855     * @param rng used to choose the hue
11856     * @param bright the brightness to use, from 0 (dark) to 2 (bright)
11857     * @param sat the saturation to use, from 0 (grayish) to 2 (boldly colored)
11858     * @return a randomly selected SColor from {@link #COLOR_WHEEL_PALETTE_REDUCED}
11859     */
11860    public static SColor randomColorWheel(IRNG rng, int bright, int sat)
11861    {
11862        bright = 2 - bright;
11863        bright &= 0x3;
11864        sat &= 0x3;
11865        bright %= 3;
11866        sat %= 3;
11867        return COLOR_WHEEL_PALETTE_REDUCED[rng.next(4) * 9 + 3 * bright + sat];
11868    }
11869
11870    /**
11871     * Gets a random color from the palette {@link #COLOR_WHEEL_PALETTE_REDUCED}, using the specified IRNG to determine
11872     * saturation, brightness, and hue.
11873     * @param rng used to choose everything
11874     * @return a randomly selected SColor from {@link #COLOR_WHEEL_PALETTE_REDUCED}
11875     */
11876    public static SColor randomColorWheel(IRNG rng)
11877    {
11878        return COLOR_WHEEL_PALETTE_REDUCED[rng.nextInt(144)];
11879    }
11880    /**
11881     * Gets a color by a shuffled index from the palette {@link #COLOR_WHEEL_PALETTE_REDUCED}, with the specified
11882     * brightness (0 is darkest, 1 is middle-bright, 2 is brightest) and saturation (0 is grayest, 1 is mid-saturation,
11883     * 2 is fully saturated), using the given index to ensure similar index values usually return very different colors.
11884     * This can return up to 16 colors before cycling, if bright and sat stay the same.
11885     * @param idx the index; should change by 1 per color generated to ensure different colors
11886     * @param bright the brightness to use, from 0 (dark) to 2 (bright)
11887     * @param sat the saturation to use, from 0 (grayish) to 2 (boldly colored)
11888     * @return a mathematically selected SColor from {@link #COLOR_WHEEL_PALETTE_REDUCED}
11889     */
11890    public static SColor indexedColorWheel(int idx, int bright, int sat)
11891    {
11892        idx *= 7;
11893        idx &= 0xf;
11894        bright = 2 - bright;
11895        bright &= 0x3;
11896        sat &= 0x3;
11897        bright %= 3;
11898        sat %= 3;
11899        return COLOR_WHEEL_PALETTE_REDUCED[idx * 9 + 3 * bright + sat];
11900    }
11901    /**
11902     * Gets a color by a shuffled index from the palette {@link #COLOR_WHEEL_PALETTE_REDUCED}, with the specified
11903     * saturation (0 is grayest, 1 is mid-saturation, 2 is fully saturated), using the given index to ensure similar
11904     * index values usually return very different colors. This can return up to 48 colors before cycling, if sat stays
11905     * the same.
11906     * @param idx the index; should change by 1 per color generated to ensure different colors
11907     * @param sat the saturation to use, from 0 (grayish) to 2 (boldly colored)
11908     * @return a mathematically selected SColor from {@link #COLOR_WHEEL_PALETTE_REDUCED}
11909     */
11910    public static SColor indexedColorWheel(int idx, int sat)
11911    {
11912        idx *= 497;
11913        sat &= 0xf;
11914        sat %= 3;
11915        return COLOR_WHEEL_PALETTE_REDUCED[(idx % 48 ^ (idx >> 2 & 3)) * 3 + sat];
11916    }
11917
11918    /**
11919     * Gets a color by a shuffled index from the palette {@link #COLOR_WHEEL_PALETTE_REDUCED}, using the given index to
11920     * ensure similar index values usually return very different colors. This can return up to 144 colors before
11921     * cycling, which is the total amount of non-grayscale colors in COLOR_WHEEL_PALETTE_REDUCED.
11922     * @param idx the index; should change by 1 per color generated to ensure different colors
11923     * @return a mathematically selected SColor from {@link #COLOR_WHEEL_PALETTE_REDUCED}
11924     */
11925    public static SColor indexedColorWheel(int idx)
11926    {
11927        idx *= 89;
11928        return COLOR_WHEEL_PALETTE_REDUCED[idx % 144 ^ (idx >> 2 & 3)];
11929    }
11930
11931    /**
11932     * Returns an infinite Iterator (also an Iterable) over different colors from {@link #COLOR_WHEEL_PALETTE}, with
11933     * measures taken to avoid returning the same exact SColor twice in a row (but two similar colors could be returned
11934     * in quick succession). See the documentation for {@link GapShuffler} for how you can use the returned infinite
11935     * Iterable; normally you would either call next() on it several times, or use it in a for loop that must at some
11936     * point exit via return or break.
11937     * @param seed a CharSequence, such as a String, to use as a seed; should be fairly long
11938     * @return a GapShuffler over the SColor values in COLOR_WHEEL_PALETTE
11939     */
11940    public static GapShuffler<SColor> randomColorSequence(CharSequence seed)
11941    {
11942        return new GapShuffler<>(COLOR_WHEEL_PALETTE, seed);
11943    }
11944    /**
11945     * Returns an infinite Iterator (also an Iterable) over different colors from {@link #COLOR_WHEEL_PALETTE}, with
11946     * measures taken to avoid returning the same hue of SColor twice in a row (but two similar hues could be returned
11947     * in quick succession). See the documentation for {@link GapShuffler} for how you can use the returned infinite
11948     * Iterable; normally you would either call next() on it several times, or use it in a for loop that must at some
11949     * point exit via return or break. This overload specifies a brightness and saturation to use, and only changes the
11950     * hue; this means there are 16 possible colors this can generate with the same bright and sat parameters.
11951     * @param seed a CharSequence, such as a String, to use as a seed; should be fairly long
11952     * @param bright the brightness to use, from 0 (darkest) to 2 (brightest)
11953     * @param sat the saturation to use, from 0 (grayest) to 2 (boldest)
11954     * @return a GapShuffler over the SColor values in COLOR_WHEEL_PALETTE
11955     */
11956    public static GapShuffler<SColor> randomColorSequence(CharSequence seed, int bright, int sat)
11957    {
11958        return new GapShuffler<>(COLOR_WHEEL_PALETTES[((2 - bright) * 3 + sat) % 9], seed);
11959    }
11960    /**
11961     * Returns an infinite Iterator (also an Iterable) over different colors from {@link #COLOR_WHEEL_PALETTE}, with
11962     * measures taken to avoid returning the same exact SColor twice in a row (but two similar colors could be returned
11963     * in quick succession). See the documentation for {@link GapShuffler} for how you can use the returned infinite
11964     * Iterable; normally you would either call next() on it several times, or use it in a for loop that must at some
11965     * point exit via return or break.
11966     * @param rng the source of randomness for shuffles in the returned sequence; often a {@link squidpony.squidmath.LongPeriodRNG}
11967     * @return a GapShuffler over the SColor values in COLOR_WHEEL_PALETTE
11968     */
11969    public static GapShuffler<SColor> randomColorSequence(IRNG rng)
11970    {
11971        return new GapShuffler<>(COLOR_WHEEL_PALETTE, rng);
11972    }
11973    /**
11974     * Returns an infinite Iterator (also an Iterable) over different colors from {@link #COLOR_WHEEL_PALETTE}, with
11975     * measures taken to avoid returning the same hue of SColor twice in a row (but two similar hues could be returned
11976     * in quick succession). See the documentation for {@link GapShuffler} for how you can use the returned infinite
11977     * Iterable; normally you would either call next() on it several times, or use it in a for loop that must at some
11978     * point exit via return or break. This overload specifies a brightness and saturation to use, and only changes the
11979     * hue; this means there are 16 possible colors this can generate with the same bright and sat parameters.
11980     * @param rng the source of randomness for shuffles in the returned sequence; often a {@link squidpony.squidmath.LongPeriodRNG}
11981     * @param bright the brightness to use, from 0 (darkest) to 2 (brightest)
11982     * @param sat the saturation to use, from 0 (grayest) to 2 (boldest)
11983     * @return a GapShuffler over the SColor values in COLOR_WHEEL_PALETTE
11984     */
11985    public static GapShuffler<SColor> randomColorSequence(IRNG rng, int bright, int sat)
11986    {
11987        return new GapShuffler<>(COLOR_WHEEL_PALETTES[((2 - bright) * 3 + sat) % 9], rng);
11988    }
11989    /**
11990     * Returns an infinite Iterator (also an Iterable) over different colors from {@link #COLOR_WHEEL_PALETTE}, with
11991     * measures taken to avoid returning the same exact SColor twice in a row (but two similar colors could be returned
11992     * in quick succession). See the documentation for {@link GapShuffler} for how you can use the returned infinite
11993     * Iterable; normally you would either call next() on it several times, or use it in a for loop that must at some
11994     * point exit via return or break. This overload uses a random seed for its shuffled order.
11995     * @return a GapShuffler over the SColor values in COLOR_WHEEL_PALETTE
11996     */
11997    public static GapShuffler<SColor> randomColorSequence()
11998    {
11999        return new GapShuffler<>(COLOR_WHEEL_PALETTE);
12000    }
12001    /**
12002     * Returns an infinite Iterator (also an Iterable) over different colors from {@link #COLOR_WHEEL_PALETTE}, with
12003     * measures taken to avoid returning the same hue of SColor twice in a row (but two similar hues could be returned
12004     * in quick succession). See the documentation for {@link GapShuffler} for how you can use the returned infinite
12005     * Iterable; normally you would either call next() on it several times, or use it in a for loop that must at some
12006     * point exit via return or break. This overload specifies a brightness and saturation to use, and only changes the
12007     * hue; this means there are 16 possible colors this can generate with the same bright and sat parameters. This
12008     * overload uses a random seed for its shuffled order.
12009     * @param bright the brightness to use, from 0 (darkest) to 2 (brightest)
12010     * @param sat the saturation to use, from 0 (grayest) to 2 (boldest)
12011     * @return a GapShuffler over the SColor values in COLOR_WHEEL_PALETTE
12012     */
12013    public static GapShuffler<SColor> randomColorSequence(int bright, int sat)
12014    {
12015        return new GapShuffler<>(COLOR_WHEEL_PALETTES[((2 - bright) * 3 + sat) % 9]);
12016    }
12017
12018    /**
12019     * Returns an infinite Iterator (also an Iterable) over Integers 0-15 inclusive that can be used to select hues from
12020     * {@link #COLOR_WHEEL_PALETTES}, with measures taken to avoid returning the same hue of SColor twice in a row (but
12021     * two similar hues could be returned in quick succession). See the documentation for {@link GapShuffler} for how
12022     * you can use the returned infinite Iterable; normally you would either call next() on it several times, or use it
12023     * in a for loop that must at some point exit via return or break.
12024     * @param seed a CharSequence, such as a String, to use as a seed; should be fairly long
12025     * @return a GapShuffler that goes through the Integers betweeen 0 and 15, both inclusive
12026     */
12027    public static GapShuffler<Integer> randomHueSequence(CharSequence seed)
12028    {
12029        return new GapShuffler<>(new Integer[]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, seed);
12030    }
12031    /**
12032     * Returns an infinite Iterator (also an Iterable) over Integers 0-15 inclusive that can be used to select hues from
12033     * {@link #COLOR_WHEEL_PALETTES}, with measures taken to avoid returning the same hue of SColor twice in a row (but
12034     * two similar hues could be returned in quick succession). See the documentation for {@link GapShuffler} for how
12035     * you can use the returned infinite Iterable; normally you would either call next() on it several times, or use it
12036     * in a for loop that must at some point exit via return or break.
12037     * @param rng the source of randomness for shuffles in the returned sequence; often a {@link squidpony.squidmath.LongPeriodRNG}
12038     * @return a GapShuffler that goes through the Integers betweeen 0 and 15, both inclusive
12039     */
12040    public static GapShuffler<Integer> randomHueSequence(IRNG rng)
12041    {
12042        return new GapShuffler<>(new Integer[]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, rng);
12043    }
12044    /**
12045     * Returns an infinite Iterator (also an Iterable) over Integers 0-15 inclusive that can be used to select hues from
12046     * {@link #COLOR_WHEEL_PALETTES}, with measures taken to avoid returning the same hue of SColor twice in a row (but
12047     * two similar hues could be returned in quick succession). See the documentation for {@link GapShuffler} for how
12048     * you can use the returned infinite Iterable; normally you would either call next() on it several times, or use it
12049     * in a for loop that must at some point exit via return or break. This overload uses a random seed for its shuffled
12050     * order.
12051     * @return a GapShuffler that goes through the Integers betweeen 0 and 15, both inclusive
12052     */
12053    public static GapShuffler<Integer> randomHueSequence()
12054    {
12055        return new GapShuffler<>(new Integer[]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15});
12056    }
12057
12058    /**
12059     * This array is loaded with all of the colors defined in SColor, in
12060     * arbitrary order.
12061     */
12062    public static final SColor[] FULL_PALETTE = {ALICE_BLUE, ALIZARIN, ALOEWOOD, ALOEWOOD_BROWN, AMARANTH, AMBER,
12063            AMBER_DYE, AMETHYST, AMUR_CORK_TREE, APRICOT, AQUA, AQUAMARINE, ARMY_GREEN, ASPARAGUS, ATOMIC_TANGERINE,
12064            AUBURN, AZUL, AZURE, BABY_BLUE, BAIKO_BROWN, BEIGE, BELLFLOWER, BENI_DYE, BETEL_NUT_DYE, BIRCH_BROWN,
12065            BISTRE, BLACK, BLACK_CHESTNUT_OAK, BLACK_DYE, BLACK_KITE, BLOOD, BLOOD_RED, BLUE, BLUE_BLACK_CRAYFISH,
12066            BLUE_GREEN, BLUE_GREEN_DYE, BLUE_VIOLET, BLUE_VIOLET_DYE, BOILED_RED_BEAN_BROWN, BONDI_BLUE, BRASS,
12067            BREWED_MUSTARD_BROWN, BRIGHT_GOLD_BROWN, BRIGHT_GOLDEN_YELLOW, BRIGHT_GREEN, BRIGHT_PINK,
12068            BRIGHT_TURQUOISE, BRILLIANT_ROSE, BRONZE, BROWN, BROWN_RAT_GREY, BROWNER, BRUSHWOOD_DYED, BUFF,
12069            BURGUNDY, BURNT_BAMBOO, BURNT_ORANGE, BURNT_SIENNA, BURNT_UMBER, CAMO_GREEN, CAPE_JASMINE,
12070            CAPUT_MORTUUM, CARDINAL, CARMINE, CARNATION_PINK, CAROLINA_BLUE, CARROT_ORANGE, CATTAIL, CELADON,
12071            CELADON_DYE, CERISE, CERULEAN, CERULEAN_BLUE, CHARTREUSE, CHARTREUSE_GREEN, CHERRY_BLOSSOM,
12072            CHERRY_BLOSSOM_DYE, CHERRY_BLOSSOM_MOUSE, CHESTNUT, CHESTNUT_LEATHER_BROWN, CHESTNUT_PLUM,
12073            CHINESE_TEA_BROWN, CHINESE_TEA_YELLOW, CHOCOLATE, CINNABAR, CINNAMON, CLOVE_BROWN, CLOVE_DYED,
12074            COARSE_WOOL, COBALT, COCHINEAL_RED, COLUMBIA_BLUE, COPPER, COPPER_ROSE, CORAL, CORAL_DYE, CORAL_RED,
12075            CORN, CORN_DYE, CORNFLOWER_BLUE, COSMIC_LATTE, CREAM, CRIMSON, CYAN, CYPRESS_BARK, CYPRESS_BARK_RED,
12076            DARK_BLUE, DARK_BLUE_DYE, DARK_BLUE_LAPIS_LAZULI, DARK_BROWN, DARK_CERULEAN, DARK_CHESTNUT, DARK_CORAL,
12077            DARK_GOLDENROD, DARK_GRAY, DARK_GREEN, DARK_INDIGO, DARK_KHAKI, DARK_PASTEL_GREEN, DARK_PINK,
12078            DARK_SCARLET, DARK_RED, DARK_RED_DYE, DARK_SALMON, DARK_SLATE_GRAY, DARK_SPRING_GREEN, DARK_TAN,
12079            DARK_TURQUOISE, DARK_VIOLET, DAWN, DAYLILY, DEAD_MANS_FINGERS_SEAWEED, DECAYING_LEAVES, DEEP_CERISE,
12080            DEEP_CHESTNUT, DEEP_FUCHSIA, DEEP_LILAC, DEEP_MAGENTA, DEEP_PEACH, DEEP_PINK, DEEP_PURPLE, DEEP_SCARLET,
12081            DENIM, DISAPPEARING_PURPLE, DISTANT_RIVER_BROWN, DODGER_BLUE, DOVE_FEATHER_GREY, DRIED_WEATHERED_BAMBOO,
12082            DULL_BLUE, EARTHEN_YELLOW, EARTHEN_YELLOW_RED_BROWN, ECRU, EDO_BROWN, EGG_DYE, EGGSHELL_PAPER,
12083            EGYPTIAN_BLUE, ELECTRIC_BLUE, ELECTRIC_GREEN, ELECTRIC_INDIGO, ELECTRIC_LIME, ELECTRIC_PURPLE, EMERALD,
12084            EGGPLANT, FADED_CHINESE_TEA_BROWN, FADED_SEN_NO_RIKYUS_TEA, FAKE_PURPLE, FALU_RED, FERN_GREEN,
12085            FINCH_BROWN, FIREBRICK, FLATTERY_BROWN, FLAX, FLIRTATIOUS_INDIGO_TEA, FLORAL_LEAF, FOREIGN_CRIMSON,
12086            FOREST_GREEN, FOX, FRAGILE_SEAWEED_BROWN, FRENCH_ROSE, FRESH_ONION, FUCHSIA_PINK, GAMBOGE, GAMBOGE_DYE,
12087            GLAZED_PERSIMMON, GOLD, GOLDEN, GOLDEN_BROWN, GOLDEN_BROWN_DYE, GOLDEN_FALLEN_LEAVES, GOLDEN_OAK,
12088            GOLDEN_YELLOW, GOLDENROD, GORYEO_STOREROOM, GRAPE_MOUSE, GRAY, GRAY_ASPARAGUS, GREEN, GREENFINCH,
12089            GREEN_BAMBOO, GREEN_TEA_DYE, GREEN_YELLOW, GREYISH_DARK_GREEN, HALF_PURPLE, HAN_PURPLE, HARBOR_RAT,
12090            HELIOTROPE, HOLLYWOOD_CERISE, HORSETAIL, HOT_MAGENTA, HOT_PINK, IBIS, IBIS_WING, INDIGO, INDIGO_DYE,
12091            INDIGO_INK_BROWN, INDIGO_WHITE, INK, INSECT_SCREEN, INSIDE_OF_A_BOTTLE, INTERNATIONAL_KLEIN_BLUE,
12092            INTERNATIONAL_ORANGE, IRIS, IRON, IRONHEAD_FLOWER, IRON_STORAGE, ISLAMIC_GREEN, IVORY, IWAI_BROWN,
12093            JADE, JAPANESE_INDIGO, JAPANESE_IRIS, JAPANESE_PALE_BLUE, JAPANESE_TRIANDRA_GRASS, KELLY_GREEN, KHAKI,
12094            KIMONO_STORAGE, LAPIS_LAZULI, LAVENDER_FLORAL, LAVENDER, LAVENDER_BLUE, LAVENDER_BLUSH, LAVENDER_GRAY,
12095            LAVENDER_MAGENTA, LAVENDER_PINK, LAVENDER_PURPLE, LAVENDER_ROSE, LAWN_GREEN, LEGAL_DYE, LEMON,
12096            LEMON_CHIFFON, LIGHT_BLUE, LIGHT_BLUE_DYE, LIGHT_BLUE_FLOWER, LIGHT_BLUE_SILK, LIGHT_GRAY, LIGHT_KHAKI,
12097            LIGHT_LIME, LIGHT_MAROON, LIGHT_PINK, LIGHT_VIOLET, LIGHT_YELLOW_DYE, LILAC, LIME, LIME_GREEN, LINEN,
12098            LONG_SPRING, LOQUAT_BROWN, LYE, MAGENTA_DYE, MAGIC_MINT, MAGNOLIA, MALACHITE, MAROON, MAGENTA,
12099            MAYA_BLUE, MAUVE, MAUVE_TAUPE, MEAT, MEDIUM_BLUE, MEDIUM_CARMINE, MEDIUM_CRIMSON,
12100            MEDIUM_LAVENDER_MAGENTA, MEDIUM_PURPLE, MEDIUM_SPRING_GREEN, MIDORI, MIDNIGHT_BLUE, MINT_GREEN,
12101            MISTY_ROSE, MOSS, MOSS_GREEN, MOUNTBATTEN_PINK, MOUSY_INDIGO, MOUSY_WISTERIA, MULBERRY, MULBERRY_DYED,
12102            MUSTARD, MYRTLE, NAVAJO_WHITE, NAVY_BLUE, NAVY_BLUE_BELLFLOWER, NAVY_BLUE_DYE, NEW_BRIDGE, NIGHTINGALE,
12103            NIGHTINGALE_BROWN, OCEAN_BLUE, OCHRE, OLD_BAMBOO, OLD_GOLD, OLD_LACE, OLD_LAVENDER, OLD_ROSE, OLIVE,
12104            OLIVE_DRAB, OLIVINE, ONANDO, ONE_KIN_DYE, OPPOSITE_FLOWER, ORANGE, ORANGE_PEEL, ORANGE_RED, ORANGUTAN,
12105            ORCHID, OVERDYED_RED_BROWN, PALE_BLUE, PALE_BROWN, PALE_CARMINE, PALE_CHESTNUT, PALE_CORNFLOWER_BLUE,
12106            PALE_CRIMSON, PALE_FALLEN_LEAVES, PALE_GREEN_ONION, PALE_INCENSE, PALE_MAGENTA, PALE_OAK, PALE_PERSIMMON,
12107            PALE_PINK, PALE_RED_VIOLET, PALE_YOUNG_GREEN_ONION, PAPAYA_WHIP, PASTEL_GREEN, PASTEL_PINK, PATINA,
12108            PATRINIA_FLOWER, PEACH, PEACH_DYE, PEACH_ORANGE, PEACH_YELLOW, PEAR, PERIWINKLE, PERSIAN_BLUE,
12109            PERSIAN_GREEN, PERSIAN_INDIGO, PERSIAN_RED, PERSIAN_PINK, PERSIAN_ROSE, PERSIMMON, PERSIMMON_JUICE,
12110            PIGMENT_BLUE, PINE_GREEN, PINE_NEEDLE, PINK, PINK_ORANGE, PLAIN_MOUSE, PLATINUM, PLUM,
12111            PLUM_BLOSSOM_MOUSE, PLUM_DYED, PLUM_PURPLE, POLISHED_BROWN, POWDER_BLUE, PRUSSIAN_BLUE,
12112            PSYCHEDELIC_PURPLE, PUCE, PUMPKIN, PURE_CRIMSON, PURPLE, PURPLE_DYE, PURPLE_KITE, PURPLE_TAUPE,
12113            RABBIT_EAR_IRIS, RAPEBLOSSOM_BROWN, RAPESEED_OIL, RAW_UMBER, RAZZMATAZZ, RED, RED_BEAN, RED_BIRCH,
12114            RED_INCENSE, RED_DYE_TURMERIC, RED_KITE, RED_OCHRE, RED_PIGMENT, RED_PLUM, RED_VIOLET, RED_WISTERIA,
12115            RICH_CARMINE, RICH_GARDENIA, RINSED_OUT_RED, RIKAN_BROWN, ROBIN_EGG_BLUE, ROSE, ROSE_MADDER, ROSE_TAUPE,
12116            ROYAL_BLUE, ROYAL_PURPLE, RUBY, RUSSET, RUST, RUSTED_LIGHT_BLUE, RUSTY_CELADON, RUSTY_STORAGE,
12117            RUSTY_STOREROOM, SAFETY_ORANGE, SAFFLOWER, SAFFRON, SALMON, SANDY_BROWN, SANGRIA, SAPPHIRE, SAPPANWOOD,
12118            SAPPANWOOD_INCENSE, SAWTOOTH_OAK, SCARLET, SCHOOL_BUS_YELLOW, SCORCHED_BROWN, SEA_GREEN, SEASHELL,
12119            SELECTIVE_YELLOW, SEN_NO_RIKYUS_TEA, SEPIA, SHAMROCK_GREEN, SHOCKING_PINK, SHRIMP_BROWN,
12120            SILK_CREPE_BROWN, SILVER, SILVER_GREY, SILVERED_RED, SIMMERED_SEAWEED, SISKIN_SPROUT_YELLOW, SKY,
12121            SKY_BLUE, SLATE_GRAY, SMALT, SOOTY_BAMBOO, SOOTY_WILLOW_BAMBOO, SPARROW_BROWN, SPRING_BUD,
12122            SPRING_GREEN, STAINED_RED, STEAMED_CHESTNUT, STEEL_BLUE, STOREROOM_BROWN, STYLISH_PERSIMMON, SUMAC,
12123            SUMAC_DYED, TAN, TANGERINE, TANGERINE_YELLOW, TATARIAN_ASTER, TAUPE, TAWNY, TEA_GARDEN_CONTEMPLATION,
12124            TEA_GREEN, TEA_ORANGE, TEA_ROSE, TEAL, TERRA_COTTA, THIN_VIOLET, THISTLE, THOUSAND_HERB,
12125            THOUSAND_YEAR_OLD_BROWN, THOUSAND_YEAR_OLD_GREEN, THRICE_DYED_CRIMSON, TOMATO, TREE_PEONY, TRUE_PINK,
12126            TRUE_RED, TURMERIC, TURQUOISE, TYRIAN_PURPLE, ULTRAMARINE, ULTRAMARINE_DYE, UNBLEACHED_SILK,
12127            UNDRIED_WALL, VANISHING_RED_MOUSE, VEGAS_GOLD, VELVET, VERMILION, VINE_GRAPE, VIOLET, VIOLET_DYE,
12128            VIRIDIAN, WALNUT, WASHED_OUT_CRIMSON, WASHED_OUT_PERSIMMON, WATER, WATER_PERSIMMON, WHEAT, WHITE,
12129            WHITE_MOUSE, WHITE_OAK, WHITE_TEA_DYE, WHITISH_GREEN, WILLOW_DYE, WILLOW_GREY, WILLOW_TEA,
12130            WILTED_LAWN_CLIPPINGS, WILLOW_LEAVES_UNDERSIDE, WISTERIA, WISTERIA_DYE, WISTERIA_PURPLE, YELLOW,
12131            YELLOW_GREEN, YELLOW_SEA_PINE_BROWN, YOUNG_BAMBOO, ZINNWALDITE, DB_MIDNIGHT, DB_DARK_LEATHER,
12132            DB_DEEP_OCEAN, DB_LEAD, DB_EARTH, DB_FOREST, DB_LOBSTER, DB_DRAB, DB_CADET_BLUE, DB_TAWNY_BROWN,
12133            DB_IRON, DB_PEA_SOUP, DB_PUTTY, DB_TURQUOISE, DB_MUSTARD, DB_EGGSHELL, DB_BLACK, DB_INK,
12134            DB_SEAL_BROWN, DB_CHESTNUT, DB_CAPPUCCINO, DB_PUMPKIN, DB_FAWN, DB_NUDE, DB_DAFFODIL, DB_KEY_LIME,
12135            DB_SHAMROCK, DB_JUNGLE, DB_OLIVE, DB_MUD, DB_SHADOW, DB_COBALT, DB_CERULEAN, DB_DENIM, DB_SKY_BLUE,
12136            DB_SEAFOAM, DB_PLATINUM, DB_WHITE, DB_STORM_CLOUD, DB_ELEPHANT, DB_GRAPHITE, DB_SOOT, DB_EGGPLANT,
12137            DB_BLOOD, DB_CORAL, DB_LAVENDER, DB_ARMY_GREEN, DB_COMPOST,
12138            CW_RED, CW_FADED_RED, CW_FLUSH_RED, CW_LIGHT_RED, CW_PALE_RED, CW_BRIGHT_RED, CW_DARK_RED, CW_DRAB_RED, CW_RICH_RED,
12139            CW_ORANGE, CW_FADED_ORANGE, CW_FLUSH_ORANGE, CW_LIGHT_ORANGE, CW_PALE_ORANGE, CW_BRIGHT_ORANGE, CW_DARK_ORANGE, CW_DRAB_ORANGE, CW_RICH_ORANGE,
12140            CW_BROWN, CW_FADED_BROWN, CW_FLUSH_BROWN, CW_LIGHT_BROWN, CW_PALE_BROWN, CW_BRIGHT_BROWN, CW_DARK_BROWN, CW_DRAB_BROWN, CW_RICH_BROWN,
12141            CW_APRICOT, CW_FADED_APRICOT, CW_FLUSH_APRICOT, CW_LIGHT_APRICOT, CW_PALE_APRICOT, CW_BRIGHT_APRICOT, CW_DARK_APRICOT, CW_DRAB_APRICOT, CW_RICH_APRICOT,
12142            CW_GOLD, CW_FADED_GOLD, CW_FLUSH_GOLD, CW_LIGHT_GOLD, CW_PALE_GOLD, CW_BRIGHT_GOLD, CW_DARK_GOLD, CW_DRAB_GOLD, CW_RICH_GOLD,
12143            CW_YELLOW, CW_FADED_YELLOW, CW_FLUSH_YELLOW, CW_LIGHT_YELLOW, CW_PALE_YELLOW, CW_BRIGHT_YELLOW, CW_DARK_YELLOW, CW_DRAB_YELLOW, CW_RICH_YELLOW,
12144            CW_CHARTREUSE, CW_FADED_CHARTREUSE, CW_FLUSH_CHARTREUSE, CW_LIGHT_CHARTREUSE, CW_PALE_CHARTREUSE, CW_BRIGHT_CHARTREUSE, CW_DARK_CHARTREUSE, CW_DRAB_CHARTREUSE, CW_RICH_CHARTREUSE,
12145            CW_LIME, CW_FADED_LIME, CW_FLUSH_LIME, CW_LIGHT_LIME, CW_PALE_LIME, CW_BRIGHT_LIME, CW_DARK_LIME, CW_DRAB_LIME, CW_RICH_LIME,
12146            CW_HONEYDEW, CW_FADED_HONEYDEW, CW_FLUSH_HONEYDEW, CW_LIGHT_HONEYDEW, CW_PALE_HONEYDEW, CW_BRIGHT_HONEYDEW, CW_DARK_HONEYDEW, CW_DRAB_HONEYDEW, CW_RICH_HONEYDEW,
12147            CW_GREEN, CW_FADED_GREEN, CW_FLUSH_GREEN, CW_LIGHT_GREEN, CW_PALE_GREEN, CW_BRIGHT_GREEN, CW_DARK_GREEN, CW_DRAB_GREEN, CW_RICH_GREEN,
12148            CW_JADE, CW_FADED_JADE, CW_FLUSH_JADE, CW_LIGHT_JADE, CW_PALE_JADE, CW_BRIGHT_JADE, CW_DARK_JADE, CW_DRAB_JADE, CW_RICH_JADE,
12149            CW_SEAFOAM, CW_FADED_SEAFOAM, CW_FLUSH_SEAFOAM, CW_LIGHT_SEAFOAM, CW_PALE_SEAFOAM, CW_BRIGHT_SEAFOAM, CW_DARK_SEAFOAM, CW_DRAB_SEAFOAM, CW_RICH_SEAFOAM,
12150            CW_CYAN, CW_FADED_CYAN, CW_FLUSH_CYAN, CW_LIGHT_CYAN, CW_PALE_CYAN, CW_BRIGHT_CYAN, CW_DARK_CYAN, CW_DRAB_CYAN, CW_RICH_CYAN,
12151            CW_AZURE, CW_FADED_AZURE, CW_FLUSH_AZURE, CW_LIGHT_AZURE, CW_PALE_AZURE, CW_BRIGHT_AZURE, CW_DARK_AZURE, CW_DRAB_AZURE, CW_RICH_AZURE,
12152            CW_BLUE, CW_FADED_BLUE, CW_FLUSH_BLUE, CW_LIGHT_BLUE, CW_PALE_BLUE, CW_BRIGHT_BLUE, CW_DARK_BLUE, CW_DRAB_BLUE, CW_RICH_BLUE,
12153            CW_SAPPHIRE, CW_FADED_SAPPHIRE, CW_FLUSH_SAPPHIRE, CW_LIGHT_SAPPHIRE, CW_PALE_SAPPHIRE, CW_BRIGHT_SAPPHIRE, CW_DARK_SAPPHIRE, CW_DRAB_SAPPHIRE, CW_RICH_SAPPHIRE,
12154            CW_INDIGO, CW_FADED_INDIGO, CW_FLUSH_INDIGO, CW_LIGHT_INDIGO, CW_PALE_INDIGO, CW_BRIGHT_INDIGO, CW_DARK_INDIGO, CW_DRAB_INDIGO, CW_RICH_INDIGO,
12155            CW_VIOLET, CW_FADED_VIOLET, CW_FLUSH_VIOLET, CW_LIGHT_VIOLET, CW_PALE_VIOLET, CW_BRIGHT_VIOLET, CW_DARK_VIOLET, CW_DRAB_VIOLET, CW_RICH_VIOLET,
12156            CW_PURPLE, CW_FADED_PURPLE, CW_FLUSH_PURPLE, CW_LIGHT_PURPLE, CW_PALE_PURPLE, CW_BRIGHT_PURPLE, CW_DARK_PURPLE, CW_DRAB_PURPLE, CW_RICH_PURPLE,
12157            CW_MAGENTA, CW_FADED_MAGENTA, CW_FLUSH_MAGENTA, CW_LIGHT_MAGENTA, CW_PALE_MAGENTA, CW_BRIGHT_MAGENTA, CW_DARK_MAGENTA, CW_DRAB_MAGENTA, CW_RICH_MAGENTA,
12158            CW_ROSE, CW_FADED_ROSE, CW_FLUSH_ROSE, CW_LIGHT_ROSE, CW_PALE_ROSE, CW_BRIGHT_ROSE, CW_DARK_ROSE, CW_DRAB_ROSE, CW_RICH_ROSE,
12159            CW_BLACK, CW_ALMOST_BLACK, CW_GRAY_BLACK, CW_DARK_GRAY, CW_GRAY, CW_LIGHT_GRAY, CW_GRAY_WHITE, CW_ALMOST_WHITE, CW_WHITE,
12160            AURORA_PITCH_BLACK, AURORA_COAL_BLACK, AURORA_SHADOW, AURORA_GRAPHITE, AURORA_SMOKE, AURORA_LEAD, AURORA_IRON,
12161            AURORA_ELEPHANT, AURORA_CHINCHILLA, AURORA_GREYHOUND, AURORA_SILVER, AURORA_FOG, AURORA_PLATINUM, AURORA_CLOUD, AURORA_SHINING_WHITE,
12162            AURORA_SEAWATER, AURORA_HOSPITAL_GREEN, AURORA_CYAN, AURORA_BUBBLE, AURORA_PERIWINKLE, AURORA_ULTRAMARINE, AURORA_FADED_BLUE, AURORA_OCEAN_BLUE,
12163            AURORA_STYGIAN_BLUE, AURORA_DEEP_PURPLE, AURORA_TYRIAN_PURPLE, AURORA_MAGENTA, AURORA_BUBBLEGUM_PINK, AURORA_PORK_CHOP, AURORA_RAW_MEAT, AURORA_FRESH_BLOOD,
12164            AURORA_PUTTY, AURORA_SIENNA, AURORA_SEAL_BROWN, AURORA_MUMMY_BROWN, AURORA_FAWN, AURORA_ORANGE, AURORA_PEACH, AURORA_CREAM,
12165            AURORA_LEMON, AURORA_EARWAX, AURORA_UMBER, AURORA_IVY_GREEN, AURORA_JADE, AURORA_SHAMROCK_GREEN, AURORA_CELADON, AURORA_PUCE,
12166            AURORA_BEIGE, AURORA_WET_STONE, AURORA_SLOW_CREEK, AURORA_SLATE_GRAY, AURORA_LIGHT_SKIN_1, AURORA_LIGHT_SKIN_2, AURORA_LIGHT_SKIN_3, AURORA_LIGHT_SKIN_4,
12167            AURORA_LIGHT_SKIN_5, AURORA_LIGHT_SKIN_6, AURORA_LIGHT_SKIN_7, AURORA_LIGHT_SKIN_8, AURORA_LIGHT_SKIN_9, AURORA_DARK_SKIN_1, AURORA_DARK_SKIN_2, AURORA_DARK_SKIN_3,
12168            AURORA_PINK_SKIN_1, AURORA_PINK_SKIN_2, AURORA_PINK_SKIN_3, AURORA_PINK_SKIN_4, AURORA_BRONZE_SKIN_4, AURORA_BRONZE_SKIN_3, AURORA_BRONZE_SKIN_2, AURORA_BRONZE_SKIN_1,
12169            AURORA_TAUPE, AURORA_DRAB_GREEN, AURORA_LIZARD_SCALES, AURORA_CRICKET, AURORA_OLIVE_OIL, AURORA_DUN, AURORA_CORN_SILK, AURORA_TAN,
12170            AURORA_STRAW, AURORA_HONEYDEW, AURORA_TARNISH, AURORA_PEA_SOUP, AURORA_MARSH, AURORA_ASPARAGUS, AURORA_PEAT_BOG, AURORA_DEEP_JUNGLE,
12171            AURORA_PINE_GREEN, AURORA_OLIVE_GREEN, AURORA_GRAY_GREEN, AURORA_MAIDENHAIR_FERN, AURORA_KELLY_GREEN, AURORA_DUSTY_GREEN, AURORA_GARTER_SNAKE, AURORA_SILVER_GREEN,
12172            AURORA_PISTACHIO, AURORA_ANGEL_WING, AURORA_SAGE_GREEN, AURORA_DRIED_SAGE, AURORA_ARTICHOKE, AURORA_VIRIDIAN, AURORA_FLORAL_FOAM, AURORA_HUNTER_GREEN,
12173            AURORA_DARK_TEAL, AURORA_KYANITE, AURORA_SPEARMINT, AURORA_AMAZONITE, AURORA_PASTEL_SKY, AURORA_AQUAMARINE, AURORA_DUST_BUNNY, AURORA_PATINA,
12174            AURORA_CHIPPED_GRANITE, AURORA_BLUE_SMOKE, AURORA_AIR_FORCE_BLUE, AURORA_COLD_IRON, AURORA_DREARY_BLUE, AURORA_MURK, AURORA_NINJA, AURORA_WATERCOLOR_BLACK,
12175            AURORA_IOLITE, AURORA_BOYSENBERRY, AURORA_WATERCOLOR_GRAY, AURORA_BLUE_STEEL, AURORA_TWILIGHT_CLOUD, AURORA_SMOG, AURORA_TROPIC_MIST, AURORA_FEATHER_DOWN,
12176            AURORA_MILD_VIOLET, AURORA_VIOLET_CUSHIONS, AURORA_DULL_VIOLET, AURORA_ROYAL_VIOLET, AURORA_EMINENCE, AURORA_PRUNE, AURORA_DUSTY_GRAPE, AURORA_PINK_VIOLET,
12177            AURORA_RIPE_PLUM, AURORA_MAUVE, AURORA_HAM, AURORA_COTTON_CANDY, AURORA_SILVER_PINK, AURORA_TEA_ROSE, AURORA_OLD_ROSE, AURORA_DUSTY_PINK,
12178            AURORA_ROSEATE_SPOONBILL, AURORA_THULIAN_PINK, AURORA_BROWN_VELVET, AURORA_NIGHTSHADE, AURORA_SCRIBE_INK, AURORA_VARNISH, AURORA_CEDAR_WOOD, AURORA_HOT_SAUCE,
12179            AURORA_LURID_RED, AURORA_BRICK, AURORA_FUSION_RED, AURORA_EMBERS, AURORA_SALMON, AURORA_TAXICAB_YELLOW, AURORA_APRICOT, AURORA_BURNT_YELLOW,
12180            AURORA_DRY_PEPPER, AURORA_REDWOOD, AURORA_KOA, AURORA_OCHRE, AURORA_DULL_GREEN, AURORA_ARMY_GREEN, AURORA_DRIFTWOOD, AURORA_DRY_BRUSH,
12181            AURORA_MUSH, AURORA_BANANA_PUDDING, AURORA_SAFFRON, AURORA_PENCIL_YELLOW, AURORA_CHARTREUSE, AURORA_ABSINTHE, AURORA_INFECTION, AURORA_FROG_GREEN,
12182            AURORA_AVOCADO, AURORA_WOODLANDS, AURORA_DARK_PINE, AURORA_MOSS_GREEN, AURORA_FERN_GREEN, AURORA_FOREST_GLEN, AURORA_MALACHITE, AURORA_APPLE_GREEN,
12183            AURORA_CELERY, AURORA_MINT_GREEN, AURORA_EMERALD, AURORA_PRASE, AURORA_EUCALYPTUS, AURORA_ZUCCHINI, AURORA_SOFT_TEAL, AURORA_MEDIUM_TEAL,
12184            AURORA_SPRING_GREEN, AURORA_TURQUOISE, AURORA_SEAFOAM, AURORA_VARISCITE, AURORA_REFRESHING_MIST, AURORA_SHINING_SKY, AURORA_STEAM, AURORA_ROBIN_EGG_BLUE,
12185            AURORA_DENIM_BLUE, AURORA_DEEP_TEAL, AURORA_NAVY_BLUE, AURORA_BLUEBERRY, AURORA_PRUSSIAN_BLUE, AURORA_DESERT_RAIN, AURORA_ELECTRIC_BLUE, AURORA_HIDDEN_BLUE,
12186            AURORA_DULL_AZURE, AURORA_RIPPED_DENIM, AURORA_CALM_SKY, AURORA_VAPOR, AURORA_POWDER_BLUE, AURORA_SUDS, AURORA_STRONG_CYAN, AURORA_SHARP_AZURE,
12187            AURORA_BLUE_EYE, AURORA_SUBTLETY, AURORA_ROUGH_SAPPHIRE, AURORA_IRIS, AURORA_CORNFLOWER_BLUE, AURORA_POLISHED_SAPPHIRE, AURORA_ROYAL_BLUE, AURORA_INDIGO,
12188            AURORA_SPACE_BLUE, AURORA_THICK_AMETHYST, AURORA_JUICY_GRAPE, AURORA_BLACKLIGHT_GLOW, AURORA_PURPLE_FREESIA, AURORA_THIN_AMETHYST, AURORA_ORCHID, AURORA_LAVENDER,
12189            AURORA_LILAC, AURORA_SOAP, AURORA_PINK_TUTU, AURORA_THISTLE, AURORA_HELIOTROPE, AURORA_LIGHT_PLUM, AURORA_WISTERIA, AURORA_MEDIUM_PLUM,
12190            AURORA_VIOLET, AURORA_GRAPE_LOLLIPOP, AURORA_MULBERRY, AURORA_GRAPE_SODA, AURORA_EGGPLANT, AURORA_CHERRY_SYRUP, AURORA_PLUM_JUICE, AURORA_FRUIT_PUNCH,
12191            AURORA_BUBBLE_GUM, AURORA_PINK_LEMONADE, AURORA_SHRIMP, AURORA_FLAMINGO, AURORA_LIPSTICK, AURORA_CARMINE, AURORA_BOLOGNA, AURORA_RASPBERRY,
12192    };
12193    /**
12194     * This array is loaded with all of the colors defined in SColor, in
12195     * arbitrary order.
12196     *
12197     * @deprecated Prefer FULL_PALETTE to this misspelled name; they are equivalent.
12198     */
12199    @Deprecated
12200    public static final SColor[] FULL_PALLET = FULL_PALETTE;
12201
12202    /**
12203     * Indexes into this palette can be used as a placeholder for modules that do not have access to SColor.
12204     * <br>
12205     * This palette has colors at these elements:
12206     * <ul>
12207     * <li>0: Black, also used for backgrounds if not specified</li>
12208     * <li>1: Off-white, used as the default foreground at times</li>
12209     * <li>2: Dark gray for walls</li>
12210     * <li>3: Silver gray for floors</li>
12211     * <li>4: Rust brown for doors</li>
12212     * <li>5: Gray-blue for water</li>
12213     * <li>6: Bright orange for traps</li>
12214     * <li>7: White</li>
12215     * <li>8: Light gray</li>
12216     * <li>9: Dark gray</li>
12217     * <li>10: Light red</li>
12218     * <li>11: Medium red</li>
12219     * <li>12: Dark red</li>
12220     * <li>13: Light orange</li>
12221     * <li>14: Medium orange</li>
12222     * <li>15: Dark orange</li>
12223     * <li>16: Light yellow</li>
12224     * <li>17: Medium yellow</li>
12225     * <li>18: Dark yellow</li>
12226     * <li>19: Light green</li>
12227     * <li>20: Medium green</li>
12228     * <li>21: Dark green</li>
12229     * <li>22: Light blue-green</li>
12230     * <li>23: Medium blue-green</li>
12231     * <li>24: Dark blue-green</li>
12232     * <li>25: Light blue</li>
12233     * <li>26: Medium blue</li>
12234     * <li>27: Dark blue</li>
12235     * <li>28: Light purple</li>
12236     * <li>29: Medium purple</li>
12237     * <li>30: Dark purple</li>
12238     * <li>31: Light pink</li>
12239     * <li>32: Medium pink</li>
12240     * <li>33: Dark pink</li>
12241     * <li>34: Light gray-brown</li>
12242     * <li>35: Medium gray-brown</li>
12243     * <li>36: Dark gray-brown</li>
12244     * <li>37: Light brown</li>
12245     * <li>38: Medium brown</li>
12246     * <li>39: Dark brown</li>
12247     * </ul>
12248     */
12249    public static final SColor[] LIMITED_PALETTE = {
12250            // 0             1      2                        3      4            5                     6
12251            PURE_DARK_GRAY, CREAM, DOVE_FEATHER_GREY, SILVER_GREY, RUST, PALE_CORNFLOWER_BLUE, INTERNATIONAL_ORANGE,
12252            // 7     8             9
12253            WHITE, LIGHT_GRAY, DARK_GRAY,
12254            // 10           11   12
12255            RED_INCENSE, RED, COCHINEAL_RED,
12256            // 13            14              15
12257            PEACH_ORANGE, ORANGE_PEEL, TANGERINE,
12258            // 16              17     18
12259            LEMON_CHIFFON, CORN, GOLDEN_YELLOW,
12260            // 19          20          21
12261            MINT_GREEN, LIME_GREEN, GREEN_BAMBOO,
12262            // 22     23        24
12263            CYAN, CW_DARK_AZURE, MIDORI,
12264            // 25              26            27
12265            COLUMBIA_BLUE, ROYAL_BLUE, PERSIAN_BLUE,
12266            // 28              29            30
12267            LAVENDER_BLUE, DARK_VIOLET, INDIGO,
12268            // 31              32             33
12269            CARNATION_PINK, HOT_MAGENTA, LIGHT_MAROON,
12270            // 34  35         36
12271            TAN, DARK_TAN, PALE_BROWN,
12272            // 37                  38               39
12273            STEAMED_CHESTNUT, DARK_CHESTNUT, SAPPANWOOD_INCENSE
12274    };
12275
12276    /**
12277     * A constructor with no passed values. Builds a white (opaque all channels)
12278     * object, with a name that's just the hex value of the color as RGBA.
12279     */
12280    public SColor() { //builds white
12281        this(Color.WHITE);
12282    }
12283
12284    /**
12285     * Creates a new color that's the same value as the passed in color.
12286     * Simply sets the name of this SColor to {@link Color#toString()}.
12287     *
12288     * @param color an existing libGDX Color to copy
12289     */
12290    public SColor(Color color) {
12291        super(color);
12292        this.calculatedFloat =  NumberTools.intBitsToFloat(((int)(255 * a) << 24 & 0xfe000000) | ((int)(255 * b) << 16) | ((int)(255 * g) << 8) | ((int)(255 * r)));
12293        name = super.toString();
12294    }
12295
12296    /**
12297     * Creates a new color that's the same value as the passed in color and
12298     * given the provided name.
12299     *
12300     * @param color an existing libGDX Color to copy and give a name to as an SColor 
12301     * @param name the name of the color, which will be registered in {@link Colors}
12302     */
12303    public SColor(Color color, String name) {
12304        super(color);
12305        this.name = name;
12306        this.calculatedFloat =  NumberTools.intBitsToFloat(((int)(255 * a) << 24 & 0xfe000000) | ((int)(255 * b) << 16) | ((int)(255 * g) << 8) | ((int)(255 * r)));
12307        Colors.put(name, this);
12308    }
12309
12310    /**
12311     * Creates a new color that has the given combined RGB value.
12312     * Alpha will be fully opaque.
12313     * 
12314     * @param colorValue an RGB int value; does not include alpha (it will be opaque)
12315     */
12316    public SColor(int colorValue) {
12317        super((colorValue << 8) | 255);
12318        this.calculatedFloat =  NumberTools.intBitsToFloat(((int)(255 * a) << 24 & 0xfe000000) | ((int)(255 * b) << 16) | ((int)(255 * g) << 8) | ((int)(255 * r)));
12319        name = super.toString();
12320    }
12321
12322    /**
12323     * Creates a new color that has the given combined RGB value and the
12324     * provided name. Alpha will be fully opaque.
12325     *
12326     * @param colorValue an RGB int value; does not include alpha
12327     * @param name the name of the color, which will be registered in {@link Colors}
12328     */
12329    public SColor(int colorValue, String name) {
12330        super((colorValue << 8) | 255);
12331        this.name = name;
12332        this.calculatedFloat =  NumberTools.intBitsToFloat(((int)(255 * a) << 24 & 0xfe000000) | ((int)(255 * b) << 16) | ((int)(255 * g) << 8) | ((int)(255 * r)));
12333        Colors.put(name, this);
12334        Colors.put(name + " (light)", new SColor(this).lerp(Color.WHITE, 0.125f));
12335        Colors.put(name + " (lighter)", new SColor(this).lerp(Color.WHITE, 0.25f));
12336        Colors.put(name + " (lightest)", new SColor(this).lerp(Color.WHITE, 0.375f));
12337        Colors.put(name + " (dark)", new SColor(this).lerp(Color.BLACK, 0.125f));
12338        Colors.put(name + " (darker)", new SColor(this).lerp(Color.BLACK, 0.25f));
12339        Colors.put(name + " (darkest)", new SColor(this).lerp(Color.BLACK, 0.375f));
12340    }
12341
12342    /**
12343     * Creates a new color that has the given RGB values from 0 to 255 (inclusive).
12344     * Alpha will be fully opaque.
12345     *
12346     * @param r red from 0 to 255, both inclusive
12347     * @param g green from 0 to 255, both inclusive
12348     * @param b blue from 0 to 255, both inclusive
12349     */
12350    public SColor(int r, int g, int b) {
12351        super(r * 0.003921569f, g * 0.003921569f, b * 0.003921569f, 1.0f);
12352        this.calculatedFloat =  NumberTools.intBitsToFloat(0xfe000000 | (b << 16) | (g << 8) | r);
12353        name = super.toString();
12354    }
12355
12356    /**
12357     * Creates a new color that has the given RGBA values.
12358     *
12359     * @param r red from 0 to 255, both inclusive
12360     * @param g green from 0 to 255, both inclusive
12361     * @param b blue from 0 to 255, both inclusive
12362     * @param a alpha from 0 to 255, both inclusive
12363     */
12364    public SColor(int r, int g, int b, int a) {
12365        super(r * 0.003921569f, g * 0.003921569f, b * 0.003921569f, a * 0.003921569f);
12366        this.calculatedFloat =  NumberTools.intBitsToFloat((a << 24 & 0xfe000000) | (b << 16) | (g << 8) | r);
12367        name = super.toString();
12368    }
12369
12370    /**
12371     * Creates a new color that has the given RGB values from 0 to 255 (inclusive) and the provided name.
12372     * Alpha will be fully opaque.
12373     *
12374     * @param r red from 0 to 255, both inclusive
12375     * @param g green from 0 to 255, both inclusive
12376     * @param b blue from 0 to 255, both inclusive
12377     * @param name the name of the color, which will be registered in {@link Colors}
12378     */
12379    public SColor(int r, int g, int b, String name) {
12380        super(r * 0.003921569f, g * 0.003921569f, b * 0.003921569f, 1.0f);
12381        this.name = name;
12382        this.calculatedFloat =  NumberTools.intBitsToFloat(0xfe000000 | (b << 16) | (g << 8) | r);
12383        Colors.put(name, this);
12384    }
12385
12386    /**
12387     * Creates a new color that has the given RGBA values from 0 to 255 (inclusive) and the provided name.
12388     *
12389     * @param r red from 0 to 255, both inclusive
12390     * @param g green from 0 to 255, both inclusive
12391     * @param b blue from 0 to 255, both inclusive
12392     * @param a alpha from 0 to 255, both inclusive
12393     * @param name the name of the color, which will be registered in {@link Colors}
12394     */
12395    public SColor(int r, int g, int b, int a, String name) {
12396        super(r * 0.003921569f, g * 0.003921569f, b * 0.003921569f, a * 0.003921569f);
12397        this.name = name;
12398        this.calculatedFloat =  NumberTools.intBitsToFloat((a << 24 & 0xfe000000) | (b << 16) | (g << 8) | r);
12399        Colors.put(name, this);
12400    }
12401
12402    /**
12403     * Packs the color components into a 32-bit integer with the format ABGR and then converts it to a float.
12404     * Implemented using typed arrays on GWT, which may differ from {@link Color#toFloatBits()} internally but
12405     * should produce identical results. Alpha only keeps the most-significant 7 of 8 bits. You can also
12406     * look at the JavaDocs for almost all predefined SColor values to see what the packed float value is.
12407     * This currently uses a precalculated float instead of recalculating every time, which adds some overhead to
12408     * functions that change an SColor, but these are generally used infrequently, while the conversion from a
12409     * color to its corresponding float is done very often inside libGDX.
12410     * 
12411     * @return the packed color as a 32-bit float
12412     */
12413    @Override
12414    public float toFloatBits() {
12415        return calculatedFloat;
12416    }
12417
12418    /**
12419     * Clamps this Color's components to a valid range [0 - 1] and re-calculates the packed float value of this color.
12420     *
12421     * @return this Color for chaining
12422     */
12423    @Override
12424    public Color clamp() { 
12425        super.clamp();
12426        this.calculatedFloat = NumberTools.intBitsToFloat(((int)(255 * a) << 24 & 0xfe000000) | ((int)(255 * b) << 16) | ((int)(255 * g) << 8) | ((int)(255 * r)));
12427        return this;
12428    }
12429
12430    /**
12431     * Modifies the color parameter {@code changing} so its value is the one encoded in {@code value}. This
12432     * just delegates to {@link #argb8888ToColor(Color, int)} and returns {@code changing} after edits.
12433     *
12434     * @param changing a Color object that will be modified to have the given value
12435     * @param value    a value as a float that can be obtained by {@link Color#toFloatBits()}
12436     * @return the Color changing, after modification
12437     */
12438    public static Color colorFromFloat(Color changing, float value) {
12439        abgr8888ToColor(changing, value);
12440        return changing;
12441    }
12442
12443    /**
12444     * Produces a new Color that is identical to the one encoded in {@code encoded}. There are various methods in this
12445     * class that return or deal with encoded colors, such as {@link #lerpFloatColors(float, float, float)}, and for
12446     * libGDX Color objects (including SColors) you can use {@link Color#toFloatBits()} to get the float from a Color.
12447     * This method is able to do the reverse of that conversion, and produces a new Color instead of what the overload
12448     * {@link #colorFromFloat(Color, float)} does, which modifies an existing Color. You may want to prefer that
12449     * overload if you have a temporary Color available and can modify it to pass to some method before modifying it
12450     * again later.
12451     *
12452     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12453     * @return the Color that can be represented by encoded
12454     */
12455    public static Color colorFromFloat(final float encoded) {
12456        int c = NumberTools.floatToIntBits(encoded);
12457        return new Color(((c & 0x000000ff)) * 0.003921569f, ((c & 0x0000ff00) >>> 8) * 0.003921569f,
12458                ((c & 0x00ff0000) >>> 16) * 0.003921569f, ((c & 0xfe000000) >>> 24) * 0.003937008f);
12459    }
12460
12461    /**
12462     * Gets the red channel value of the given encoded color, as an int ranging from 0 to 255, inclusive.
12463     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12464     * @return an int from 0 to 255, inclusive, representing the red channel value of the given encoded color
12465     */
12466    public static int redOfFloat(final float encoded)
12467    {
12468        return NumberTools.floatToIntBits(encoded) & 0x000000ff;
12469    }
12470
12471    /**
12472     * Gets the green channel value of the given encoded color, as an int ranging from 0 to 255, inclusive.
12473     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12474     * @return an int from 0 to 255, inclusive, representing the green channel value of the given encoded color
12475     */
12476    public static int greenOfFloat(final float encoded)
12477    {
12478        return (NumberTools.floatToIntBits(encoded) & 0x0000ff00) >>> 8;
12479    }
12480
12481    /**
12482     * Gets the blue channel value of the given encoded color, as an int ranging from 0 to 255, inclusive.
12483     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12484     * @return an int from 0 to 255, inclusive, representing the blue channel value of the given encoded color
12485     */
12486    public static int blueOfFloat(final float encoded)
12487    {
12488        return (NumberTools.floatToIntBits(encoded) & 0x00ff0000) >>> 16;
12489    }
12490
12491    /**
12492     * Gets the alpha channel value of the given encoded color, as an even int ranging from 0 to 254, inclusive. Because
12493     * of how alpha is stored in libGDX, no odd-number values are possible for alpha.
12494     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12495     * @return an even int from 0 to 254, inclusive, representing the alpha channel value of the given encoded color
12496     */
12497    public static int alphaOfFloat(final float encoded)
12498    {
12499        return (NumberTools.floatToIntBits(encoded) & 0xfe000000) >>> 24;
12500    }
12501
12502    /**
12503     * Gets the red channel value of the given encoded color, as a float from 0.0f to 1.0f, inclusive.
12504     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12505     * @return a float from 0.0f to 1.0f, inclusive, representing the red channel value of the given encoded color
12506     */
12507    public static float redOfFloatF(final float encoded)
12508    {
12509        return (NumberTools.floatToIntBits(encoded) & 0x000000ff) * 0.003921569f;
12510    }
12511
12512    /**
12513     * Gets the green channel value of the given encoded color, as a float from 0.0f to 1.0f, inclusive.
12514     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12515     * @return a float from 0.0f to 1.0f, inclusive, representing the green channel value of the given encoded color
12516     */
12517    public static float greenOfFloatF(final float encoded)
12518    {
12519        return ((NumberTools.floatToIntBits(encoded) & 0x0000ff00) >>> 8) * 0.003921569f;
12520    }
12521
12522    /**
12523     * Gets the blue channel value of the given encoded color, as a float from 0.0f to 1.0f, inclusive.
12524     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12525     * @return a float from 0.0f to 1.0f, inclusive, representing the blue channel value of the given encoded color
12526     */
12527    public static float blueOfFloatF(final float encoded)
12528    {
12529        return ((NumberTools.floatToIntBits(encoded) & 0x00ff0000) >>> 16) * 0.003921569f;
12530    }
12531
12532    /**
12533     * Gets the alpha channel value of the given encoded color, as a float from 0.0f to 1.0f, inclusive.
12534     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12535     * @return a float from 0.0f to 1.0f, inclusive, representing the alpha channel value of the given encoded color
12536     */
12537    public static float alphaOfFloatF(final float encoded)
12538    {
12539        return ((NumberTools.floatToIntBits(encoded) & 0xfe000000) >>> 24) * 0.003937008f;
12540    }
12541    /**
12542     * Gets the saturation of the given encoded color, as a float ranging from 0.0f to 1.0f, inclusive.
12543     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12544     * @return the saturation of the color from 0.0 (a grayscale color; inclusive) to 1.0 (a
12545     * bright color, exclusive)
12546     */
12547    public static float saturationOfFloat(final float encoded) {
12548        final int e = NumberTools.floatToIntBits(encoded),
12549                r = (e & 255), g = (e >>> 8 & 255),
12550                b = (e >>> 16 & 255);//, a = (e >>> 24 & 254) / 254f;
12551        final float min = Math.min(Math.min(r, g), b) * 0.003921569f;   //Min. value of RGB
12552        final float max = Math.max(Math.max(r, g), b) * 0.003921569f;    //Max. value of RGB
12553        final float delta = max - min;                     //Delta RGB value
12554
12555        if ( delta < 0.0001f )                     //This is a gray, no chroma...
12556        {
12557            return 0f;
12558        }
12559        else                                    //Chromatic data...
12560        {
12561            return delta / max;
12562        }
12563    }
12564
12565    /**
12566     * Gets the saturation of this color, as a float ranging from 0.0f to 1.0f, inclusive.
12567     * @return the saturation of the color from 0.0 (a grayscale color; inclusive) to 1.0 (a
12568     * bright color, exclusive)
12569     */
12570    public float saturation() {
12571        return saturation(this);
12572    }
12573
12574    /**
12575     * Gets the saturation of the given Color, as a float ranging from 0.0f to 1.0f, inclusive.
12576     * @return the saturation of the color from 0.0 (a grayscale color; inclusive) to 1.0 (a
12577     * bright color, exclusive)
12578     */
12579    public static float saturation(final Color color) {
12580        final float r = color.r;
12581        final float g = color.g;
12582        final float b = color.b;
12583        final float min = Math.min(Math.min(r, g ), b);   //Min. value of RGB
12584        final float max = Math.max(Math.max(r, g), b);    //Max. value of RGB
12585        final float delta = max - min;                     //Delta RGB value
12586
12587        if ( delta < 0.0001f )                     //This is a gray, no chroma...
12588        {
12589            return 0f;
12590        }
12591        else                                    //Chromatic data...
12592        {
12593            return delta / max;
12594        }
12595    }
12596
12597    /**
12598     * Gets the value (like lightness or brightness) of the given encoded color as a float ranging from 0f to 1f, inclusive.
12599     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12600     * @return the value (essentially lightness) of the color from 0.0f (black, inclusive) to
12601     * 1.0f (very bright, inclusive).
12602     */
12603    public static float valueOfFloat(final float encoded)
12604    {
12605        final int e = NumberTools.floatToIntBits(encoded);
12606        final int r = (e & 255), g = (e >>> 8 & 255),
12607                b = (e >>> 16 & 255);//, a = (e >>> 24 & 254) / 254f;
12608        return Math.max(Math.max(r, g), b) * 0.003921569f;
12609    }
12610
12611    /**
12612     * Gets the value (like lightness or brightness) of this color as a float ranging from 0f to 1f, inclusive.
12613     * @return the value (essentially lightness) of the color from 0.0f (black, inclusive) to
12614     * 1.0f (very bright, inclusive, including white but also other colors).
12615     */
12616    public float value()
12617    {
12618        return value(this);
12619    }
12620
12621    /**
12622     * Gets the value (like lightness or brightness) of the given Color as a float ranging from 0f to 1f, inclusive.
12623     * @return the value (essentially lightness) of the color from 0.0f (black, inclusive) to
12624     * 1.0f (very bright, inclusive, including white but also other colors).
12625     */
12626    public static float value(final Color color)
12627    {
12628        return Math.max(Math.max(color.r, color.g), color.b);
12629    }
12630
12631    /**
12632     * Gets the hue of the given encoded color, as a float from 0f (inclusive, red and approaching orange if increased)
12633     * to 1f (exclusive, red and approaching purple if decreased).
12634     * @param encoded a color as a packed float that can be obtained by {@link Color#toFloatBits()}
12635     * @return The hue of the color from 0.0 (red, inclusive) towards orange, then yellow, and
12636     * eventually to purple before looping back to almost the same red (1.0, exclusive)
12637     */
12638    public static float hueOfFloat(final float encoded) {
12639        final int e = NumberTools.floatToIntBits(encoded);
12640        final float r = (e & 255) * 0.003921569f, g = (e >>> 8 & 255) * 0.003921569f,
12641                b = (e >>> 16 & 255) * 0.003921569f;//, a = (e >>> 24 & 254) / 254f;
12642        final float min = Math.min(Math.min(r, g), b);   //Min. value of RGB
12643        final float max = Math.max(Math.max(r, g), b);   //Max value of RGB
12644        final float delta = max - min;                           //Delta RGB value
12645
12646        if ( delta < 0.0001f )                     //This is a gray, no chroma...
12647        {
12648            return 0f;
12649        }
12650        else                                    //Chromatic data...
12651        {
12652            final float rDelta = (((max - r) / 6f) + (delta * 0.5f)) / delta;
12653            final float gDelta = (((max - g) / 6f) + (delta * 0.5f)) / delta;
12654            final float bDelta = (((max - b) / 6f) + (delta * 0.5f)) / delta;
12655
12656            if      (r == max) return (1f + bDelta - gDelta) % 1f;
12657            else if (g == max) return (1f + (1f / 3f) + rDelta - bDelta) % 1f;
12658            else               return (1f + (2f / 3f) + gDelta - rDelta) % 1f;
12659        }
12660    }
12661
12662
12663    /**
12664     * Gets the hue of this color, as a float from 0f (inclusive, red and approaching orange if increased)
12665     * to 1f (exclusive, red and approaching purple if decreased).
12666     * @return The hue of the color from 0.0 (red, inclusive) towards orange, then yellow, and
12667     * eventually to purple before looping back to almost the same red (1.0, exclusive)
12668     */
12669    public float hue() {
12670        return hue(this);
12671    }
12672
12673    /**
12674     * Gets the hue of the given Color, as a float from 0f (inclusive, red and approaching orange if increased)
12675     * to 1f (exclusive, red and approaching purple if decreased).
12676     * @return The hue of the color from 0.0 (red, inclusive) towards orange, then yellow, and
12677     * eventually to purple before looping back to almost the same red (1.0, exclusive)
12678     */
12679    public static float hue(final Color color) {
12680        final float r = color.r;
12681        final float g = color.g;
12682        final float b = color.b;
12683        final float min = Math.min(Math.min(r, g), b);   //Min. value of RGB
12684        final float max = Math.max(Math.max(r, g), b);   //Max value of RGB
12685        final float delta = max - min;                   //Delta RGB value
12686
12687        if ( delta < 0.0001f )                     //This is a gray, no chroma...
12688        {
12689            return 0f;
12690        }
12691        else                                    //Chromatic data...
12692        {
12693            final float rDelta = (((max - r) / 6f) + (delta * 0.5f)) / delta;
12694            final float gDelta = (((max - g) / 6f) + (delta * 0.5f)) / delta;
12695            final float bDelta = (((max - b) / 6f) + (delta * 0.5f)) / delta;
12696
12697            if      (r == max) return (1f + bDelta - gDelta) % 1f;
12698            else if (g == max) return (1f + (1f / 3f) + rDelta - bDelta) % 1f;
12699            else               return (1f + (2f / 3f) + gDelta - rDelta) % 1f;
12700        }
12701    }
12702
12703    /**
12704     * The "luma" of the given Color, which is like its lightness, in YCbCr format; ranges from 0.0f to 1.0f .
12705     * You can go back to an RGB color as a packed float with {@link #floatGetYCbCr(float, float, float, float)}.
12706     * YCbCr is useful for modifications to colors because you can get a grayscale version of a color by setting Cb and
12707     * Cr to 0, you can desaturate by multiplying Cb and Cr by a number between 0 and 1, you can oversaturate by
12708     * multiplying Cb and Cr by a number greater than 1, you can lighten or darken by increasing or decreasing luma, and
12709     * so on and so forth.
12710     * @param color a libGDX Color or SColor; will not be modified
12711     * @return the luma as a float from 0.0f to 1.0f
12712     */
12713    public static float luma(final Color color)
12714    {
12715        return (color.r * 0.299f) +
12716               (color.g * 0.587f) +
12717               (color.b * 0.114f);
12718    }
12719
12720    /**
12721     * The "luma" of the given packed float, which is like its lightness, in YCbCr format; ranges from 0.0f to 1.0f .
12722     * You can go back to an RGB color as a packed float with {@link #floatGetYCbCr(float, float, float, float)}.
12723     * YCbCr is useful for modifications to colors because you can get a grayscale version of a color by setting Cb and
12724     * Cr to 0, you can desaturate by multiplying Cb and Cr by a number between 0 and 1, you can oversaturate by
12725     * multiplying Cb and Cr by a number greater than 1, you can lighten or darken by increasing or decreasing luma, and
12726     * so on and so forth.
12727     * @param encoded a packed float
12728     * @return the luma as a float from 0.0f to 1.0f
12729     */
12730    public static float lumaOfFloat(final float encoded)
12731    {
12732        final int bits = NumberTools.floatToIntBits(encoded);
12733        return  (bits & 0x000000ff) * (0x1.010102p-8f  * 0.299f) +
12734                (bits & 0x0000ff00) * (0x1.010102p-16f * 0.587f) +
12735                (bits & 0x00ff0000) * (0x1.010102p-24f * 0.114f);
12736    }
12737
12738    /**
12739     * Given a packed float color {@code mainColor} and another color that it should be made to contrast with, gets a
12740     * packed float color with a contrasting luma in YCbCr space but the same Cb, Cr, and opacity (Cb and Cr are likely
12741     * to be clamped if the result gets close to white or black). This won't ever produce black or other very dark
12742     * colors, and also has a gap in the range it produces for luma values between 0.5 and 0.55. That allows most of the
12743     * colors this method produces to contrast well as a foreground when displayed on a background of
12744     * {@code contrastingColor}, or vice versa.
12745     * @param mainColor a packed float color, as produced by {@link #toFloatBits()}; this is the color that will be adjusted
12746     * @param contrastingColor a packed float color, as produced by {@link #toFloatBits()}; the adjusted mainColor will contrast with this
12747     * @return a different, contrasting packed float color
12748     */
12749    public static float contrastLuma(final float mainColor, final float contrastingColor)
12750    {
12751        final int bits = NumberTools.floatToIntBits(mainColor),
12752                contrastBits = NumberTools.floatToIntBits(contrastingColor),
12753                r = (bits & 0x000000ff), 
12754                g = (bits & 0x0000ff00),
12755                b = (bits & 0x00ff0000),
12756                ctr = (contrastBits & 0x000000ff),
12757                ctg = (contrastBits & 0x0000ff00),
12758                ctb = (contrastBits & 0x00ff0000),
12759                a = (bits >>> 24);
12760        final float cb = 
12761                        r * (0x1.010102p-8f  * -0.168736f) + 
12762                        g * (0x1.010102p-16f * -0.331264f) + 
12763                        b * (0x1.010102p-24f * 0.5f),
12764                cr = 
12765                        r * (0x1.010102p-8f  * 0.5f) + 
12766                        g * (0x1.010102p-16f * -0.418688f) + 
12767                        b * (0x1.010102p-24f * -0.081312f),
12768                ctcb = 
12769                        ctr * (0x1.010102p-8f  * -0.168736f) + 
12770                        ctg * (0x1.010102p-16f * -0.331264f) + 
12771                        ctb * (0x1.010102p-24f * 0.5f),
12772                ctcr = 
12773                        ctr * (0x1.010102p-8f  * 0.5f) + 
12774                        ctg * (0x1.010102p-16f * -0.418688f) + 
12775                        ctb * (0x1.010102p-24f * -0.081312f);
12776        if((cb - ctcb) * (cb - ctcb) + (cr - ctcr) * (cr - ctcr) >= 0.1875f)
12777            return mainColor;
12778        final float luma =
12779                r * (0x1.010102p-8f * 0.299f) +
12780                        g * (0x1.010102p-16f * 0.587f) +
12781                        b * (0x1.010102p-24f * 0.114f),
12782                contrastLuma = ctr * (0x1.010102p-8f * 0.299f) +
12783                        ctg * (0x1.010102p-16f * 0.587f) +
12784                        ctb * (0x1.010102p-24f * 0.114f);
12785        return floatGetYCbCr(contrastLuma < 0.5f ? luma * 0.45f + 0.55f : 0.5f - luma * 0.45f, cb, cr, 0x1.010102p-8f * a);
12786    }
12787
12788    /**
12789     * The "Chroma B," or Cb, of the given libGDX Color in YCbCr format; ranges from -0.5f to 0.5f .
12790     * This is related to Chroma R; when Chroma B is high and Chroma R is low, the color is more blue; when Chroma R is
12791     * high and Chroma B is low, the color is more red, when both are low it is more green, and when both are high it is
12792     * more purple. When Chroma R and Chroma B are both near 0.0f, the color is closer to gray. Because Chroma values
12793     * are centered on 0.0f, you can multiply them by a value like 0.5f to halve the colorfulness of the color.
12794     * You can go back to an RGB color as a packed float with {@link #floatGetYCbCr(float, float, float, float)}.
12795     * YCbCr is useful for modifications to colors because you can get a grayscale version of a color by setting Cb and
12796     * Cr to 0, you can desaturate by multiplying Cb and Cr by a number between 0 and 1, you can oversaturate by
12797     * multiplying Cb and Cr by a number greater than 1, you can lighten or darken by increasing or decreasing luma, and
12798     * so on and so forth.
12799     * @param color a libGDX Color or SColor
12800     * @return the Chroma B as a float from -0.5f to 0.5f
12801     */
12802    public static float chromaB(final Color color)
12803    {
12804        return (color.r * -0.168736f) +
12805                (color.g * -0.331264f) +
12806                (color.b * 0.5f);
12807    }
12808
12809    /**
12810     * The "Chroma R," or Cr, of the given libGDX Color in YCbCr format; ranges from -0.5f to 0.5f .
12811     * This is related to Chroma B; when Chroma B is high and Chroma R is low, the color is more blue; when Chroma R is
12812     * high and Chroma B is low, the color is more red, when both are low it is more green, and when both are high it is
12813     * more purple. When Chroma R and Chroma B are both near 0.0f, the color is closer to gray. Because Chroma values
12814     * are centered on 0.0f, you can multiply them by a value like 0.5f to halve the colorfulness of the color.
12815     * You can go back to an RGB color as a packed float with {@link #floatGetYCbCr(float, float, float, float)}.
12816     * YCbCr is useful for modifications to colors because you can get a grayscale version of a color by setting Cb and
12817     * Cr to 0, you can desaturate by multiplying Cb and Cr by a number between 0 and 1, you can oversaturate by
12818     * multiplying Cb and Cr by a number greater than 1, you can lighten or darken by increasing or decreasing luma, and
12819     * so on and so forth.
12820     * @param color a libGDX Color or SColor
12821     * @return the Chroma R as a float from -0.5f to 0.5f
12822     */
12823    public static float chromaR(final Color color)
12824    {
12825        return (color.r * 0.5f) +
12826                (color.g * -0.418688f) +
12827                (color.b * -0.081312f);
12828    }
12829
12830    /**
12831     * The "Chroma B," or Cb, of the given packed float in YCbCr format; ranges from -0.5f to 0.5f .
12832     * This is related to Chroma R; when Chroma B is high and Chroma R is low, the color is more blue; when Chroma R is
12833     * high and Chroma B is low, the color is more red, when both are low it is more green, and when both are high it is
12834     * more purple. When Chroma R and Chroma B are both near 0.0f, the color is closer to gray. Because Chroma values
12835     * are centered on 0.0f, you can multiply them by a value like 0.5f to halve the colorfulness of the color.
12836     * You can go back to an RGB color as a packed float with {@link #floatGetYCbCr(float, float, float, float)}.
12837     * YCbCr is useful for modifications to colors because you can get a grayscale version of a color by setting Cb and
12838     * Cr to 0, you can desaturate by multiplying Cb and Cr by a number between 0 and 1, you can oversaturate by
12839     * multiplying Cb and Cr by a number greater than 1, you can lighten or darken by increasing or decreasing luma, and
12840     * so on and so forth.
12841     * @param encoded a packed float
12842     * @return the Chroma B as a float from -0.5f to 0.5f
12843     */
12844    public static float chromaBOfFloat(final float encoded)
12845    {
12846        final int bits = NumberTools.floatToIntBits(encoded);
12847        return  (bits & 0x000000ff) * (0x1.010102p-8f  * -0.168736f) +
12848                (bits & 0x0000ff00) * (0x1.010102p-16f * -0.331264f) +
12849                (bits & 0x00ff0000) * (0x1.010102p-24f * 0.5f);
12850    }
12851    /**
12852     * The "Chroma R," or Cr, of the given packed float in YCbCr format; ranges from -0.5f to 0.5f .
12853     * This is related to Chroma B; when Chroma B is high and Chroma R is low, the color is more blue; when Chroma R is
12854     * high and Chroma B is low, the color is more red, when both are low it is more green, and when both are high it is
12855     * more purple. When Chroma R and Chroma B are both near 0.0f, the color is closer to gray. Because Chroma values
12856     * are centered on 0.0f, you can multiply them by a value like 0.5f to halve the colorfulness of the color.
12857     * You can go back to an RGB color as a packed float with {@link #floatGetYCbCr(float, float, float, float)}.
12858     * YCbCr is useful for modifications to colors because you can get a grayscale version of a color by setting Cb and
12859     * Cr to 0, you can desaturate by multiplying Cb and Cr by a number between 0 and 1, you can oversaturate by
12860     * multiplying Cb and Cr by a number greater than 1, you can lighten or darken by increasing or decreasing luma, and
12861     * so on and so forth.
12862     * @param encoded a packed float
12863     * @return the Chroma R as a float from -0.5f to 0.5f
12864     */
12865    public static float chromaROfFloat(final float encoded)
12866    {
12867        final int bits = NumberTools.floatToIntBits(encoded);
12868        return  (bits & 0x000000ff) * (0x1.010102p-8f  * 0.5f) +
12869                (bits & 0x0000ff00) * (0x1.010102p-16f * -0.418688f) +
12870                (bits & 0x00ff0000) * (0x1.010102p-24f * -0.081312f);
12871    }
12872
12873    /**
12874     * The "luminance" of the given packed float, which is like its lightness, in YCoCg format; ranges from 0.0f to
12875     * 1.0f . You can go back to an RGB color as a packed float with {@link #floatGetYCoCg(float, float, float, float)}.
12876     * YCoCg is useful for modifications to colors because you can get a grayscale version of a color by setting Co and
12877     * Cg to 0, you can desaturate by multiplying Co and Cg by a number between 0 and 1, you can oversaturate by
12878     * multiplying Co and Cg by a number greater than 1, you can lighten or darken by increasing or decreasing
12879     * luminance, and so on and so forth. YCoCg is also a little more efficient to process than YCbCr, which other
12880     * methods like {@link #floatGetYCbCr(float, float, float, float)} use. This might not be as perceptually accurate
12881     * at determining lightness as {@link #lumaOfFloat(float)}.
12882     * @param encoded a packed float
12883     * @return the luminance as a float from 0.0f to 1.0f
12884     */
12885    public static float luminanceYCoCg(final float encoded)
12886    {
12887        final int bits = NumberTools.floatToIntBits(encoded);
12888        return ((bits & 0x000000ff) + ((bits & 0x0000ff00) >>> 7) + ((bits & 0x00ff0000) >>> 16)) * 0x1.010102p-10f;
12889    }
12890    /**
12891     * The "luminance" of the given libGDX Color, which is like its lightness, in YCoCg format; ranges from 0.0f to
12892     * 1.0f . You can go back to an RGB color as a packed float with {@link #floatGetYCoCg(float, float, float, float)}.
12893     * YCoCg is useful for modifications to colors because you can get a grayscale version of a color by setting Co and
12894     * Cg to 0, you can desaturate by multiplying Co and Cg by a number between 0 and 1, you can oversaturate by
12895     * multiplying Co and Cg by a number greater than 1, you can lighten or darken by increasing or decreasing
12896     * luminance, and so on and so forth. YCoCg is also a little more efficient to process than YCbCr, which other
12897     * methods like {@link #floatGetYCbCr(float, float, float, float)} use. This might not be as perceptually accurate
12898     * at determining lightness as {@link #lumaOfFloat(float)}.
12899     * @param color a libGDX Color or SColor
12900     * @return the luminance as a float from 0.0f to 1.0f
12901     */
12902    public static float luminanceYCoCg(final Color color)
12903    {
12904        //This structure should receive dot-product optimizations on recent HotSpot JDKs.
12905        return (color.r * 0.25f) +
12906                (color.g * 0.5f) +
12907                (color.b * 0.25f);
12908    }
12909
12910    /**
12911     * The "luma" of the given packed float, which is like its lightness, in YCwCm format; ranges from 0.0f to
12912     * 1.0f . You can go back to an RGB color as a packed float with {@link #floatGetYCwCm(float, float, float, float)}.
12913     * YCwCm is useful for modifications to colors because you can get a grayscale version of a color by setting Cw and
12914     * Cm to 0, you can desaturate by multiplying Cw and Cm by a number between 0 and 1, you can oversaturate by
12915     * multiplying Cw and Cm by a number greater than 1, you can lighten or darken by increasing or decreasing luma, and
12916     * so on and so forth. Unlike YCoCg and YCbCr, there are aesthetic reasons to adjust just one of Cw or Cm for some
12917     * effect; multiplying Cw by a number greater than 1 will make warm colors warmer and cool colors cooler, for
12918     * instance. This might not be as perceptually accurate at determining lightness as {@link #lumaOfFloat(float)}.
12919     * @param encoded a packed float
12920     * @return the luma as a float from 0.0f to 1.0f
12921     */
12922    public static float lumaYCwCm(final float encoded)
12923    {
12924        final int bits = NumberTools.floatToIntBits(encoded);
12925        return (bits & 0xFF) * 0x3p-11f + (bits >>> 8 & 0xFF) * 0x1p-9f + (bits >>> 16 & 0xFF) * 0x1p-11f;
12926    }
12927
12928    /**
12929     * The "luma" of the given libGDX Color, which is like its lightness, in YCwCm format; ranges from 0.0f to
12930     * 1.0f . You can go back to an RGB color as a packed float with {@link #floatGetYCwCm(float, float, float, float)}.
12931     * YCwCm is useful for modifications to colors because you can get a grayscale version of a color by setting Cw and
12932     * Cm to 0, you can desaturate by multiplying Cw and Cm by a number between 0 and 1, you can oversaturate by
12933     * multiplying Cw and Cm by a number greater than 1, you can lighten or darken by increasing or decreasing luma, and
12934     * so on and so forth. Unlike YCoCg and YCbCr, there are aesthetic reasons to adjust just one of Cw or Cm for some
12935     * effect; multiplying Cw by a number greater than 1 will make warm colors warmer and cool colors cooler, for
12936     * instance. This might not be as perceptually accurate at determining lightness as {@link #lumaOfFloat(float)}.
12937     * @param color a libGDX Color or SColor
12938     * @return the luma as a float from 0.0f to 1.0f
12939     */
12940    public static float lumaYCwCm(final Color color)
12941    {
12942        return color.r * 0.375f + color.g * 0.5f + color.b * 0.125f;
12943    }
12944
12945    /**
12946     * The "chrominance orange" of the given libGDX Color, which when combined with chrominance green describes the
12947     * shade and saturation of a color, in YCoCg format; ranges from -0.5f to 0.5f . You can go back to an RGB color as
12948     * a packed float with {@link #floatGetYCoCg(float, float, float, float)}. YCoCg is useful for modifications to
12949     * colors because you can get a grayscale version of a color by setting Co and Cg to 0, you can desaturate by
12950     * multiplying Co and Cg by a number between 0 and 1, you can oversaturate by multiplying Co and Cg by a number
12951     * greater than 1, you can lighten or darken by increasing or decreasing luminance, and so on and so forth. YCoCg is
12952     * also a little more efficient to process than YCbCr, which other methods like
12953     * {@link #floatGetYCbCr(float, float, float, float)} use.
12954     * @param color a libGDX Color or SColor
12955     * @return the chrominance orange as a float from -0.5f to 0.5f
12956     */
12957    public static float chrominanceOrange(final Color color)
12958    {
12959        return (color.r * 0.5f) +
12960                //(color.g * -0.331264f) +
12961                (color.b * -0.5f);
12962    }
12963
12964    /**
12965     * The "chrominance green" of the given libGDX Color, which when combined with chrominance orange describes the
12966     * shade and saturation of a color, in YCoCg format; ranges from -0.5f to 0.5f . You can go back to an RGB color as
12967     * a packed float with {@link #floatGetYCoCg(float, float, float, float)}. YCoCg is useful for modifications to
12968     * colors because you can get a grayscale version of a color by setting Co and Cg to 0, you can desaturate by
12969     * multiplying Co and Cg by a number between 0 and 1, you can oversaturate by multiplying Co and Cg by a number
12970     * greater than 1, you can lighten or darken by increasing or decreasing luminance, and so on and so forth. YCoCg is
12971     * also a little more efficient to process than YCbCr, which other methods like
12972     * {@link #floatGetYCbCr(float, float, float, float)} use.
12973     * @param color a libGDX Color or SColor
12974     * @return the chrominance green as a float from -0.5f to 0.5f
12975     */
12976    public static float chrominanceGreen(final Color color)
12977    {
12978        //This structure should receive dot-product optimizations on recent HotSpot JDKs.
12979        return (color.r * -0.25f) +
12980                (color.g * 0.5f) +
12981                (color.b * -0.25f);
12982    }
12983
12984    /**
12985     * The "chrominance orange" of the given packed float, which when combined with chrominance green describes the
12986     * shade and saturation of a color, in YCoCg format; ranges from -0.5f to 0.5f . You can go back to an RGB color as
12987     * a packed float with {@link #floatGetYCoCg(float, float, float, float)}. YCoCg is useful for modifications to
12988     * colors because you can get a grayscale version of a color by setting Co and Cg to 0, you can desaturate by
12989     * multiplying Co and Cg by a number between 0 and 1, you can oversaturate by multiplying Co and Cg by a number
12990     * greater than 1, you can lighten or darken by increasing or decreasing luminance, and so on and so forth. YCoCg is
12991     * also a little more efficient to process than YCbCr, which other methods like
12992     * {@link #floatGetYCbCr(float, float, float, float)} use.
12993     * @param encoded a packed float
12994     * @return the chrominance orange as a float from -0.5f to 0.5f
12995     */
12996    public static float chrominanceOrange(final float encoded)
12997    {
12998        final int bits = NumberTools.floatToIntBits(encoded);
12999        return ((bits & 0x000000ff) - ((bits & 0x00ff0000) >>> 16)) * 0x1.010102p-9f;
13000    }
13001    /**
13002     * The "chrominance green" of the given packed float, which when combined with chrominance orange describes the
13003     * shade and saturation of a color, in YCoCg format; ranges from -0.5f to 0.5f . You can go back to an RGB color as
13004     * a packed float with {@link #floatGetYCoCg(float, float, float, float)}. YCoCg is useful for modifications to
13005     * colors because you can get a grayscale version of a color by setting Co and Cg to 0, you can desaturate by
13006     * multiplying Co and Cg by a number between 0 and 1, you can oversaturate by multiplying Co and Cg by a number
13007     * greater than 1, you can lighten or darken by increasing or decreasing luminance, and so on and so forth. YCoCg is
13008     * also a little more efficient to process than YCbCr, which other methods like
13009     * {@link #floatGetYCbCr(float, float, float, float)} use.
13010     * @param encoded a packed float
13011     * @return the chrominance green as a float from -0.5f to 0.5f
13012     */
13013    public static float chrominanceGreen(final float encoded)
13014    {
13015        final int bits = NumberTools.floatToIntBits(encoded);
13016        return (((bits & 0x0000ff00) >>> 7) - (bits & 0x000000ff) - ((bits & 0x00ff0000) >>> 16)) * 0x1.010102p-10f;
13017    }
13018    /**
13019     * The "chroma warm" of the given packed float, which when combined with chroma mild describes the shade and
13020     * saturation of a color, in YCwCm format; ranges from -1f to 1f . You can go back to an RGB color as
13021     * a packed float with {@link #floatGetYCwCm(float, float, float, float)}. YCwCm is useful for modifications to
13022     * colors because you can get a grayscale version of a color by setting Cw and Cm to 0, you can desaturate by
13023     * multiplying Cw and Cm by a number between 0 and 1, you can oversaturate by multiplying Cw and Cm by a number
13024     * greater than 1, you can lighten or darken by increasing or decreasing luma, and so on and so forth. Unlike
13025     * YCoCg and YCbCr, there are aesthetic reasons to adjust just one of Cw or Cm for some effect; multiplying Cw by
13026     * a number greater than 1 will make warm colors warmer and cool colors cooler, for instance.
13027     * @param encoded a packed float
13028     * @return the chroma warm as a float from -1f to 1f
13029     */
13030    public static float chromaWarm(final float encoded)
13031    {
13032        final int bits = NumberTools.floatToIntBits(encoded);
13033        return ((bits & 0xff) - (bits >>> 16 & 0xff)) * 0x1.010102p-8f;
13034    }
13035
13036    /**
13037     * The "chroma warm" of the given libGDX Color, which when combined with chroma mild describes the shade and
13038     * saturation of a color, in YCwCm format; ranges from -1f to 1f . You can go back to an RGB color as
13039     * a packed float with {@link #floatGetYCwCm(float, float, float, float)}. YCwCm is useful for modifications to
13040     * colors because you can get a grayscale version of a color by setting Cw and Cm to 0, you can desaturate by
13041     * multiplying Cw and Cm by a number between 0 and 1, you can oversaturate by multiplying Cw and Cm by a number
13042     * greater than 1, you can lighten or darken by increasing or decreasing luma, and so on and so forth. Unlike
13043     * YCoCg and YCbCr, there are aesthetic reasons to adjust just one of Cw or Cm for some effect; multiplying Cw by
13044     * a number greater than 1 will make warm colors warmer and cool colors cooler, for instance.
13045     * @param color a libGDX Color or SColor
13046     * @return the chroma warm as a float from -1f to 1f
13047     */
13048    public static float chromaWarm(final Color color)
13049    {
13050        return color.r - color.b;
13051    }
13052
13053    /**
13054     * The "chroma mild" of the given packed float, which when combined with chroma warm describes the shade and
13055     * saturation of a color, in YCwCm format; ranges from -1f to 1f . You can go back to an RGB color as
13056     * a packed float with {@link #floatGetYCwCm(float, float, float, float)}. YCwCm is useful for modifications to
13057     * colors because you can get a grayscale version of a color by setting Cw and Cm to 0, you can desaturate by
13058     * multiplying Cw and Cm by a number between 0 and 1, you can oversaturate by multiplying Cw and Cm by a number
13059     * greater than 1, you can lighten or darken by increasing or decreasing luma, and so on and so forth. Unlike
13060     * YCoCg and YCbCr, there are aesthetic reasons to adjust just one of Cw or Cm for some effect; multiplying Cw by
13061     * a number greater than 1 will make warm colors warmer and cool colors cooler, for instance.
13062     * @param encoded a packed float
13063     * @return the chroma mild as a float from -1f to 1f
13064     */
13065    public static float chromaMild(final float encoded)
13066    {
13067        final int bits = NumberTools.floatToIntBits(encoded);
13068        return ((bits >>> 8 & 0xff) - (bits >>> 16 & 0xff)) * 0x1.010102p-8f;
13069    }
13070    /**
13071     * The "chroma mild" of the given libGDX Color, which when combined with chroma warm describes the shade and
13072     * saturation of a color, in YCwCm format; ranges from -1f to 1f . You can go back to an RGB color as
13073     * a packed float with {@link #floatGetYCwCm(float, float, float, float)}. YCwCm is useful for modifications to
13074     * colors because you can get a grayscale version of a color by setting Cw and Cm to 0, you can desaturate by
13075     * multiplying Cw and Cm by a number between 0 and 1, you can oversaturate by multiplying Cw and Cm by a number
13076     * greater than 1, you can lighten or darken by increasing or decreasing luma, and so on and so forth. Unlike
13077     * YCoCg and YCbCr, there are aesthetic reasons to adjust just one of Cw or Cm for some effect; multiplying Cw by
13078     * a number greater than 1 will make warm colors warmer and cool colors cooler, for instance.
13079     * @param color a libGDX Color or SColor
13080     * @return the chroma warm as a float from -1f to 1f
13081     */
13082    public static float chromaMild(final Color color)
13083    {
13084        return color.g - color.b;
13085    }
13086
13087
13088    /**
13089     * A color distance metric between two colors as packed floats, without performing a square root on the result.
13090     * The returned int can be used directly, with a typical difference of 5 or greater meaning there is a perceptible
13091     * difference between the two colors, or you can get its square root to have a more typical metric where differences
13092     * can be compared to modifications of other differences. If you only care about whether a difference is above or
13093     * below some threshold (or which color is closest to another, not exactly how close they are), then you don't need
13094     * to get the square root. Does not consider the alpha of the compared colors.
13095     * <br>
13096     * Uses <a href="https://www.compuphase.com/cmetric.htm">this algorithm</a>.
13097     * @param color1 a color as a packed float
13098     * @param color2 a color as a packed float
13099     * @return the squared difference of the two colors, as an int; you can get the square root of this if you want to
13100     */
13101    public static int difference2(float color1, float color2)
13102    {
13103        int bits1 = NumberTools.floatToIntBits(color1), bits2 = NumberTools.floatToIntBits(color2);
13104        int rmean = ((bits1 & 0xFF) + (bits2 & 0xFF)) >> 1;
13105        int r = (bits1 & 0xFF) - (bits2 & 0xFF);
13106        int g = (bits1 >>> 8 & 0xFF) - (bits2 >>> 8 & 0xFF);
13107        int b = (bits1 >>> 16 & 0xFF) - (bits2 >>> 16 & 0xFF);
13108        return (((512+rmean)*r*r)>>8) + 4*g*g + (((767-rmean)*b*b)>>8);
13109    }
13110    /**
13111     * A color distance metric between two libGDX Colors (or SColors), without performing a square root on the result.
13112     * The returned int can be used directly, with a typical difference of 5 or greater meaning there is a perceptible
13113     * difference between the two colors, or you can get its square root to have a more typical metric where differences
13114     * can be compared to modifications of other differences. If you only care about whether a difference is above or
13115     * below some threshold (or which color is closest to another, not exactly how close they are), then you don't need
13116     * to get the square root. Does not consider the alpha of the compared colors.
13117     * <br>
13118     * Uses <a href="https://www.compuphase.com/cmetric.htm">this algorithm</a>.
13119     * @param color1 a libGDX Color
13120     * @param color2 a libGDX Color
13121     * @return the squared difference of the two colors, as an int; you can get the square root of this if you want to
13122     */
13123    public static int difference2(Color color1, Color color2)
13124    {
13125        int r1 = (int)(color1.r * 255), r2 = (int)(color2.r * 255);
13126        int rmean = (r1 + r2) >> 1;
13127        int r = r1 - r2;
13128        int g = (int)(color1.g * 255) - (int)(color2.g * 255);
13129        int b = (int)(color1.b * 255) - (int)(color2.b * 255);
13130        return (((512+rmean)*r*r)>>8) + 4*g*g + (((767-rmean)*b*b)>>8);
13131    }
13132    /**
13133     * A color distance metric between a packed float color and a libGDX Color (or SColor), without performing a square
13134     * root on the result. The returned int can be used directly, with a typical difference of 5 or greater meaning
13135     * there is a perceptible difference between the two colors, or you can get its square root to have a more typical
13136     * metric where differences can be compared to modifications of other differences. If you only care about whether a
13137     * difference is above or below some threshold (or which color is closest to another, not exactly how close they
13138     * are), then you don't need to get the square root. Does not consider the alpha of the compared colors.
13139     * <br>
13140     * Uses <a href="https://www.compuphase.com/cmetric.htm">this algorithm</a>. This method produces equivalent output
13141     * to {@link #difference2(float, float)} when color2 is converted to a float with {@link #toFloatBits()}; the output
13142     * is also equivalent to {@link #difference2(Color, Color)} when color1 is converted to a Color with
13143     * {@link Color#abgr8888ToColor(Color, float)} or {@link SColor#colorFromFloat(float)}. It can be useful when you
13144     * need to mix Color-based APIs such as {@link SquidColorCenter} with float-based ones such as the static methods
13145     * in this class.
13146     * @param color1 a packed float color
13147     * @param color2 a libGDX Color
13148     * @return the squared difference of the two colors, as an int; you can get the square root of this if you want to
13149     */
13150    public static int difference2(float color1, Color color2)
13151    {
13152        int bits1 = NumberTools.floatToIntBits(color1);
13153        int r1 = (bits1 & 0xFF), r2 = (int)(color2.r * 255);
13154        int rmean = (r1 + r2) >> 1;
13155        int r = r1 - r2;
13156        int g = (bits1 >>> 8 & 0xFF) - (int)(color2.g * 255);
13157        int b = (bits1 >>> 16 & 0xFF) - (int)(color2.b * 255);
13158        return (((512+rmean)*r*r)>>8) + 4*g*g + (((767-rmean)*b*b)>>8);
13159    }
13160
13161    public static float differenceYCbCr(final int color1, final int color2)
13162    {
13163        final int r1 = color1 >>> 24, r2 = color2 >>> 24,
13164                g1 = color1 >>> 16 & 255, g2 = color2 >>> 16 & 255,
13165                b1 = color1 >>> 8 & 255, b2 = color2 >>> 8 & 255;
13166        final float
13167                y1 = r1 * 0.299f + g1 * 0.587f + b1 * 0.114f,
13168                y2 = r2 * 0.299f + g2 * 0.587f + b2 * 0.114f,
13169                cr1 = r1 * 0.5f + g1 * -0.418688f + b1 * -0.081312f,
13170                cr2 = r2 * 0.5f + g2 * -0.418688f + b2 * -0.081312f,
13171                cb1 = r1 * -0.168736f + g1 * -0.331264f + b1 * 0.5f,
13172                cb2 = r2 * -0.168736f + g2 * -0.331264f + b2 * 0.5f,
13173                y = y2 - y1, cb = cb2 - cb1, cr = cr2 - cr1;
13174        return y * y + cb * cb + cr * cr;
13175    }
13176
13177    public static float differenceYCbCr(final int color1, int r2, int g2, int b2)
13178    {
13179        final int r1 = color1 >>> 24,
13180                g1 = color1 >>> 16 & 255,
13181                b1 = color1 >>> 8 & 255;
13182        final float
13183                y1 = r1 * 0.299f + g1 * 0.587f + b1 * 0.114f,
13184                y2 = r2 * 0.299f + g2 * 0.587f + b2 * 0.114f,
13185                cr1 = r1 * 0.5f + g1 * -0.418688f + b1 * -0.081312f,
13186                cr2 = r2 * 0.5f + g2 * -0.418688f + b2 * -0.081312f,
13187                cb1 = r1 * -0.168736f + g1 * -0.331264f + b1 * 0.5f,
13188                cb2 = r2 * -0.168736f + g2 * -0.331264f + b2 * 0.5f,
13189                y = y2 - y1, cb = cb2 - cb1, cr = cr2 - cr1;
13190        return y * y + cb * cb + cr * cr;
13191    }
13192
13193    public static float differenceYCbCr(final int r1, final int r2, final int g1, final int g2, final int b1, final int b2)
13194    {
13195        final float
13196                y1 = r1 * 0.299f + g1 * 0.587f + b1 * 0.114f,
13197                y2 = r2 * 0.299f + g2 * 0.587f + b2 * 0.114f,
13198                cr1 = r1 * 0.5f + g1 * -0.418688f + b1 * -0.081312f,
13199                cr2 = r2 * 0.5f + g2 * -0.418688f + b2 * -0.081312f,
13200                cb1 = r1 * -0.168736f + g1 * -0.331264f + b1 * 0.5f,
13201                cb2 = r2 * -0.168736f + g2 * -0.331264f + b2 * 0.5f,
13202                y = y2 - y1, cb = cb2 - cb1, cr = cr2 - cr1;
13203        return y * y + cb * cb + cr * cr;
13204    }
13205
13206
13207    /**
13208     * A constant that stores opaque white color as a packed float, for convenience when using the float-based APIs.
13209     */
13210    public static final float FLOAT_WHITE = -0x1.fffffep126f;
13211    /**
13212     * A constant that stores opaque black color as a packed float, for convenience when using the float-based APIs.
13213     */
13214    public static final float FLOAT_BLACK = -0x1.0p125f;
13215
13216    /**
13217     * Given a Color or SColor object and an alpha multiplier to affect that color (between 0f and 1f, inclusive and
13218     * clamped in that range), this makes a packed float color that has the same red, green, and blue channels but has
13219     * its own alpha multiplied by {@code alpha}, without constructing any objects along the way.
13220     *
13221     * @param color  a libGDX Color (or SColor); will not be modified
13222     * @param alpha  between 0.0 and 1.0 inclusive, the alpha to multiply the color's own alpha by
13223     * @return a color encoded as a packed float, using color's RGB channels but with its A channel times {@code alpha}
13224     */
13225    public static float multiplyAlpha(Color color, float alpha) {
13226        return NumberTools.intBitsToFloat(color.toIntBits() & 0xFFFFFF
13227                | (MathUtils.clamp((int) (color.a * 255f * alpha), 0, 255) << 24 & 0xFE000000));
13228    }
13229
13230    /**
13231     * Given a color stored as a packed float and an alpha multiplier to affect that color (between 0f and 1f, inclusive
13232     * and clamped in that range), this makes a packed float color that has the same red, green, and blue channels but
13233     * has its own alpha multiplied by {@code alpha}, without constructing any objects along the way.
13234     *
13235     * @param encodedColor a color encoded as a packed float, as by {@link Color#toFloatBits()}
13236     * @param alpha  between 0.0 and 1.0 inclusive, the alpha to multiply the color's own alpha by
13237     * @return a color encoded as a packed float, using color's RGB channels but with its A channel times {@code alpha}
13238     */
13239    public static float multiplyAlpha(float encodedColor, float alpha) {
13240        final int bits = NumberTools.floatToIntBits(encodedColor);
13241        return NumberTools.intBitsToFloat(bits & 0xFFFFFF
13242                | (MathUtils.clamp((int) ((bits >>> 24) * alpha), 0, 255) << 24 & 0xFE000000));
13243    }
13244
13245    /**
13246     * Given a Color or SColor object and a desired alpha to set for that color (between 0f and 1f, inclusive and
13247     * clamped in that range), this makes a packed float color that has the same red, green, and blue channels but has
13248     * been set to the given alpha, without constructing any objects along the way.
13249     *
13250     * @param color  a libGDX Color (or SColor); will not be modified
13251     * @param alpha  between 0.0 and 1.0 inclusive, the alpha to set into the returned packed color
13252     * @return a color encoded as a packed float, using color's RGB channels and the given alpha
13253     */
13254    public static float translucentColor(Color color, float alpha) {
13255        return NumberTools.intBitsToFloat(color.toIntBits() & 0xFFFFFF
13256                | (MathUtils.clamp((int) (255f * alpha), 0, 255) << 24 & 0xFE000000));
13257    }
13258
13259    /**
13260     * Given a color stored as a packed float, and a desired alpha to set for that color (between 0.0 and 1.0, inclusive
13261     * and clamped in that range), this makes a new float that has the same red, green, and blue channels but has been
13262     * set to the given alpha, without constructing any objects along the way.
13263     *
13264     * @param encodedColor a color encoded as a packed float, as by {@link Color#toFloatBits()}
13265     * @param alpha        between 0.0 and 1.0 inclusive, the alpha to set into the returned packed color
13266     * @return another color encoded as a packed float, using encodedColor's RGB channels and the given alpha
13267     */
13268    public static float translucentColor(float encodedColor, float alpha) {
13269        return NumberTools.intBitsToFloat(NumberTools.floatToIntBits(encodedColor) & 0xFFFFFF
13270                | (MathUtils.clamp((int) (255f * alpha), 0, 255) << 24 & 0xFE000000));
13271    }
13272
13273    private static final char[] digits = {
13274            '0', '1', '2', '3', '4', '5', '6', '7',
13275            '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
13276
13277    /**
13278     * Stores the value of color in the char[] {@code changing}, using RGBA8888 format with two hex digits per channel.
13279     * This means that changing must be at least length 8 (this doesn't check for efficiency reasons), and that the
13280     * first two chars represent the red channel from 0 to 255, then the next two are green, then blue. The alpha
13281     * channel is a special case because it represents alpha values between 0 and 254, and effectively rounds down to
13282     * the nearest even number if an odd number value was somehow given to it. For example, opaque white will be shown
13283     * as "FFFFFFFE", and pure red with 50% alpha will be shown as "FF00007E".
13284     * <br>
13285     * The value of {@code color} should be the same type used internally in libGDX and SquidLib, that is, an ABGR
13286     * packed float that could be passed directly to {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}.
13287     *
13288     * @param changing a char array that will be changed in place; must not be null and must have length of at least 8
13289     * @param color    a color
13290     * @return the char array parameter changing, after modifications to store an RGBA8888 color as hex
13291     */
13292    public static char[] floatToChars(final char[] changing, final float color) {
13293        final int i = NumberTools.floatToIntBits(color);
13294        changing[1] = digits[i & 15];
13295        changing[0] = digits[(i >>> 4) & 15];
13296        changing[3] = digits[(i >>> 8) & 15];
13297        changing[2] = digits[(i >>> 12) & 15];
13298        changing[5] = digits[(i >>> 16) & 15];
13299        changing[4] = digits[(i >>> 20) & 15];
13300        changing[7] = digits[(i >>> 24) & 14]; // mask is 14 due to libGDX avoiding floats that can be NaN
13301        changing[6] = digits[i >>> 28];
13302        return changing;
13303    }
13304
13305    /**
13306     * Meant for usage with {@link #floatToChars(char[], float)}, this will take 8 chars from {@code data} starting at
13307     * {@code offset}, read them as as an RGBA8888 32-bit integer in hexadecimal format, and return that integer in
13308     * RGBA8888 format. Some parts of libGDX use and expect RGBA8888 order, such as most constructors for Color and
13309     * {@link Color#set(int)}, while others use ABGR8888 (often with packed floats), like
13310     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, which is the fastest and least wasteful way to set
13311     * the current color used by a Batch for tinting.
13312     *
13313     * @param data   a char array that must not be null; the first 8 chars after offset should be an RGBA8888 hex integer
13314     * @param offset where to start reading from in data; there must be at least 8 items between offset and data.length
13315     * @return an int in RGBA8888 format
13316     */
13317    public static int charsToRGBA(final char[] data, final int offset) {
13318        return StringKit.intFromHex(data, offset, Math.min(data.length, offset + 8));
13319    }
13320
13321    /**
13322     * Meant for usage with {@link #floatToChars(char[], float)}, this will take 8 chars from {@code data}, read them as
13323     * as an RGBA8888 32-bit integer in hexadecimal format, and return that integer in RGBA8888 format. Some parts of
13324     * libGDX use and expect RGBA8888 order, such as most constructors for Color and {@link Color#set(int)}, while
13325     * others use ABGR8888 (often with packed floats), like {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)},
13326     * which is the fastest and least wasteful way to set the current color used by a Batch for tinting.
13327     *
13328     * @param data   a char array that must not be null; the first 8 chars should be an RGBA8888 hex integer
13329     * @return an int in RGBA8888 format
13330     */
13331    public static int charsToRGBA(final char[] data) {
13332        return StringKit.intFromHex(data, 0, Math.min(data.length, 8));
13333    }
13334
13335    /**
13336     * Meant for usage with {@link #floatToChars(char[], float)}, this will take 8 chars from {@code data} starting at
13337     * {@code offset}, read them as as an RGBA8888 32-bit integer in hexadecimal format, and use that integer to
13338     * construct an int in ABGR8888 format. Some parts of libGDX use and expect RGBA8888 order, such as most
13339     * constructors for Color and {@link Color#set(int)}, while others use ABGR8888 (often with packed floats), like
13340     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, which is the fastest and least wasteful way to set
13341     * the current color used by a Batch for tinting.
13342     *
13343     * @param data   a char array that must not be null; the first 8 chars after offset should be an RGBA8888 hex integer
13344     * @param offset where to start reading from in data; there must be at least 8 items between offset and data.length
13345     * @return an int in ABGR8888 format
13346     */
13347    public static int charsToABGR(final char[] data, final int offset) {
13348        return Integer.reverseBytes(StringKit.intFromHex(data, offset, Math.min(data.length, offset + 8)));
13349    }
13350
13351    /**
13352     * Meant for usage with {@link #floatToChars(char[], float)}, this will take 8 chars from {@code data}, read them as
13353     * as an RGBA8888 32-bit integer in hexadecimal format, and use that integer to construct an int in ABGR8888 format.
13354     * Some parts of libGDX use and expect RGBA8888 order, such as most constructors for Color and
13355     * {@link Color#set(int)}, while others use ABGR8888 (often with packed floats), like
13356     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, which is the fastest and least wasteful way to set
13357     * the current color used by a Batch for tinting.
13358     *
13359     * @param data a char array that must not be null; the first 8 chars should be an RGBA8888 hex integer
13360     * @return an int in ABGR8888 format
13361     */
13362    public static int charsToABGR(final char[] data) {
13363        return Integer.reverseBytes(StringKit.intFromHex(data, 0, 8));
13364    }
13365
13366    /**
13367     * Meant for usage with {@link #floatToChars(char[], float)}, this will take 8 chars from {@code data}, read them as
13368     * as an RGBA8888 32-bit integer in hexadecimal format, and use that integer to construct a packed float in ABGR8888
13369     * format. Some parts of libGDX use and expect RGBA8888 order, such as most constructors for Color and
13370     * {@link Color#set(int)}, while others use ABGR8888 (often with packed floats), like
13371     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, which is the fastest and least wasteful way to set
13372     * the current color used by a Batch for tinting.
13373     *
13374     * @param data a char array that must not be null; the first 8 chars should be an RGBA8888 hex integer
13375     * @return a float in packed ABGR8888 format
13376     */
13377    public static float charsToFloat(final char[] data) {
13378        return NumberTools.intBitsToFloat(0xFEFFFFFF &
13379                Integer.reverseBytes(StringKit.intFromHex(data, 0, 8)));
13380    }
13381
13382    /**
13383     * Meant for usage with {@link #floatToChars(char[], float)}, this will take 8 chars from {@code data} starting at
13384     * {@code offset}, read them as as an RGBA8888 32-bit integer in hexadecimal format, and use that integer to
13385     * construct a packed float in ABGR8888 format. Some parts of libGDX use and expect RGBA8888 order, such as most
13386     * constructors for Color and {@link Color#set(int)}, while others use ABGR8888 (often with packed floats), like
13387     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, which is the fastest and least wasteful way to set
13388     * the current color used by a Batch for tinting.
13389     *
13390     * @param data a char array that must not be null + offset; the first 8 chars after offset should be an RGBA8888 hex integer
13391     * @param offset where to start reading from in data; there must be at least 8 items between offset and data.length
13392     * @return a float in packed ABGR8888 format
13393     */
13394    public static float charsToFloat(final char[] data, final int offset) {
13395        return NumberTools.intBitsToFloat(0xFEFFFFFF &
13396                Integer.reverseBytes(StringKit.intFromHex(data, offset, Math.min(data.length, offset + 8))));
13397    }
13398
13399    /**
13400     * Meant for usage with {@link #floatToChars(char[], float)}, this will take 8 chars from {@code data}, read them as
13401     * as an RGBA8888 32-bit integer in hexadecimal format, and use that integer to construct a packed float in ABGR8888
13402     * format. Some parts of libGDX use and expect RGBA8888 order, such as most constructors for Color and
13403     * {@link Color#set(int)}, while others use ABGR8888 (often with packed floats), like
13404     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, which is the fastest and least wasteful way to set
13405     * the current color used by a Batch for tinting.
13406     *
13407     * @param data a CharSequence that must not be null; the first 8 chars after offset should be an RGBA8888 hex integer
13408     * @param offset where to start reading from in data; there must be at least 8 items between offset and data.length()
13409     * @return a float in packed ABGR8888 format
13410     */
13411
13412    public static float charsToFloat(final CharSequence data, final int offset) {
13413        return NumberTools.intBitsToFloat(0xFEFFFFFF &
13414                Integer.reverseBytes(StringKit.intFromHex(data, offset, Math.min(data.length(), offset + 8))));
13415    }
13416
13417    /**
13418     * Gets a packed float representation of a color given as 4 RGBA float components. LibGDX expects ABGR format
13419     * in some places, but not all, and it can be confusing to track when it wants RGBA, ABGR, or ARGB. Generally,
13420     * packed floats like what this returns are ABGR format, the kind that can be passed directly to
13421     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)} without constructing intermediate objects.
13422     * SquidPanel also uses floats internally instead of LibGDX Color objects in its internal 2D array that
13423     * associates colors to cells; this has changed from earlier releases and should be much more efficient.
13424     *
13425     * @param r a float from 0.0 to 1.0 for red
13426     * @param g a float from 0.0 to 1.0 for green
13427     * @param b a float from 0.0 to 1.0 for blue
13428     * @param a a float from 0.0 to 1.0 for alpha/opacity
13429     * @return a packed float that can be given to the setColor method in LibGDX's Batch classes
13430     */
13431    public static float floatGet(float r, float g, float b, float a) {
13432        return NumberTools.intBitsToFloat(((int) (a * 255) << 24 & 0xFE000000) | ((int) (b * 255) << 16)
13433                | ((int) (g * 255) << 8) | (int) (r * 255));
13434    }
13435
13436    /**
13437     * Gets a packed float representation of a color given an RGBA8888-format long. LibGDX expects ABGR format
13438     * in some places, but not all, and it can be confusing to track when it wants RGBA, ABGR, or ARGB. Generally,
13439     * packed floats like what this returns are ABGR format, the kind that can be passed directly to
13440     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)} without constructing intermediate objects.
13441     * SquidPanel also uses floats internally instead of LibGDX Color objects in its internal 2D array that
13442     * associates colors to cells; this has changed from earlier releases and should be much more efficient.
13443     * <br>
13444     * This method is probably not what you want unless you specifically have RGBA8888-format longs that you
13445     * want converted to packed floats. You probably should look at {@link #floatGet(float, float, float, float)} if
13446     * you have alpha and/or float components, or {@link #floatGetI(int, int, int)} for the common case of the 3 RGB
13447     * components as ints and alpha simply opaque.
13448     *
13449     * @param c a long with format {@code 32 unused bits, 8 red bits, 8 green bits, 8 blue bits, 7 alpha bits, 1 unused bit}
13450     * @return a packed float that can be given to the setColor method in LibGDX's Batch classes
13451     */
13452    public static float floatGet(long c) {
13453        return NumberTools.intBitsToFloat((int) ((c >>> 24 & 0xff) | (c >>> 8 & 0xff00) | (c << 8 & 0xff0000)
13454                | (c << 24 & 0xfe000000)));
13455    }
13456
13457    /**
13458     * Gets a packed float representation of a color given an RGBA8888-format int. LibGDX expects ABGR format
13459     * in some places, but not all, and it can be confusing to track when it wants RGBA, ABGR, or ARGB. Generally,
13460     * packed floats like what this returns are ABGR format, the kind that can be passed directly to
13461     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)} without constructing intermediate objects.
13462     * SquidPanel also uses floats internally instead of LibGDX Color objects in its internal 2D array that
13463     * associates colors to cells; this has changed from earlier releases and should be much more efficient.
13464     * <br>
13465     * This method is probably not what you want unless you specifically have RGBA8888-format ints that you
13466     * want converted to packed floats. You probably should look at {@link #floatGet(float, float, float, float)} if
13467     * you have alpha and/or float components, or {@link #floatGetI(int, int, int)} for the common case of the 3 RGB
13468     * components as ints and alpha simply opaque.
13469     *
13470     * @param c an int with format {@code 8 red bits, 8 green bits, 8 blue bits, 7 alpha bits, 1 unused bit}
13471     * @return a packed float that can be given to the setColor method in LibGDX's Batch classes
13472     */
13473    public static float floatGet(int c) {
13474        return NumberTools.intBitsToFloat(Integer.reverseBytes(c) & 0xFEFFFFFF);
13475    }
13476
13477    /**
13478     * Gets a packed float representation of a color given as 3 RGB int components, setting alpha to opaque. LibGDX
13479     * expects ABGR format in some places, but not all, and it can be confusing to track when it wants RGBA, ABGR,
13480     * or ARGB. Generally, packed floats like what this returns are ABGR format, the kind that can be passed
13481     * directly to {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)} without constructing intermediate
13482     * objects. SquidPanel also uses floats internally instead of LibGDX Color objects in its internal 2D array that
13483     * associates colors to cells; this has changed from earlier releases and should be much more efficient.
13484     *
13485     * @param r an int from 0 to 255 (both inclusive) for red
13486     * @param g an int from 0 to 255 (both inclusive) for green
13487     * @param b an int from 0 to 255 (both inclusive) for blue
13488     * @return a packed float that can be given to the setColor method in LibGDX's Batch classes
13489     */
13490    public static float floatGetI(int r, int g, int b) {
13491        return NumberTools.intBitsToFloat((r & 0xff) | (g << 8 & 0xff00) | (b << 16 & 0xff0000)
13492                | 0xfe000000);
13493    }
13494
13495    /**
13496     * Gets a color as a packed float given floats representing hue, saturation, value, and opacity.
13497     * All parameters should normally be between 0 and 1 inclusive, though hue is tolerated if it is negative down to
13498     * -6f at the lowest or positive up to any finite value, though precision loss may affect the color if the hue is
13499     * too large. A hue of 0 is red, progressively higher hue values go to orange, yellow, green, blue, and purple
13500     * before wrapping around to red as it approaches 1. A saturation of 0 is grayscale, a saturation of 1 is brightly
13501     * colored, and values close to 1 will usually appear more distinct than values close to 0, especially if the
13502     * hue is different (saturation below 0.0039f is treated specially here, and does less work to simply get a color
13503     * between black and white with the given opacity). The value is similar to lightness; a value of 0.0039 or less is
13504     * always black (also using a shortcut if this is the case, respecting opacity), while a value of 1 is as bright as
13505     * the color gets with the given saturation and value. To get a value of white, you would need both a value of 1 and
13506     * a saturation of 0.
13507     *
13508     * @param hue        0f to 1f, color wheel position
13509     * @param saturation 0f to 1f, 0f is grayscale and 1f is brightly colored
13510     * @param value      0f to 1f, 0f is black and 1f is bright or light
13511     * @param opacity    0f to 1f, 0f is fully transparent and 1f is opaque
13512     * @return a float encoding a color with the given properties
13513     */
13514    public static float floatGetHSV(float hue, float saturation, float value, float opacity) {
13515        if (saturation <= 0.0039f) {
13516            return floatGet(value, value, value, opacity);
13517        } else if (value <= 0.0039f) {
13518            return NumberTools.intBitsToFloat((int) (opacity * 255f) << 24 & 0xFE000000);
13519        } else {
13520            final float h = ((hue + 6f) % 1f) * 6f;
13521            final int i = (int) h;
13522            value = MathUtils.clamp(value, 0f, 1f);
13523            saturation = MathUtils.clamp(saturation, 0f, 1f);
13524            final float a = value * (1 - saturation);
13525            final float b = value * (1 - saturation * (h - i));
13526            final float c = value * (1 - saturation * (1 - (h - i)));
13527
13528            switch (i) {
13529                case 0:
13530                    return floatGet(value, c, a, opacity);
13531                case 1:
13532                    return floatGet(b, value, a, opacity);
13533                case 2:
13534                    return floatGet(a, value, c, opacity);
13535                case 3:
13536                    return floatGet(a, b, value, opacity);
13537                case 4:
13538                    return floatGet(c, a, value, opacity);
13539                default:
13540                    return floatGet(value, a, b, opacity);
13541            }
13542        }
13543    }
13544
13545    /**
13546     * Gets a color as an RGBA8888 int given floats representing hue, saturation, value, and opacity.
13547     * All parameters should normally be between 0 and 1 inclusive, though hue is tolerated if it is negative down to
13548     * -6f at the lowest or positive up to any finite value, though precision loss may affect the color if the hue is
13549     * too large. A hue of 0 is red, progressively higher hue values go to orange, yellow, green, blue, and purple
13550     * before wrapping around to red as it approaches 1. A saturation of 0 is grayscale, a saturation of 1 is brightly
13551     * colored, and values close to 1 will usually appear more distinct than values close to 0, especially if the
13552     * hue is different (saturation below 0.0039f is treated specially here, and does less work to simply get a color
13553     * between black and white with the given opacity). The value is similar to lightness; a value of 0.0039 or less is
13554     * always black (also using a shortcut if this is the case, respecting opacity), while a value of 1 is as bright as
13555     * the color gets with the given saturation and value. To get a value of white, you would need both a value of 1 and
13556     * a saturation of 0.
13557     *
13558     * @param hue        0f to 1f, color wheel position
13559     * @param saturation 0f to 1f, 0f is grayscale and 1f is brightly colored
13560     * @param value      0f to 1f, 0f is black and 1f is bright or light
13561     * @param opacity    0f to 1f, 0f is fully transparent and 1f is opaque
13562     * @return an int encoding a color with the given properties as RGBA8888
13563     */
13564    public static int intGetHSV(float hue, float saturation, float value, float opacity) {
13565        if (value <= 0.0039f) {
13566            return (int) (opacity * 255f + 0.5f);
13567        } else if (saturation <= 0.0039f) {
13568            final int v = (int)(value * 255f + 0.5f);
13569            return v << 24 | v << 16 | v << 8 | (int)(opacity * 255f + 0.5f);
13570        } else {
13571            final float h = ((hue + 6f) % 1f) * 6f;
13572            final int i = (int) h;
13573            final int alpha = (int) (opacity * 255 + 0.5f);
13574            final int v = MathUtils.clamp((int)(value * 255f + 0.5f), 0, 255);
13575            saturation = MathUtils.clamp(saturation, 0f, 1f);
13576            final int a = (int)(v * (1 - saturation) + 0.5f);
13577            final int b = (int)(v * (1 - saturation * (h - i)) + 0.5f);
13578            final int c = (int)(v * (1 - saturation * (1 - (h - i))) + 0.5f);
13579
13580            switch (i) {
13581                case 0:  return (v << 24) | (c << 16) | (a << 8) | alpha;
13582                case 1:  return (b << 24) | (v << 16) | (a << 8) | alpha;
13583                case 2:  return (a << 24) | (v << 16) | (c << 8) | alpha;
13584                case 3:  return (a << 24) | (b << 16) | (v << 8) | alpha;
13585                case 4:  return (c << 24) | (a << 16) | (v << 8) | alpha;
13586                default: return (v << 24) | (a << 16) | (b << 8) | alpha;
13587            }
13588        }
13589    }
13590    /**
13591     * Gets a color as a packed float given floats representing luma (Y, akin to lightness), blue chroma (Cb, one of two
13592     * kinds of chroma used here), red chroma (Cr, the other kind of chroma), and opacity. Luma should be between 0 and
13593     * 1, inclusive, with 0 used for very dark colors including but not limited to black, and 1 used for very light
13594     * colors including but not limited to white. The two chroma values range from -0.5 to 0.5, and only make sense when
13595     * used together. When Chroma B is high and Chroma R is low, the color is more blue; when Chroma R is high and
13596     * Chroma B is low, the color is more red, when both are low it is more green, and when both are high it is more
13597     * purple. When Chroma R and Chroma B are both near 0.0f, the color is closer to gray. Because Chroma values are
13598     * centered on 0.0f, you can multiply them by a value like 0.5f to halve the colorfulness of the color.
13599     *
13600     * @param luma       0f to 1f, lightness (see {@link #lumaOfFloat(float)})
13601     * @param chromaB    -0.5f to 0.5f, "blueness" of chroma component, with 0.5 more blue (see {@link #chromaBOfFloat(float)})
13602     * @param chromaR    -0.5f to 0.5f, "redness" of chroma component, with 0.5 more red (see {@link #chromaROfFloat(float)})
13603     * @param opacity    0f to 1f, 0f is fully transparent and 1f is opaque
13604     * @return a float encoding a color with the given properties
13605     */
13606    public static float floatGetYCbCr(float luma, float chromaB, float chromaR, float opacity) {
13607        if (chromaR >= -0.0039f && chromaR <= 0.0039f && chromaB >= -0.0039f && chromaB <= 0.0039f) {
13608            return floatGet(luma, luma, luma, opacity);
13609        }
13610        return floatGet(MathUtils.clamp(luma + chromaR * 1.402f, 0f, 1f),
13611                MathUtils.clamp(luma - chromaB * 0.344136f - chromaR * 0.714136f, 0f, 1f),
13612                MathUtils.clamp(luma + chromaB * 1.772f, 0f, 1f),
13613                opacity);
13614    }
13615    /**
13616     * Gets a libGDX Color given floats representing luma (Y, akin to lightness), blue chroma (Cb, one of two
13617     * kinds of chroma used here), red chroma (Cr, the other kind of chroma), and opacity. Luma should be between 0 and
13618     * 1, inclusive, with 0 used for very dark colors including but not limited to black, and 1 used for very light
13619     * colors including but not limited to white. The two chroma values range from -0.5 to 0.5, and only make sense when
13620     * used together. When Chroma B is high and Chroma R is low, the color is more blue; when Chroma R is high and
13621     * Chroma B is low, the color is more red, when both are low it is more green, and when both are high it is more
13622     * purple. When Chroma R and Chroma B are both near 0.0f, the color is closer to gray. Because Chroma values are
13623     * centered on 0.0f, you can multiply them by a value like 0.5f to halve the colorfulness of the color. This
13624     * allocates a new Color and clamps its r, g, b, and a values to between 0 and 1, regardless of input range.
13625     *
13626     * @param luma       0f to 1f, lightness (see {@link #luma(Color)})
13627     * @param chromaB    -0.5f to 0.5f, "blueness" of chroma component, with 0.5 more blue (see {@link #chromaB(Color)})
13628     * @param chromaR    -0.5f to 0.5f, "redness" of chroma component, with 0.5 more red (see {@link #chromaR(Color)})
13629     * @param opacity    0f to 1f, 0f is fully transparent and 1f is opaque
13630     * @return a libGDX Color with the given properties
13631     */
13632    public static Color ycbcr(float luma, float chromaB, float chromaR, float opacity){
13633        return new Color(luma + chromaR * 1.402f, luma - chromaB * 0.344136f - chromaR * 0.714136f, luma + chromaB * 1.772f, opacity);
13634    }
13635
13636    /**
13637     * Gets a color as a packed float given floats representing luminance (Y, akin to lightness), orange chrominance
13638     * (Co, one of two kinds of chroma used here), green chrominance (Cg, the other kind of chroma), and opacity.
13639     * Luminance should be between 0 and 1, inclusive, with 0 used for very dark colors including but not limited to
13640     * black, and 1 used for very light colors including but not limited to white. The two chrominance values range from
13641     * -0.5 to 0.5, and only make sense when used together. When Co is high and Cg is low, the color is more reddish;
13642     * when both are low it is more bluish, and when Cg is high the color tends to be greenish (it can be more cyan or
13643     * more yellow depending on Co, but mostly when Y isn't low). When Co and Cg are both near 0.0f, the color is closer
13644     * to gray. Because chrominance values are centered on 0.0f, you can multiply them by a value like 0.5f to halve the
13645     * colorfulness of the color.
13646     * <br>
13647     * This method clamps the resulting color's RGB values, so any values can technically be given to this as y, co, and
13648     * cg, but they will only be reversible from the returned float color to the original Y, Cb, and Cr values if the
13649     * original values were in the range that {@link #chrominanceOrange(float)}, {@link #chrominanceGreen(float)}, and
13650     * {@link #luminanceYCoCg(float)} return.
13651     *
13652     * @param y          0f to 1f, luminance or Y component of YCoCg
13653     * @param co         -0.5f to 0.5f, "chrominance orange" or Co component of YCoCg, with 0.5f more orange
13654     * @param cg         -0.5f to 0.5f, "chrominance green" or Cg component of YCoCg, with 0.5f more green
13655     * @param opacity    0f to 1f, 0f is fully transparent and 1f is opaque
13656     * @return a float encoding a color with the given properties
13657     */
13658    public static float floatGetYCoCg(float y, float co, float cg, float opacity) {
13659//        if (luma <= 0.0039f) {
13660//            return floatGet(0f, 0f, 0f, opacity);
13661//        } else if (luma >= 0.9961f) {
13662//            return floatGet(1f, 1f, 1f, opacity);
13663//        }
13664//        if (co >= -0.0039f && co <= 0.0039f && cg >= -0.0039f && cg <= 0.0039f) {
13665//            return floatGet(y, y, y, opacity);
13666//        }
13667        /*
13668t = Y - Cg;
13669R = t + Co;
13670G = Y + Cg;
13671B = t - Co;
13672         */
13673        final float t = y - cg;
13674        return floatGet(MathUtils.clamp(t + co, 0f, 1f),
13675                MathUtils.clamp(y + cg, 0f, 1f),
13676                MathUtils.clamp(t - co, 0f, 1f),
13677                opacity);
13678    }
13679    /**
13680     * Gets a color as a packed float given floats representing luminance (Y, akin to lightness), orange chrominance
13681     * (Co, one of two kinds of chroma used here), green chrominance (Cg, the other kind of chroma), and opacity.
13682     * Luminance should be between 0 and 1, inclusive, with 0 used for very dark colors including but not limited to
13683     * black, and 1 used for very light colors including but not limited to white. The two chrominance values range from
13684     * -0.5 to 0.5, and only make sense when used together. When Co is high and Cg is low, the color is more reddish;
13685     * when both are low it is more bluish, and when Cg is high the color tends to be greenish (it can be more cyan or
13686     * more yellow depending on Co, but mostly when Y isn't low). When Co and Cg are both near 0.0f, the color is closer
13687     * to gray. Because chrominance values are centered on 0.0f, you can multiply them by a value like 0.5f to halve the
13688     * colorfulness of the color.
13689     * <br>
13690     * This method clamps the resulting color's RGB values, so any values can technically be given to this as y, co, and
13691     * cg, but they will only be reversible from the returned float color to the original Y, Cb, and Cr values if the
13692     * original values were in the range that {@link #chrominanceOrange(float)}, {@link #chrominanceGreen(float)}, and
13693     * {@link #luminanceYCoCg(float)} return.
13694     *
13695     * @param y          0f to 1f, luminance or Y component of YCoCg
13696     * @param co         -0.5f to 0.5f, "chrominance orange" or Co component of YCoCg, with 0.5f more orange
13697     * @param cg         -0.5f to 0.5f, "chrominance green" or Cg component of YCoCg, with 0.5f more green
13698     * @param opacity    0f to 1f, 0f is fully transparent and 1f is opaque
13699     * @return a libGDX Color with the given properties
13700     */
13701    public static Color ycocg(float y, float co, float cg, float opacity) {
13702//        if (luma <= 0.0039f) {
13703//            return floatGet(0f, 0f, 0f, opacity);
13704//        } else if (luma >= 0.9961f) {
13705//            return floatGet(1f, 1f, 1f, opacity);
13706//        }
13707//        if (co >= -0.0039f && co <= 0.0039f && cg >= -0.0039f && cg <= 0.0039f) {
13708//            return floatGet(y, y, y, opacity);
13709//        }
13710        /*
13711t = Y - Cg;
13712R = t + Co;
13713G = Y + Cg;
13714B = t - Co;
13715         */
13716        final float t = y - cg;
13717        return new Color(MathUtils.clamp(t + co, 0f, 1f),
13718                MathUtils.clamp(y + cg, 0f, 1f),
13719                MathUtils.clamp(t - co, 0f, 1f),
13720                opacity);
13721    }
13722    /**
13723     * Gets a color as a packed float given floats representing luma (Y, akin to lightness), chroma warm (Cw, one of two
13724     * kinds of chroma used here), chroma mild (Cm, the other kind of chroma), and opacity. Luma should be between 0 and
13725     * 1, inclusive, with 0 used for very dark colors including but not limited to black, and 1 used for very light
13726     * colors including but not limited to white. The two chroma values range from -1.0 to 1.0, unlike YCbCr and YCoCg,
13727     * and also unlike those color spaces, there's some aesthetic value in changing just one chroma value. When warm is
13728     * high and mild is low, the color is more reddish; when both are low it is more bluish, and when mild is high and
13729     * warm is low, the color tends to be greenish, and when both are high it tends to be brown or yellow. When warm and
13730     * mild are both near 0.0f, the color is closer to gray. Because chroma values are centered on 0.0f, you can multiply
13731     * them by a value like 0.5f to halve the colorfulness of the color.
13732     * <br>
13733     * This method clamps the resulting color's RGB values, so any values can technically be given to this as luma,
13734     * warm, and mild, but they will only be reversible from the returned float color to the original Y, Cw, and Cm
13735     * values if the original values were in the range that {@link #chromaWarm(float)}, {@link #chromaMild(float)}, and
13736     * {@link #lumaYCwCm(float)} return.
13737     *
13738     * @param luma       0f to 1f, luma or Y component of YCwCm
13739     * @param warm       -1f to 1f, "chroma warm" or Cw component of YCwCm, with 1f more red or yellow
13740     * @param mild       -1f to 1f, "chroma mild" or Cm component of YCwCm, with 1f more green or yellow
13741     * @param opacity    0f to 1f, 0f is fully transparent and 1f is opaque
13742     * @return a float encoding a color with the given properties
13743     */
13744    public static float floatGetYCwCm(float luma, float warm, float mild, float opacity) {
13745        // the color solid should be:
13746
13747        //                   > warm >
13748        // blue    violet     red
13749        // cyan     gray      orange
13750        // green    neon      yellow
13751        //  \/ mild \/
13752
13753        // so, warm is effectively defined as the presence of red.
13754        // and mild is, effectively, presence of green.
13755        // negative warm or negative mild will each contribute to blue.
13756        // luma is defined as (r * 3 + g * 4 + b) / 8
13757        // or r * 0.375f + g * 0.5f + b * 0.125f
13758        // warm is the warm-cool axis, with positive warm between red and yellow and negative warm between blue and green
13759        // warm is defined as (r - b), with range from -1 to 1
13760        // mild is the green-purple axis, with positive mild between green and yellow, negative mild between blue and red
13761        // mild is defined as (g - b), with range from -1 to 1
13762
13763        //r = (warm * 5 - mild * 4 + luma * 8) / 8; r5 - b5 - g4 + b4 + r3 + g4 + b1
13764        //g = (mild * 4 - warm * 3 + luma * 8) / 8; g4 - b4 - r3 + b3 + r3 + g4 + b1
13765        //b = (luma * 8 - warm * 3 - mild * 4) / 8; r3 + g4 + b1 - r3 + b3 - g4 + b4
13766        return floatGet(MathUtils.clamp(luma + warm * 0.625f - mild * 0.5f, 0f, 1f),
13767                MathUtils.clamp(luma + mild * 0.5f - warm * 0.375f, 0f, 1f),
13768                MathUtils.clamp(luma - warm * 0.375f - mild * 0.5f, 0f, 1f), opacity);
13769
13770    }
13771    /**
13772     * Gets a color as a packed float given floats representing luma (Y, akin to lightness), chroma warm (Cw, one of two
13773     * kinds of chroma used here), chroma mild (Cm, the other kind of chroma), and opacity. Luma should be between 0 and
13774     * 1, inclusive, with 0 used for very dark colors including but not limited to black, and 1 used for very light
13775     * colors including but not limited to white. The two chroma values range from -1.0 to 1.0, unlike YCbCr and YCoCg,
13776     * and also unlike those color spaces, there's some aesthetic value in changing just one chroma value. When warm is
13777     * high and mild is low, the color is more reddish; when both are low it is more bluish, and when mild is high and
13778     * warm is low, the color tends to be greenish, and when both are high it tends to be brown or yellow. When warm and
13779     * mild are both near 0.0f, the color is closer to gray. Because chroma values are centered on 0.0f, you can multiply
13780     * them by a value like 0.5f to halve the colorfulness of the color.
13781     * <br>
13782     * This method clamps the resulting color's RGB values, so any values can technically be given to this as luma,
13783     * warm, and mild, but they will only be reversible from the returned float color to the original Y, Cw, and Cm
13784     * values if the original values were in the range that {@link #chromaWarm(float)}, {@link #chromaMild(float)}, and
13785     * {@link #lumaYCwCm(float)} return.
13786     *
13787     * @param luma       0f to 1f, luma or Y component of YCwCm
13788     * @param warm       -1f to 1f, "chroma warm" or Cw component of YCwCm, with 1f more red or yellow
13789     * @param mild       -1f to 1f, "chroma mild" or Cm component of YCwCm, with 1f more green or yellow
13790     * @param opacity    0f to 1f, 0f is fully transparent and 1f is opaque
13791     * @return a libGDX Color with the given properties
13792     */
13793    public static Color ycwcm(float luma, float warm, float mild, float opacity) {
13794        return new Color(MathUtils.clamp(luma + warm * 0.625f - mild * 0.5f, 0f, 1f),
13795                MathUtils.clamp(luma + mild * 0.5f - warm * 0.375f, 0f, 1f),
13796                MathUtils.clamp(luma - warm * 0.375f - mild * 0.5f, 0f, 1f), opacity);
13797    }
13798
13799
13800    /**
13801     * A lookup table from 32 possible levels in the red channel to 6 possible values in the red channel; only change
13802     * this if you know what you're doing. Affects {@link #quantize253F(float, float, float, float)} and
13803     * {@link #quantize253F(float)}.
13804     */
13805    public static final int[]
13806            redLUT =   {
13807            0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE00003A,
13808            0xFE00003A, 0xFE00003A, 0xFE00003A, 0xFE00003A, 0xFE00003A, 0xFE00003A, 0xFE000074, 0xFE000074,
13809            0xFE000074, 0xFE000074, 0xFE000074, 0xFE0000B6, 0xFE0000B6, 0xFE0000B6, 0xFE0000B6, 0xFE0000B6,
13810            0xFE0000E0, 0xFE0000E0, 0xFE0000E0, 0xFE0000E0, 0xFE0000FF, 0xFE0000FF, 0xFE0000FF, 0xFE0000FF,};
13811    /**
13812     * A lookup table from 32 possible levels in the red channel to 6 possible values in the red channel as floats; only
13813     * change this if you know what you're doing. Affects {@link #quantize253()}.
13814     */
13815    public static final float[]
13816            redLUTf = {
13817            0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x3A/255f,
13818            0x3A/255f, 0x3A/255f, 0x3A/255f, 0x3A/255f, 0x3A/255f, 0x3A/255f, 0x74/255f, 0x74/255f,
13819            0x74/255f, 0x74/255f, 0x74/255f, 0xB6/255f, 0xB6/255f, 0xB6/255f, 0xB6/255f, 0xB6/255f,
13820            0xE0/255f, 0xE0/255f, 0xE0/255f, 0xE0/255f, 0xFF/255f, 0xFF/255f, 0xFF/255f, 0xFF/255f,
13821    };
13822    /**
13823     * The 6 possible values that can be used in the red channel with {@link #redLUT}.
13824     */
13825    public static final byte[] redPossibleLUT = {0x00, 0x3A, 0x74, (byte)0xB6, (byte)0xE0, (byte)0xFF};
13826
13827    /**
13828     * A lookup table from 32 possible levels in the green channel to 7 possible values in the green channel; only
13829     * change this if you know what you're doing. Affects {@link #quantize253F(float, float, float, float)} and
13830     * {@link #quantize253F(float)}.
13831     */
13832    public static final int[]
13833            greenLUT = {             
13834            0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE003800,
13835            0xFE003800, 0xFE003800, 0xFE003800, 0xFE003800, 0xFE006000, 0xFE006000, 0xFE006000, 0xFE006000,
13836            0xFE006000, 0xFE009800, 0xFE009800, 0xFE009800, 0xFE009800, 0xFE00C400, 0xFE00C400, 0xFE00C400,
13837            0xFE00C400, 0xFE00EE00, 0xFE00EE00, 0xFE00EE00, 0xFE00EE00, 0xFE00FF00, 0xFE00FF00, 0xFE00FF00,};
13838    /**
13839     * A lookup table from 32 possible levels in the green channel to 7 possible values in the green channel as floats;
13840     * only change this if you know what you're doing. Affects {@link #quantize253()}.
13841     */
13842    public static final float[]
13843            greenLUTf = {
13844            0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x38/255f,
13845            0x38/255f, 0x38/255f, 0x38/255f, 0x38/255f, 0x60/255f, 0x60/255f, 0x60/255f, 0x60/255f,
13846            0x60/255f, 0x98/255f, 0x98/255f, 0x98/255f, 0x98/255f, 0xC4/255f, 0xC4/255f, 0xC4/255f,
13847            0xC4/255f, 0xEE/255f, 0xEE/255f, 0xEE/255f, 0xEE/255f, 0xFF/255f, 0xFF/255f, 0xFF/255f,
13848    };
13849    /**
13850     * The 7 possible values that can be used in the green channel with {@link #greenLUT}.
13851     */
13852    public static final byte[] greenPossibleLUT = {0x00, 0x38, 0x60, (byte)0x98, (byte)0xC4, (byte)0xEE, (byte)0xFF};
13853    /**
13854     * A lookup table from 32 possible levels in the blue channel to 6 possible values in the blue channel; only change
13855     * this if you know what you're doing. Affects {@link #quantize253F(float, float, float, float)} and
13856     * {@link #quantize253F(float)}.
13857     */
13858    public static final int[]
13859            blueLUT =  {
13860            0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE000000, 0xFE380000,
13861            0xFE380000, 0xFE380000, 0xFE380000, 0xFE380000, 0xFE380000, 0xFE760000, 0xFE760000, 0xFE760000,
13862            0xFE760000, 0xFE760000, 0xFE760000, 0xFEAC0000, 0xFEAC0000, 0xFEAC0000, 0xFEAC0000, 0xFEAC0000,
13863            0xFEEA0000, 0xFEEA0000, 0xFEEA0000, 0xFEEA0000, 0xFEFF0000, 0xFEFF0000, 0xFEFF0000, 0xFEFF0000,};
13864    /**
13865     * A lookup table from 32 possible levels in the blue channel to 6 possible values in the blue channel as floats;
13866     * only change this if you know what you're doing. Affects {@link #quantize253()}.
13867     */
13868    public static final float[]
13869            blueLUTf =  {
13870            0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x00/255f, 0x38/255f,
13871            0x38/255f, 0x38/255f, 0x38/255f, 0x38/255f, 0x38/255f, 0x76/255f, 0x76/255f, 0x76/255f,
13872            0x76/255f, 0x76/255f, 0x76/255f, 0xAC/255f, 0xAC/255f, 0xAC/255f, 0xAC/255f, 0xAC/255f,
13873            0xEA/255f, 0xEA/255f, 0xEA/255f, 0xEA/255f, 0xFF/255f, 0xFF/255f, 0xFF/255f, 0xFF/255f,
13874    };
13875    /**
13876     * The 6 possible values that can be used in the blue channel with {@link #blueLUT}.
13877     */
13878    public static final byte[] bluePossibleLUT = {0x00, 0x38, 0x76, (byte)0xAC, (byte)0xEA, (byte)0xFF};
13879
13880    /**
13881     * Reduces the color depth of the given r, g, and b color channels to fit in 252 colors plus fully transparent (an
13882     * all-0 value is used when alpha is less than 0.5f). Uses a lookup table per channel that is not perfectly accurate
13883     * to the original color's brightness, and when this quantize technique is applied to an image of a painting, it
13884     * tends to make it more bold and highly-contrasted. Returns a packed float.
13885     * @param r red channel, from 0f to 1f inclusive
13886     * @param g green channel, from 0f to 1f inclusive
13887     * @param b blue channel, from 0f to 1f inclusive
13888     * @param a alpha channel, from 0f to 1f inclusive; will only change the result if less than 0.5f
13889     * @return one of 253 possible float values with the reduced color depth, as a packed float
13890     */
13891    public static float quantize253F(float r, float g, float b, float a)
13892    {
13893        return NumberTools.intBitsToFloat((redLUT[(int)(r*31.999f)] | greenLUT[(int)(g*31.999f)] | blueLUT[(int)(b*31.999f)]) & -(int)(a + 0.5f));
13894    }
13895
13896    /**
13897     * Reduces the color depth of the given packed float color to fit in 252 colors plus fully transparent (an all-0
13898     * value is used when alpha is less than 0.5f). Uses a lookup table per channel that is not perfectly accurate to
13899     * the original color's brightness, and when this quantize technique is applied to an image of a painting, it tends
13900     * to make it more bold and highly-contrasted. Returns a packed float.
13901     * @param packed a packed float color, as returned by {@link #toFloatBits()}
13902     * @return a possibly-different packed float color that has been reduced in color depth
13903     */
13904    public static float quantize253F(float packed)
13905    {
13906        final int unpacked = NumberTools.floatToIntBits(packed);
13907        return NumberTools.intBitsToFloat((redLUT[unpacked >>> 3 & 31] | greenLUT[unpacked >>> 11 & 31] | blueLUT[unpacked >>> 19 & 31]) & unpacked >> 31);
13908    }
13909
13910    /**
13911     * Reduces the color depth of the given packed float color to fit in 252 colors plus fully transparent (an all-0
13912     * value is used when alpha is less than 0.5f) and returns the color as an RGBA8888 int. Uses a lookup table per
13913     * channel that is not perfectly accurate to the original color's brightness, and when this quantize technique is
13914     * applied to an image of a painting, it tends to make it more bold and highly-contrasted. Returns an int.
13915     * @param packed a packed float color, as returned by {@link #toFloatBits()}
13916     * @return an int representing an RGBA8888 color
13917     */
13918    public static int quantize253I(float packed)
13919    {
13920        final int unpacked = NumberTools.floatToIntBits(packed);
13921        return Integer.reverseBytes((redLUT[unpacked >>> 3 & 31] | greenLUT[unpacked >>> 11 & 31] | blueLUT[unpacked >>> 19 & 31]) & unpacked >> 31);
13922    }
13923    /**
13924     * Reduces the color depth of the given Color to fit in 252 colors plus fully transparent (an all-0 value is used
13925     * when alpha is less than 0.5f) and returns the color as an RGBA8888 int. Uses a lookup table per channel that is
13926     * not perfectly accurate to the original color's brightness, and when this quantize technique is applied to an
13927     * image of a painting, it tends to make it more bold and highly-contrasted. Returns an int.
13928     * @param color a libGDX Color, will not be modified
13929     * @return an int representing an RGBA8888 color
13930     */
13931    public static int quantize253I(Color color)
13932    {
13933        return Integer.reverseBytes((redLUT[(int)(color.r*31.999f)] | greenLUT[(int)(color.g*31.999f)] | blueLUT[(int)(color.b*31.999f)]) & -(int)(color.a + 0.5));
13934    }
13935
13936    /**
13937     * Reduces the color depth of the given Color and returns a new Color that fits in 252 colors plus fully transparent
13938     * (an all-0 value is used when alpha is less than 0.5f). Uses a lookup table per channel that is not perfectly
13939     * accurate to the original color's brightness, and when this quantize technique is applied to an image of a
13940     * painting, it tends to make it more bold and highly-contrasted. Returns a new Color and does not change this
13941     * SColor object.
13942     * @return a new Color that must be one of 253 possible quantized colors
13943     */
13944    public Color quantize253()
13945    {
13946        if(a >= 0.5f) 
13947            return new Color(redLUTf[(int)(r*31.999f)], greenLUTf[(int)(g*31.999f)], blueLUTf[(int)(b*31.999f)], 1f);
13948        else
13949            return new Color(0f, 0f, 0f, 0f);
13950    }
13951
13952    /**
13953     * Converts a packed float color in the format produced by {@link #toFloatBits()} to an RGBA8888 int. This format of
13954     * int can be used with Pixmap and in some other places in libGDX.
13955     * @param packed a packed float color, as produced by {@link #toFloatBits()}
13956     * @return an RGBA8888 int color
13957     */
13958    public static int floatToInt(final float packed)
13959    {
13960        return NumberTools.floatToReversedIntBits(packed);
13961    }
13962
13963    /**
13964     * Gets a variation on this SColor as a packed float that can have its hue, saturation, and value changed to
13965     * specified degrees using a random number generator. Takes an IRNG object (if the colors don't have a specific need
13966     * to be exactly the same each run, consider using {@link DefaultResources#getGuiRandom()} for an IRNG), as well as
13967     * floats representing the amounts of change that can be applied to hue, saturation, and value. Returns a float that
13968     * can be used as a packed or encoded color with methods like
13969     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, or in various SquidLib classes like SparseLayers or
13970     * SquidLayers. The float is likely to be different than the result of {@link #toFloatBits()} unless hue,
13971     * saturation, and value are all 0. This won't modify the current SColor, nor will it allocate any objects.
13972     * <br>
13973     * The parameters this takes (other than random) all specify spans that the value can change by, spread halfway
13974     * toward higher values and halfway towards lower values. This is truncated if it would make a value lower than 0 or
13975     * higher than 1, with an exception for hue, which can rotate around somewhat if lower or higher hues would be used.
13976     * As an example, if you give this 0.4f for saturation, and the current color has saturation 0.7f, then the possible
13977     * saturations that could be used would have the specified 0.4f range centered on 0.7f, or 0.5f to 0.9f. If you gave
13978     * this 1f for saturation and the current color still has saturation 0.7f, then the range would be truncated at the
13979     * upper end, for a possible range of 0.2f to 1.0f. If truncation of the range occurs, then values are more likely
13980     * to be at the truncated max or min amount.
13981     *
13982     * @param random     an IRNG to get random amounts, such as {@link DefaultResources#getGuiRandom()}
13983     * @param hue        0f to 1f, the span of hue change that can be applied to the new float color
13984     * @param saturation 0f to 1f, the span of saturation change that can be applied to the new float color
13985     * @param value      0f to 1f, the span of value/brightness change that can be applied to the new float color
13986     * @return a float encoding a color with the given properties
13987     */
13988    public float toRandomizedFloat(IRNG random, float hue, float saturation, float value) {
13989        return toRandomizedFloat(this, random, hue, saturation, value, 0f);
13990    }
13991
13992    /**
13993     * Gets a variation on the Color basis as a packed float that can have its hue, saturation, and value changed to
13994     * specified degrees using a random number generator. Takes an IRNG object (if the colors don't have a specific need
13995     * to be exactly the same each run, consider using {@link DefaultResources#getGuiRandom()} for an IRNG; if they do,
13996     * consider setting the state of that IRNG with {@link squidpony.squidmath.StatefulRNG#setState(long)}), as well as
13997     * floats representing the amounts of change that can be applied to hue, saturation, and value. Returns a float that
13998     * can be used as a packed or encoded color with methods like
13999     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, or in various SquidLib classes like SparseLayers or
14000     * SquidLayers. The float is likely to be different than the result of {@link #toFloatBits()} unless hue,
14001     * saturation, and value are all 0. This won't modify the current SColor, nor will it allocate any objects.
14002     * <br>
14003     * The parameters this takes (other than random) all specify spans that the value can change by, spread halfway
14004     * toward higher values and halfway towards lower values. This is truncated if it would make a value lower than 0 or
14005     * higher than 1, with an exception for hue, which can rotate around somewhat if lower or higher hues would be used.
14006     * As an example, if you give this 0.4f for saturation, and the current color has saturation 0.7f, then the possible
14007     * saturations that could be used would have the specified 0.4f range centered on 0.7f, or 0.5f to 0.9f. If you gave
14008     * this 1f for saturation and the current color still has saturation 0.7f, then the range would be truncated at the
14009     * upper end, for a possible range of 0.2f to 1.0f. If truncation of the range occurs, then values are more likely
14010     * to be at the truncated max or min amount.
14011     *
14012     * @param basis      a Color or SColor to use as the starting point; will not be modified itself
14013     * @param random     an IRNG to get random amounts, such as {@link DefaultResources#getGuiRandom()}
14014     * @param hue        0f to 1f, the span of hue change that can be applied to the new float color
14015     * @param saturation 0f to 1f, the span of saturation change that can be applied to the new float color
14016     * @param value      0f to 1f, the span of value/brightness change that can be applied to the new float color
14017     * @return a float encoding a color with the given properties
14018     */
14019    public static float toRandomizedFloat(Color basis, IRNG random, float hue, float saturation, float value) {
14020        return toRandomizedFloat(basis, random, hue, saturation, value, 0f);
14021    }
14022    /**
14023     * Gets a variation on this SColor as a packed float that can have its hue, saturation, value, and opacity changed
14024     * to specified degrees using a random number generator. Takes an IRNG object (if the colors don't have a specific
14025     * need to be exactly the same each run, consider using {@link DefaultResources#getGuiRandom()} for an IRNG), as well
14026     * as floats representing the amounts of change that can be applied to hue, saturation, value, and opacity. Returns
14027     * a float that can be used as a packed or encoded color with methods like
14028     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, or in various SquidLib classes like SparseLayers or
14029     * SquidLayers. The float is likely to be different than the result of {@link #toFloatBits()} unless hue,
14030     * saturation, value, and opacity are all 0. This won't modify the current SColor, nor will it allocate any objects.
14031     * <br>
14032     * The parameters this takes (other than random) all specify spans that the value can change by, spread halfway
14033     * toward higher values and halfway towards lower values. This is truncated if it would make a value lower than 0 or
14034     * higher than 1, with an exception for hue, which can rotate around somewhat if lower or higher hues would be used.
14035     * As an example, if you give this 0.4f for saturation, and the current color has saturation 0.7f, then the possible
14036     * saturations that could be used would have the specified 0.4f range centered on 0.7f, or 0.5f to 0.9f. If you gave
14037     * this 1f for saturation and the current color still has saturation 0.7f, then the range would be truncated at the
14038     * upper end, for a possible range of 0.2f to 1.0f. If truncation of the range occurs, then values are more likely
14039     * to be at the truncated max or min amount.
14040     *
14041     * @param random     an IRNG to get random amounts, such as {@link DefaultResources#getGuiRandom()}
14042     * @param hue        0f to 2f, the span of hue change that can be applied to the new float color
14043     * @param saturation 0f to 2f, the span of saturation change that can be applied to the new float color
14044     * @param value      0f to 2f, the span of value/brightness change that can be applied to the new float color
14045     * @param opacity    0f to 2f, the span of opacity/alpha change that can be applied to the new float color
14046     * @return a float encoding a variation of this SColor with changes up to the given properties
14047     */
14048    public float toRandomizedFloat(IRNG random, float hue, float saturation, float value, float opacity) {
14049        return toRandomizedFloat(this, random, hue, saturation, value, opacity);
14050    }
14051    /**
14052     * Gets a variation on the Color basis as a packed float that can have its hue, saturation, value, and opacity
14053     * changed to specified degrees using a random number generator. Takes an IRNG object (if the colors don't have a
14054     * specific need to be exactly the same each run, consider using {@link DefaultResources#getGuiRandom()} for an
14055     * IRNG), as well as floats representing the amounts of change that can be applied to hue, saturation, value, and
14056     * opacity. Returns a float that can be used as a packed or encoded color with methods like
14057     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, or in various SquidLib classes like SparseLayers or
14058     * SquidLayers. The float is likely to be different than the result of {@link #toFloatBits()} unless hue,
14059     * saturation, value, and opacity are all 0. This won't modify the current SColor, nor will it allocate any objects.
14060     * <br>
14061     * The parameters this takes (other than random) all specify spans that the value can change by, spread halfway
14062     * toward higher values and halfway towards lower values. This is truncated if it would make a value lower than 0 or
14063     * higher than 1, with an exception for hue, which can rotate around somewhat if lower or higher hues would be used.
14064     * As an example, if you give this 0.4f for saturation, and the current color has saturation 0.7f, then the possible
14065     * saturations that could be used would have the specified 0.4f range centered on 0.7f, or 0.5f to 0.9f. If you gave
14066     * this 1f for saturation and the current color still has saturation 0.7f, then the range would be truncated at the
14067     * upper end, for a possible range of 0.2f to 1.0f. If truncation of the range occurs, then values are more likely
14068     * to be at the truncated max or min amount.
14069     *
14070     * @param basis      a Color or SColor to use as the starting point; will not be modified itself
14071     * @param random     an IRNG to get random amounts, such as {@link DefaultResources#getGuiRandom()}
14072     * @param hue        0f to 2f, the span of hue change that can be applied to the new float color
14073     * @param saturation 0f to 2f, the span of saturation change that can be applied to the new float color
14074     * @param value      0f to 2f, the span of value/brightness change that can be applied to the new float color
14075     * @param opacity    0f to 2f, the span of opacity/alpha change that can be applied to the new float color
14076     * @return a float encoding a variation of this SColor with changes up to the given properties
14077     */
14078    public static float toRandomizedFloat(Color basis, IRNG random, float hue, float saturation, float value, float opacity) {
14079        final float h, s, r = basis.r, g = basis.g, b = basis.b;
14080        final float min = Math.min(Math.min(r, g), b);   //Min. value of RGB
14081        final float max = Math.max(Math.max(r, g), b);   //Max value of RGB, equivalent to value
14082        final float delta = max - min;                   //Delta RGB value
14083        if ( delta < 0.0039f )                           //This is a gray, no chroma...
14084        {
14085            s = 0f;
14086            h = 0f;
14087            hue = 1f;
14088        }
14089        else                                             //Chromatic data...
14090        {
14091            s = delta / max;
14092            final float rDelta = (((max - r) / 6f) + (delta / 2f)) / delta;
14093            final float gDelta = (((max - g) / 6f) + (delta / 2f)) / delta;
14094            final float bDelta = (((max - b) / 6f) + (delta / 2f)) / delta;
14095
14096            if      (r == max) h = (bDelta - gDelta + 1f) % 1f;
14097            else if (g == max) h = ((1f / 3f) + rDelta - bDelta + 1f) % 1f;
14098            else               h = ((2f / 3f) + gDelta - rDelta + 1f) % 1f;
14099        }
14100        saturation = MathUtils.clamp(s + (random.nextFloat() - 0.5f) * saturation, 0f, 1f);
14101        value = MathUtils.clamp(max + (random.nextFloat() - 0.5f) * value, 0f, 1f);
14102        opacity = MathUtils.clamp(basis.a + (random.nextFloat() - 0.5f) * opacity, 0f, 1f);
14103
14104        if (saturation <= 0.0039f) {
14105            return floatGet(value, value, value, opacity);
14106        } else if (value <= 0.0039f) {
14107            return NumberTools.intBitsToFloat((int) (opacity * 254f) << 24 & 0xFE000000);
14108        } else {
14109            final float hu = ((h + (random.nextFloat() - 0.5f) * hue + 6f) % 1f) * 6f;
14110            final int i = (int) hu;
14111            final float x = value * (1 - saturation);
14112            final float y = value * (1 - saturation * (hu - i));
14113            final float z = value * (1 - saturation * (1 - (hu - i)));
14114
14115            switch (i) {
14116                case 0:
14117                    return floatGet(value, z, x, opacity);
14118                case 1:
14119                    return floatGet(y, value, x, opacity);
14120                case 2:
14121                    return floatGet(x, value, z, opacity);
14122                case 3:
14123                    return floatGet(x, y, value, opacity);
14124                case 4:
14125                    return floatGet(z, x, value, opacity);
14126                default:
14127                    return floatGet(value, x, y, opacity);
14128            }
14129        }
14130    }
14131    /**
14132     * Gets a variation on this SColor as a packed float that has its hue, saturation, and value adjusted by the
14133     * specified amounts. Takes floats representing the amounts of change to apply to hue, saturation, and value; these
14134     * can be between -1f and 1f. Returns a float that can be used as a packed or encoded color with methods like
14135     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, or in various SquidLib classes like SparseLayers or
14136     * SquidLayers. The float is likely to be different than the result of {@link #toFloatBits()} unless hue,
14137     * saturation, and value are all 0. This won't modify the current SColor, nor will it allocate any objects.
14138     * <br>
14139     * The parameters this takes all specify additive changes for a color component, clamping the final values so they
14140     * can't go above 1 or below 0, with an exception for hue, which can rotate around if lower or higher hues would be
14141     * used. As an example, if you give this 0.4f for saturation, and the current color has saturation 0.7f, then the
14142     * resulting color will have 1f for saturation. If you gave this -0.1f for saturation and the current color still
14143     * has saturation 0.7f, then resulting color will have 0.6f for saturation.
14144     *
14145     * @param hue        -1f to 1f, the hue change that can be applied to the new float color
14146     * @param saturation -1f to 1f, the saturation change that can be applied to the new float color
14147     * @param value      -1f to 1f, the value/brightness change that can be applied to the new float color
14148     * @return a float encoding a color with the given properties
14149     */
14150    public float toEditedFloat(float hue, float saturation, float value) {
14151        return toEditedFloat(this, hue, saturation, value, 0f);
14152    }
14153
14154    /**
14155     * Gets a variation on the Color basis as a packed float that has its hue, saturation, and value adjusted by the
14156     * specified amounts. Takes floats representing the amounts of change to apply to hue, saturation, and value; these
14157     * can be between -1f and 1f. Returns a float that can be used as a packed or encoded color with methods like
14158     * {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, or in various SquidLib classes like SparseLayers or
14159     * SquidLayers. The float is likely to be different than the result of {@link #toFloatBits()} unless hue,
14160     * saturation, and value are all 0. This won't modify the given SColor, nor will it allocate any objects.
14161     * <br>
14162     * The parameters this takes all specify additive changes for a color component, clamping the final values so they
14163     * can't go above 1 or below 0, with an exception for hue, which can rotate around if lower or higher hues would be
14164     * used. As an example, if you give this 0.4f for saturation, and the current color has saturation 0.7f, then the
14165     * resulting color will have 1f for saturation. If you gave this -0.1f for saturation and the current color still
14166     * has saturation 0.7f, then resulting color will have 0.6f for saturation.
14167     *
14168     * @param basis      a Color or SColor to use as the starting point; will not be modified itself
14169     * @param hue        -1f to 1f, the hue change that can be applied to the new float color
14170     * @param saturation -1f to 1f, the saturation change that can be applied to the new float color
14171     * @param value      -1f to 1f, the value/brightness change that can be applied to the new float color
14172     * @return a float encoding a variation of basis with the given changes
14173     */
14174    public static float toEditedFloat(Color basis, float hue, float saturation, float value) {
14175        return toEditedFloat(basis, hue, saturation, value, 0f);
14176    }
14177    /**
14178     * Gets a variation on this SColor as a packed float that has its hue, saturation, value, and opacity adjusted by
14179     * the specified amounts. Takes floats representing the amounts of change to apply to hue, saturation, value, and
14180     * opacity; these can be between -1f and 1f. Returns a float that can be used as a packed or encoded color with
14181     * methods like {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, or in various SquidLib classes like
14182     * SparseLayers or SquidLayers. The float is likely to be different than the result of {@link #toFloatBits()} unless
14183     * hue saturation, value, and opacity are all 0. This won't modify the current SColor, nor will it allocate any
14184     * objects.
14185     * <br>
14186     * The parameters this takes all specify additive changes for a color component, clamping the final values so they
14187     * can't go above 1 or below 0, with an exception for hue, which can rotate around if lower or higher hues would be
14188     * used. As an example, if you give this 0.4f for saturation, and the current color has saturation 0.7f, then the
14189     * resulting color will have 1f for saturation. If you gave this -0.1f for saturation and the current color still
14190     * has saturation 0.7f, then resulting color will have 0.6f for saturation.
14191     *
14192     * @param hue        -1f to 1f, the hue change that can be applied to the new float color
14193     * @param saturation -1f to 1f, the saturation change that can be applied to the new float color
14194     * @param value      -1f to 1f, the value/brightness change that can be applied to the new float color
14195     * @param opacity    -1f to 1f, the opacity/alpha change that can be applied to the new float color
14196     * @return a float encoding a color with the given properties
14197     */
14198    public float toEditedFloat(float hue, float saturation, float value, float opacity) {
14199        return toEditedFloat(this, hue, saturation, value, opacity);
14200    }
14201    /**
14202     * Gets a variation on the Color basis as a packed float that has its hue, saturation, value, and opacity adjusted
14203     * by the specified amounts. Takes floats representing the amounts of change to apply to hue, saturation, value, and
14204     * opacity; these can be between -1f and 1f. Returns a float that can be used as a packed or encoded color with
14205     * methods like {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, or in various SquidLib classes like
14206     * SparseLayers or SquidLayers. The float is likely to be different than the result of {@link #toFloatBits()} unless
14207     * hue saturation, value, and opacity are all 0. This won't modify the given SColor, nor will it allocate any
14208     * objects.
14209     * <br>
14210     * The parameters this takes all specify additive changes for a color component, clamping the final values so they
14211     * can't go above 1 or below 0, with an exception for hue, which can rotate around if lower or higher hues would be
14212     * used. As an example, if you give this 0.4f for saturation, and the current color has saturation 0.7f, then the
14213     * resulting color will have 1f for saturation. If you gave this -0.1f for saturation and the current color still
14214     * has saturation 0.7f, then resulting color will have 0.6f for saturation.
14215     *
14216     * @param hue        -1f to 1f, the hue change that can be applied to the new float color
14217     * @param saturation -1f to 1f, the saturation change that can be applied to the new float color
14218     * @param value      -1f to 1f, the value/brightness change that can be applied to the new float color
14219     * @param opacity    -1f to 1f, the opacity/alpha change that can be applied to the new float color
14220     * @return a float encoding a variation of basis with the given changes
14221     */
14222    public static float toEditedFloat(Color basis, float hue, float saturation, float value, float opacity) {
14223        final float h, s, r = basis.r, g = basis.g, b = basis.b;
14224        final float min = Math.min(Math.min(r, g), b);   //Min. value of RGB
14225        final float max = Math.max(Math.max(r, g), b);   //Max value of RGB, equivalent to value
14226        final float delta = max - min;                   //Delta RGB value
14227        if ( delta < 0.0039f )                           //This is a gray, no chroma...
14228        {
14229            s = 0f;
14230            h = 0f;
14231            hue = 1f;
14232        }
14233        else                                             //Chromatic data...
14234        {
14235            s = delta / max;
14236            final float rDelta = (((max - r) / 6f) + (delta / 2f)) / delta;
14237            final float gDelta = (((max - g) / 6f) + (delta / 2f)) / delta;
14238            final float bDelta = (((max - b) / 6f) + (delta / 2f)) / delta;
14239
14240            if      (r == max) h = (bDelta - gDelta + 1f) % 1f;
14241            else if (g == max) h = ((1f / 3f) + rDelta - bDelta + 1f) % 1f;
14242            else               h = ((2f / 3f) + gDelta - rDelta + 1f) % 1f;
14243        }
14244        saturation = MathUtils.clamp(s + saturation, 0f, 1f);
14245        value = MathUtils.clamp(max + value, 0f, 1f);
14246        opacity = MathUtils.clamp(basis.a + opacity, 0f, 1f);
14247
14248        if (saturation <= 0.0039f) {
14249            return floatGet(value, value, value, opacity);
14250        } else if (value <= 0.0039f) {
14251            return NumberTools.intBitsToFloat((int) (opacity * 254f) << 24 & 0xFE000000);
14252        } else {
14253            final float hu = ((h + hue + 6f) % 1f) * 6f;
14254            final int i = (int) hu;
14255            final float x = value * (1 - saturation);
14256            final float y = value * (1 - saturation * (hu - i));
14257            final float z = value * (1 - saturation * (1 - (hu - i)));
14258
14259            switch (i) {
14260                case 0:
14261                    return floatGet(value, z, x, opacity);
14262                case 1:
14263                    return floatGet(y, value, x, opacity);
14264                case 2:
14265                    return floatGet(x, value, z, opacity);
14266                case 3:
14267                    return floatGet(x, y, value, opacity);
14268                case 4:
14269                    return floatGet(z, x, value, opacity);
14270                default:
14271                    return floatGet(value, x, y, opacity);
14272            }
14273        }
14274    }
14275    /**
14276     * Gets a variation on the packed float color basis as another packed float that has its hue, saturation, value, and
14277     * opacity adjusted by the specified amounts. Takes floats representing the amounts of change to apply to hue,
14278     * saturation, value, and opacity; these can be between -1f and 1f. Returns a float that can be used as a packed or
14279     * encoded color with methods like {@link com.badlogic.gdx.graphics.g2d.Batch#setPackedColor(float)}, or in various
14280     * SquidLib classes like SparseLayers or SquidLayers. The float is likely to be different than the result of
14281     * {@link #toFloatBits()} unless hue saturation, value, and opacity are all 0. This won't allocate any objects.
14282     * <br>
14283     * The parameters this takes all specify additive changes for a color component, clamping the final values so they
14284     * can't go above 1 or below 0, with an exception for hue, which can rotate around if lower or higher hues would be
14285     * used. As an example, if you give this 0.4f for saturation, and the current color has saturation 0.7f, then the
14286     * resulting color will have 1f for saturation. If you gave this -0.1f for saturation and the current color again
14287     * has saturation 0.7f, then resulting color will have 0.6f for saturation.
14288     *
14289     * @param basis      a packed float color that will be used as the starting point to make the next color
14290     * @param hue        -1f to 1f, the hue change that can be applied to the new float color (not clamped, wraps)
14291     * @param saturation -1f to 1f, the saturation change that can be applied to the new float color
14292     * @param value      -1f to 1f, the value/brightness change that can be applied to the new float color
14293     * @param opacity    -1f to 1f, the opacity/alpha change that can be applied to the new float color
14294     * @return a float encoding a variation of basis with the given changes
14295     */
14296    public static float toEditedFloat(float basis, float hue, float saturation, float value, float opacity) {
14297        final int bits = NumberTools.floatToIntBits(basis);
14298        final float h, s,
14299                r = (bits & 0x000000ff) * 0x1.010102p-8f,
14300                g = (bits & 0x0000ff00) * 0x1.010102p-16f,
14301                b = (bits & 0x00ff0000) * 0x1.010102p-24f;
14302        final float min = Math.min(Math.min(r, g), b);   //Min. value of RGB
14303        final float max = Math.max(Math.max(r, g), b);   //Max value of RGB, equivalent to value
14304        final float delta = max - min;                   //Delta RGB value
14305        if ( delta < 0.0039f )                           //This is a gray, no chroma...
14306        {
14307            s = 0f;
14308            h = 0f;
14309            hue = 1f;
14310        }
14311        else                                             //Chromatic data...
14312        {
14313            s = delta / max;
14314            final float rDelta = (((max - r) / 6f) + (delta / 2f)) / delta;
14315            final float gDelta = (((max - g) / 6f) + (delta / 2f)) / delta;
14316            final float bDelta = (((max - b) / 6f) + (delta / 2f)) / delta;
14317
14318            if      (r == max) h = (bDelta - gDelta + 1f) % 1f;
14319            else if (g == max) h = ((1f / 3f) + rDelta - bDelta + 1f) % 1f;
14320            else               h = ((2f / 3f) + gDelta - rDelta + 1f) % 1f;
14321        }
14322        saturation = MathUtils.clamp(s + saturation, 0f, 1f);
14323        value = MathUtils.clamp(max + value, 0f, 1f);
14324        opacity = MathUtils.clamp(((bits & 0xfe000000) >>> 24) * 0x1.020408p-8f + opacity, 0f, 1f);
14325
14326        if (saturation <= 0.0039f) {
14327            return floatGet(value, value, value, opacity);
14328        } else if (value <= 0.0039f) {
14329            return NumberTools.intBitsToFloat((int) (opacity * 254f) << 24 & 0xFE000000);
14330        } else {
14331            final float hu = ((h + hue + 6f) % 1f) * 6f;
14332            final int i = (int) hu;
14333            final float x = value * (1 - saturation);
14334            final float y = value * (1 - saturation * (hu - i));
14335            final float z = value * (1 - saturation * (1 - (hu - i)));
14336
14337            switch (i) {
14338                case 0:
14339                    return floatGet(value, z, x, opacity);
14340                case 1:
14341                    return floatGet(y, value, x, opacity);
14342                case 2:
14343                    return floatGet(x, value, z, opacity);
14344                case 3:
14345                    return floatGet(x, y, value, opacity);
14346                case 4:
14347                    return floatGet(z, x, value, opacity);
14348                default:
14349                    return floatGet(value, x, y, opacity);
14350            }
14351        }
14352    }
14353
14354    /**
14355     * Interpolates from the packed float color start towards end by change. Both start and end should be packed colors,
14356     * as from {@link #toFloatBits()} or {@link #floatGet(float, float, float, float)}, and change can be between 0f
14357     * (keep start) and 1f (only use end). This is a good way to reduce allocations of temporary Colors.
14358     * @param start the starting color as a packed float
14359     * @param end the target color as a packed float
14360     * @param change how much to go from start toward end, as a float between 0 and 1; higher means closer to end
14361     * @return a packed float that represents a color between start and end
14362     */
14363    public static float lerpFloatColors(final float start, final float end, final float change) {
14364        final int s = NumberTools.floatToIntBits(start), e = NumberTools.floatToIntBits(end),
14365                rs = (s & 0xFF), gs = (s >>> 8) & 0xFF, bs = (s >>> 16) & 0xFF, as = (s >>> 24) & 254,
14366                re = (e & 0xFF), ge = (e >>> 8) & 0xFF, be = (e >>> 16) & 0xFF, ae = (e >>> 24) & 254;
14367        return NumberTools.intBitsToFloat(((int) (rs + change * (re - rs)) & 0xFF)
14368                | (((int) (gs + change * (ge - gs)) & 0xFF) << 8)
14369                | (((int) (bs + change * (be - bs)) & 0xFF) << 16)
14370                | (((int) (as + change * (ae - as)) & 0xFE) << 24));
14371    }
14372
14373    /**
14374     * Interpolates from the packed float color start towards end by change, but keeps the alpha of start and uses the
14375     * alpha of end as an extra factor that can affect how much to change. Both start and end should be packed colors,
14376     * as from {@link #toFloatBits()} or {@link #floatGet(float, float, float, float)}, and change can be between 0f
14377     * (keep start) and 1f (only use end). This is a good way to reduce allocations of temporary Colors.
14378     * @param start the starting color as a packed float; alpha will be preserved
14379     * @param end the target color as a packed float; alpha will not be used directly, and will instead be multiplied with change
14380     * @param change how much to go from start toward end, as a float between 0 and 1; higher means closer to end
14381     * @return a packed float that represents a color between start and end
14382     */
14383    public static float lerpFloatColorsBlended(final float start, final float end, float change) {
14384        final int s = NumberTools.floatToIntBits(start), e = NumberTools.floatToIntBits(end),
14385                rs = (s & 0xFF), gs = (s >>> 8) & 0xFF, bs = (s >>> 16) & 0xFF, as = s & 0xFE000000,
14386                re = (e & 0xFF), ge = (e >>> 8) & 0xFF, be = (e >>> 16) & 0xFF, ae = (e >>> 25);
14387        change *= ae * 0.007874016f;
14388        return NumberTools.intBitsToFloat(((int) (rs + change * (re - rs)) & 0xFF)
14389                | (((int) (gs + change * (ge - gs)) & 0xFF) << 8)
14390                | (((int) (bs + change * (be - bs)) & 0xFF) << 16)
14391                | as);
14392    }
14393
14394    /**
14395     * Interpolates from the packed float color start towards white by change. While change should be between 0f (return
14396     * start as-is) and 1f (return white), start should be a packed color, as from {@link #toFloatBits()} or
14397     * {@link #floatGet(float, float, float, float)}. This is a good way to reduce allocations of temporary Colors, and
14398     * is a little more efficient and clear than using {@link #lerpFloatColors(float, float, float)} to lerp towards
14399     * white. Unlike {@link #lerpFloatColors(float, float, float)}, this keeps the alpha of start as-is.
14400     * @param start the starting color as a packed float
14401     * @param change how much to go from start toward white, as a float between 0 and 1; higher means closer to end
14402     * @return a packed float that represents a color between start and white
14403     */
14404    public static float lightenFloat(final float start, final float change) {
14405        final int s = NumberTools.floatToIntBits(start),
14406                rs = (s & 0xFF), gs = (s >>> 8) & 0xFF, bs = (s >>> 16) & 0xFF, as = s & 0xFE000000;
14407        return NumberTools.intBitsToFloat(((int) (rs + change * (0xFF - rs)) & 0xFF)
14408                | (((int) (gs + change * (0xFF - gs)) & 0xFF) << 8)
14409                | (((int) (bs + change * (0xFF - bs)) & 0xFF) << 16)
14410                | as);
14411    }
14412
14413    /**
14414     * Interpolates from the libGDX Color start towards white by change, returning a packed float color. While change
14415     * should be between 0f (return  start as-is) and 1f (return white), start should be a libGDX Color or SColor. This
14416     * is a good way to reduce allocations of temporary Colors; this keeps the alpha of start as-is.
14417     * @param start the starting color as a packed float
14418     * @param change how much to go from start toward white, as a float between 0 and 1; higher means closer to end
14419     * @return a packed float that represents a color between start and white
14420     */
14421    public static float lightenFloat(final Color start, final float change) {
14422        return floatGet(
14423                start.r + change * (1f - start.r),
14424                start.g + change * (1f - start.g),
14425                start.b + change * (1f - start.b),
14426                start.a);
14427    }
14428
14429    /**
14430     * Interpolates from the packed float color start towards black by change. While change should be between 0f (return
14431     * start as-is) and 1f (return black), start should be a packed color, as from {@link #toFloatBits()} or
14432     * {@link #floatGet(float, float, float, float)}. This is a good way to reduce allocations of temporary Colors, and
14433     * is a little more efficient and clear than using {@link #lerpFloatColors(float, float, float)} to lerp towards
14434     * black. Unlike {@link #lerpFloatColors(float, float, float)}, this keeps the alpha of start as-is.
14435     * @param start the starting color as a packed float
14436     * @param change how much to go from start toward black, as a float between 0 and 1; higher means closer to end
14437     * @return a packed float that represents a color between start and black
14438     */
14439    public static float darkenFloat(final float start, float change) {
14440        final int s = NumberTools.floatToIntBits(start),
14441                rs = (s & 0xFF), gs = (s >>> 8) & 0xFF, bs = (s >>> 16) & 0xFF, as = s & 0xFE000000;
14442        change = 1f - change;
14443        return NumberTools.intBitsToFloat(((int) (rs * change) & 0xFF)
14444                | (((int) (gs * change) & 0xFF) << 8)
14445                | (((int) (bs * change) & 0xFF) << 16)
14446                | as);
14447    }
14448    
14449    /**
14450     * Interpolates from the libGDX Color start towards black by change, returning a packed float color. While change
14451     * should be between 0f (return  start as-is) and 1f (return black), start should be a libGDX Color or SColor. This
14452     * is a good way to reduce allocations of temporary Colors; this keeps the alpha of start as-is.
14453     * @param start the starting color as a packed float
14454     * @param change how much to go from start toward black, as a float between 0 and 1; higher means closer to end
14455     * @return a packed float that represents a color between start and black
14456     */
14457    public static float darkenFloat(final Color start, final float change) {
14458        final float c = 1f - change;
14459        return floatGet(
14460                start.r * c,
14461                start.g * c,
14462                start.b * c,
14463                start.a);
14464    }
14465
14466    /**
14467     * Similar to {@link #colorLighting(double[][], float)}, but meant for an initial state before you have FOV or color
14468     * data to fill the lighting with, and you just need a map of a specific size that starts with no lighting. This
14469     * will produce a map that has white as the lighting color for all cells, but no cells will be lit. It is likely you
14470     * will want to pass this as basis to {@link #mixColoredLighting(float[][][], float[][][])}.
14471     *
14472     * @param width  the width of the colored lighting area to generate
14473     * @param height the height of the colored lighting area to generate
14474     * @return the colored lighting 3D float array, with no cells lit and all colors set to white
14475     */
14476    public static float[][][] blankColoredLighting(int width, int height) {
14477        return new float[][][]
14478                {
14479                        new float[width][height],
14480                        ArrayTools.fill(FLOAT_WHITE, width, height)
14481                };
14482    }
14483
14484    /**
14485     * Removes any information from the given 3D float array for colored lighting, making it as if it had just been
14486     * built by {@link #blankColoredLighting(int, int)}, but without any allocations. This blank state is different from
14487     * being simply filled with all 0 or all default values; the two sub-arrays receive different contents (the one that
14488     * stores brightness is all 0, the one that stores colors will be filled with the float that encodes white).
14489     *
14490     * @param original a 3d float array used for colored lighting; will be modified to be completely blank
14491     * @return original, after modification
14492     */
14493    public static float[][][] eraseColoredLighting(float[][][] original) {
14494        ArrayTools.fill(original[0], 0f);
14495        ArrayTools.fill(original[1], FLOAT_WHITE);
14496        return original;
14497    }
14498
14499    /**
14500     * Given a 2D double array that was probably produced by FOV and a packed color as a float, this gets a 3D float
14501     * array (really just two same-size 2D float arrays in one parent array) that stores the brightnesses in the first
14502     * 2D array element and the colors in the second 2D array element (using the given color if a cell has a value in
14503     * lights that is greater than 0, or defaulting to white if the cell is unlit). This has little use on its own, and
14504     * is meant to be given to {@link #mixColoredLighting(float[][][], float[][][])} so that multiple colors of lights
14505     * can be mixed.
14506     *
14507     * @param lights a 2D double array that should probably come from FOV
14508     * @param color  a packed float as produced by {@link #floatGet(float, float, float, float)}
14509     * @return a 3D float array containing two 2D sub-arrays, the first holding brightness and the second holding color
14510     */
14511    public static float[][][] colorLighting(double[][] lights, float color) {
14512        return colorLightingInto(new float[2][lights.length][lights[0].length], lights, color);
14513    }
14514
14515    /**
14516     * Given a 2D double array that was probably produced by FOV and a packed color as a float, this assigns into reuse
14517     * a 3D float array (really just two same-size 2D float arrays in one parent array) that stores the brightnesses in
14518     * the first 2D array element and the colors in the second 2D array element (using the given color if a cell has a
14519     * value in lights that is greater than 0, or defaulting to white if the cell is unlit). This method requires that
14520     * reuse has length of at least 2, where elements 0 and 1 must be 2D arrays of identical dimensions; this is the
14521     * format that {@link #colorLighting(double[][], float)} produces. This has little use on its own, and  is meant to
14522     * be given to {@link #mixColoredLighting(float[][][], float[][][])} so that multiple colors of lights can be mixed.
14523     *
14524     * @param reuse  a 3D float array of the exact format produced by {@link #colorLighting(double[][], float)} or
14525     *               {@link #mixColoredLighting(float[][][], float[][][])}, and must have length 2; will be modified!
14526     * @param lights a 2D double array that should probably come from FOV
14527     * @param color  a packed float as produced by {@link #floatGet(float, float, float, float)}
14528     * @return reuse after modification
14529     */
14530    public static float[][][] colorLightingInto(float[][][] reuse, double[][] lights, float color) {
14531        for (int x = 0; x < lights.length; x++) {
14532            for (int y = 0; y < lights[0].length; y++) {
14533                reuse[1][x][y] = ((reuse[0][x][y] = (float) lights[x][y]) > 0f)
14534                        ? color
14535                        : FLOAT_WHITE;
14536            }
14537        }
14538        return reuse;
14539    }
14540
14541    /**
14542     * Adds two 3D arrays produced by {@link #colorLighting(double[][], float)} or this method and modifies the basis
14543     * parameter so it contains the combined brightnesses and colors of basis and other, in a pair of 2D arrays.
14544     *
14545     * @param basis a 3D float array holding two 2D sub-arrays, as produced by {@link #colorLighting(double[][], float)};
14546     *              will be modified to contain its existing contents mixed with other's contents 
14547     * @param other a 3D float array holding two 2D sub-arrays, as produced by {@link #colorLighting(double[][], float)};
14548     *              will not be modified
14549     * @return basis, after modification; it can be passed to this method as basis again
14550     */
14551    public static float[][][] mixColoredLighting(float[][][] basis, float[][][] other) {
14552        int w = basis[0].length, h = basis[0][0].length, w2 = other[0].length, h2 = other[0][0].length;
14553        for (int x = 0; x < w && x < w2; x++) {
14554            for (int y = 0; y < h && y < h2; y++) {
14555                basis[1][x][y] = (basis[1][x][y] == FLOAT_WHITE)
14556                        ? other[1][x][y]
14557                        : (other[1][x][y] == FLOAT_WHITE)
14558                        ? basis[1][x][y]
14559                        : lerpFloatColors(basis[1][x][y], other[1][x][y], (other[0][x][y] - basis[0][x][y]) * 0.5f + 0.5f);
14560                basis[0][x][y] = Math.min(1.0f, basis[0][x][y] + other[0][x][y]);
14561            }
14562        }
14563        return basis;
14564    }
14565
14566
14567    @Override
14568    public String toString() {
14569        return name;
14570    }
14571
14572    public String getName() {
14573        return name;
14574    }
14575
14576    @Override
14577    public boolean equals(Object other) {
14578        return (other instanceof Color) && toIntBits() == ((Color) other).toIntBits();
14579    }
14580
14581    @Override
14582    public int hashCode() {
14583        return (155 + CrossHash.hash(name)) * 31 ^ toIntBits();
14584    }
14585}