001package squidpony.squidgrid.gui.gdx; 002 003import com.badlogic.gdx.graphics.Color; 004 005/** 006 * Allows for the use of custom colors with custom names. 007 * 008 * These colors are comparable for equality but the ordering of them is based on 009 * their hex values. 010 * 011 * Has some built in palettes available as SColor arrays. 012 * 013 * @author Eben Howard - http://squidpony.com - howard@squidpony.com 014 * 015 * @see SquidColorCenter Another way to manage colors if you don't want to use preallocated instances. 016 */ 017public class SColor extends Color { 018 019 private String name = "Unnamed"; 020 /** 021 * Color constant<PRE> 022 *<font style="background-color: #f0f8ff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #f0f8ff; color: #000000"> @ </font> 023 *<font style="background-color: #f0f8ff; color: #f0f8ff"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888; color: #f0f8ff"> @ </font><font style="background-color: #ffffff; color: #f0f8ff"> @ </font><font style="background-color: #f0f8ff; color: #888888"> @ </font> 024 *<font style="background-color: #f0f8ff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #f0f8ff; color: #ffffff"> @ </font> 025 * 026 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 027 *<font style="background-color: #ff0000; color: #f0f8ff"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00; color: #f0f8ff"> @ </font><font style="background-color: #0000ff; color: #f0f8ff"> @ </font><font style="background-color: #964b00; color: #f0f8ff"> @ </font> 028 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 029 */ 030 public static final SColor ALICE_BLUE = new SColor(0xf0f8ff, "Alice Blue"); 031 /** 032 * Color constant<PRE> 033 *<font style="background-color: #E32636; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E32636; color: #000000"> @ </font> 034 *<font style="background-color: #E32636; color: #E32636"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888; color: #E32636"> @ </font><font style="background-color: #ffffff; color: #E32636"> @ </font><font style="background-color: #E32636; color: #888888"> @ </font> 035 *<font style="background-color: #E32636; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E32636; color: #ffffff"> @ </font> 036 * 037 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 038 *<font style="background-color: #ff0000; color: #E32636"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00; color: #E32636"> @ </font><font style="background-color: #0000ff; color: #E32636"> @ </font><font style="background-color: #964b00; color: #E32636"> @ </font> 039 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 040 */ 041 public static final SColor ALIZARIN = new SColor(0xE32636, "Alizarin"); 042 /** 043 * Color constant<PRE> 044 *<font style="background-color: #6A432D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6A432D; color: #000000"> @ </font> 045 *<font style="background-color: #6A432D; color: #6A432D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6A432D; color: #888888"> @ </font> 046 *<font style="background-color: #6A432D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6A432D; color: #ffffff"> @ </font> 047 * 048 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 049 *<font style="background-color: #ff0000; color: #6A432D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 050 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 051 */ 052 public static final SColor ALOEWOOD = new SColor(0x6A432D, "Aloewood"); 053 /** 054 * Color constant<PRE> 055 *<font style="background-color: #5A6457; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5A6457; color: #000000"> @ </font> 056 *<font style="background-color: #5A6457; color: #5A6457"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5A6457; color: #888888"> @ </font> 057 *<font style="background-color: #5A6457; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5A6457; color: #ffffff"> @ </font> 058 * 059 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 060 *<font style="background-color: #ff0000; color: #5A6457"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 061 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 062 */ 063 public static final SColor ALOEWOOD_BROWN = new SColor(0x5A6457, "Aloewood Brown"); 064 /** 065 * Color constant<PRE> 066 *<font style="background-color: #E52B50; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E52B50; color: #000000"> @ </font> 067 *<font style="background-color: #E52B50; color: #000000"> </font><font style="background-color: #000000; color: #E52B50"> @ </font><font style="background-color: #888888; color: #E52B50"> @ </font><font style="background-color: #ffffff; color: #E52B50"> @ </font><font style="background-color: #E52B50; color: #888888"> @ </font> 068 *<font style="background-color: #E52B50; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E52B50; color: #ffffff"> @ </font> 069 * 070 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 071 *<font style="background-color: #ff0000; color: #E52B50"> @ </font><font style="background-color: #ffff00; color: #E52B50"> @ </font><font style="background-color: #00ff00; color: #E52B50"> @ </font><font style="background-color: #0000ff; color: #E52B50"> @ </font><font style="background-color: #964b00; color: #E52B50"> @ </font> 072 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 073 */ 074 public static final SColor AMARANTH = new SColor(0xE52B50, "Amaranth"); 075 /** 076 * Color constant<PRE> 077 *<font style="background-color: #FFBF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFBF00; color: #000000"> @ </font> 078 *<font style="background-color: #FFBF00; color: #000000"> </font><font style="background-color: #000000; color: #FFBF00"> @ </font><font style="background-color: #888888; color: #FFBF00"> @ </font><font style="background-color: #ffffff; color: #FFBF00"> @ </font><font style="background-color: #FFBF00; color: #888888"> @ </font> 079 *<font style="background-color: #FFBF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFBF00; color: #ffffff"> @ </font> 080 * 081 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 082 *<font style="background-color: #ff0000; color: #FFBF00"> @ </font><font style="background-color: #ffff00; color: #FFBF00"> @ </font><font style="background-color: #00ff00; color: #FFBF00"> @ </font><font style="background-color: #0000ff; color: #FFBF00"> @ </font><font style="background-color: #964b00; color: #FFBF00"> @ </font> 083 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 084 */ 085 public static final SColor AMBER = new SColor(0xFFBF00, "Amber"); 086 /** 087 * Color constant<PRE> 088 *<font style="background-color: #CA6924; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CA6924; color: #000000"> @ </font> 089 *<font style="background-color: #CA6924; color: #CA6924"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CA6924; color: #888888"> @ </font> 090 *<font style="background-color: #CA6924; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CA6924; color: #ffffff"> @ </font> 091 * 092 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 093 *<font style="background-color: #ff0000; color: #CA6924"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 094 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 095 */ 096 public static final SColor AMBER_DYE = new SColor(0xCA6924, "Amber Dye"); 097 /** 098 * Color constant<PRE> 099 *<font style="background-color: #9966CC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9966CC; color: #000000"> @ </font> 100 *<font style="background-color: #9966CC; color: #000000"> </font><font style="background-color: #000000; color: #9966CC"> @ </font><font style="background-color: #888888; color: #9966CC"> @ </font><font style="background-color: #ffffff; color: #9966CC"> @ </font><font style="background-color: #9966CC; color: #888888"> @ </font> 101 *<font style="background-color: #9966CC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9966CC; color: #ffffff"> @ </font> 102 * 103 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 104 *<font style="background-color: #ff0000; color: #9966CC"> @ </font><font style="background-color: #ffff00; color: #9966CC"> @ </font><font style="background-color: #00ff00; color: #9966CC"> @ </font><font style="background-color: #0000ff; color: #9966CC"> @ </font><font style="background-color: #964b00; color: #9966CC"> @ </font> 105 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 106 */ 107 public static final SColor AMETHYST = new SColor(0x9966CC, "Amethyst"); 108 /** 109 * Color constant<PRE> 110 *<font style="background-color: #F3C13A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F3C13A; color: #000000"> @ </font> 111 *<font style="background-color: #F3C13A; color: #F3C13A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F3C13A; color: #888888"> @ </font> 112 *<font style="background-color: #F3C13A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F3C13A; color: #ffffff"> @ </font> 113 * 114 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 115 *<font style="background-color: #ff0000; color: #F3C13A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 116 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 117 */ 118 public static final SColor AMUR_CORK_TREE = new SColor(0xF3C13A, "Amur Cork Tree"); 119 /** 120 * Color constant<PRE> 121 *<font style="background-color: #FBCEB1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FBCEB1; color: #000000"> @ </font> 122 *<font style="background-color: #FBCEB1; color: #000000"> </font><font style="background-color: #000000; color: #FBCEB1"> @ </font><font style="background-color: #888888; color: #FBCEB1"> @ </font><font style="background-color: #ffffff; color: #FBCEB1"> @ </font><font style="background-color: #FBCEB1; color: #888888"> @ </font> 123 *<font style="background-color: #FBCEB1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FBCEB1; color: #ffffff"> @ </font> 124 * 125 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 126 *<font style="background-color: #ff0000; color: #FBCEB1"> @ </font><font style="background-color: #ffff00; color: #FBCEB1"> @ </font><font style="background-color: #00ff00; color: #FBCEB1"> @ </font><font style="background-color: #0000ff; color: #FBCEB1"> @ </font><font style="background-color: #964b00; color: #FBCEB1"> @ </font> 127 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 128 */ 129 public static final SColor APRICOT = new SColor(0xFBCEB1, "Apricot"); 130 /** 131 * Duplicated as CYAN for backwards compatability Color constant<PRE> 132 *<font style="background-color: #00FFFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00FFFF; color: #000000"> @ </font> 133 *<font style="background-color: #00FFFF; color: #000000"> </font><font style="background-color: #000000; color: #00FFFF"> @ </font><font style="background-color: #888888; color: #00FFFF"> @ </font><font style="background-color: #ffffff; color: #00FFFF"> @ </font><font style="background-color: #00FFFF; color: #888888"> @ </font> 134 *<font style="background-color: #00FFFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00FFFF; color: #ffffff"> @ </font> 135 * 136 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 137 *<font style="background-color: #ff0000; color: #00FFFF"> @ </font><font style="background-color: #ffff00; color: #00FFFF"> @ </font><font style="background-color: #00ff00; color: #00FFFF"> @ </font><font style="background-color: #0000ff; color: #00FFFF"> @ </font><font style="background-color: #964b00; color: #00FFFF"> @ </font> 138 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 139 */ 140 public static final SColor AQUA = new SColor(0x00FFFF, "Aqua"); 141 /** 142 * Color constant<PRE> 143 *<font style="background-color: #7FFFD4; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7FFFD4; color: #000000"> @ </font> 144 *<font style="background-color: #7FFFD4; color: #000000"> </font><font style="background-color: #000000; color: #7FFFD4"> @ </font><font style="background-color: #888888; color: #7FFFD4"> @ </font><font style="background-color: #ffffff; color: #7FFFD4"> @ </font><font style="background-color: #7FFFD4; color: #888888"> @ </font> 145 *<font style="background-color: #7FFFD4; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7FFFD4; color: #ffffff"> @ </font> 146 * 147 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 148 *<font style="background-color: #ff0000; color: #7FFFD4"> @ </font><font style="background-color: #ffff00; color: #7FFFD4"> @ </font><font style="background-color: #00ff00; color: #7FFFD4"> @ </font><font style="background-color: #0000ff; color: #7FFFD4"> @ </font><font style="background-color: #964b00; color: #7FFFD4"> @ </font> 149 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 150 */ 151 public static final SColor AQUAMARINE = new SColor(0x7FFFD4, "Aquamarine"); 152 /** 153 * Color constant<PRE> 154 *<font style="background-color: #4B5320; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4B5320; color: #000000"> @ </font> 155 *<font style="background-color: #4B5320; color: #000000"> </font><font style="background-color: #000000; color: #4B5320"> @ </font><font style="background-color: #888888; color: #4B5320"> @ </font><font style="background-color: #ffffff; color: #4B5320"> @ </font><font style="background-color: #4B5320; color: #888888"> @ </font> 156 *<font style="background-color: #4B5320; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4B5320; color: #ffffff"> @ </font> 157 * 158 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 159 *<font style="background-color: #ff0000; color: #4B5320"> @ </font><font style="background-color: #ffff00; color: #4B5320"> @ </font><font style="background-color: #00ff00; color: #4B5320"> @ </font><font style="background-color: #0000ff; color: #4B5320"> @ </font><font style="background-color: #964b00; color: #4B5320"> @ </font> 160 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 161 */ 162 public static final SColor ARMY_GREEN = new SColor(0x4B5320, "Army Green"); 163 /** 164 * Color constant<PRE> 165 *<font style="background-color: #7BA05B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7BA05B; color: #000000"> @ </font> 166 *<font style="background-color: #7BA05B; color: #000000"> </font><font style="background-color: #000000; color: #7BA05B"> @ </font><font style="background-color: #888888; color: #7BA05B"> @ </font><font style="background-color: #ffffff; color: #7BA05B"> @ </font><font style="background-color: #7BA05B; color: #888888"> @ </font> 167 *<font style="background-color: #7BA05B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7BA05B; color: #ffffff"> @ </font> 168 * 169 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 170 *<font style="background-color: #ff0000; color: #7BA05B"> @ </font><font style="background-color: #ffff00; color: #7BA05B"> @ </font><font style="background-color: #00ff00; color: #7BA05B"> @ </font><font style="background-color: #0000ff; color: #7BA05B"> @ </font><font style="background-color: #964b00; color: #7BA05B"> @ </font> 171 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 172 */ 173 public static final SColor ASPARAGUS = new SColor(0x7BA05B, "Asparagus"); 174 /** 175 * Color constant<PRE> 176 *<font style="background-color: #FF9966; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF9966; color: #000000"> @ </font> 177 *<font style="background-color: #FF9966; color: #000000"> </font><font style="background-color: #000000; color: #FF9966"> @ </font><font style="background-color: #888888; color: #FF9966"> @ </font><font style="background-color: #ffffff; color: #FF9966"> @ </font><font style="background-color: #FF9966; color: #888888"> @ </font> 178 *<font style="background-color: #FF9966; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF9966; color: #ffffff"> @ </font> 179 * 180 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 181 *<font style="background-color: #ff0000; color: #FF9966"> @ </font><font style="background-color: #ffff00; color: #FF9966"> @ </font><font style="background-color: #00ff00; color: #FF9966"> @ </font><font style="background-color: #0000ff; color: #FF9966"> @ </font><font style="background-color: #964b00; color: #FF9966"> @ </font> 182 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 183 */ 184 public static final SColor ATOMIC_TANGERINE = new SColor(0xFF9966, "Atomic Tangerine"); 185 /** 186 * Color constant<PRE> 187 *<font style="background-color: #6D351A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6D351A; color: #000000"> @ </font> 188 *<font style="background-color: #6D351A; color: #000000"> </font><font style="background-color: #000000; color: #6D351A"> @ </font><font style="background-color: #888888; color: #6D351A"> @ </font><font style="background-color: #ffffff; color: #6D351A"> @ </font><font style="background-color: #6D351A; color: #888888"> @ </font> 189 *<font style="background-color: #6D351A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6D351A; color: #ffffff"> @ </font> 190 * 191 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 192 *<font style="background-color: #ff0000; color: #6D351A"> @ </font><font style="background-color: #ffff00; color: #6D351A"> @ </font><font style="background-color: #00ff00; color: #6D351A"> @ </font><font style="background-color: #0000ff; color: #6D351A"> @ </font><font style="background-color: #964b00; color: #6D351A"> @ </font> 193 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 194 */ 195 public static final SColor AUBURN = new SColor(0x6D351A, "Auburn"); 196 /** 197 * Color constant<PRE> 198 *<font style="background-color: #007FFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #007FFF; color: #000000"> @ </font> 199 *<font style="background-color: #007FFF; color: #007FFF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #007FFF; color: #888888"> @ </font> 200 *<font style="background-color: #007FFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #007FFF; color: #ffffff"> @ </font> 201 * 202 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 203 *<font style="background-color: #ff0000; color: #007FFF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 204 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 205 */ 206 public static final SColor AZUL = new SColor(0x007FFF, "Azul"); 207 /** 208 * Color constant<PRE> 209 *<font style="background-color: #F0FFFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F0FFFF; color: #000000"> @ </font> 210 *<font style="background-color: #F0FFFF; color: #F0FFFF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F0FFFF; color: #888888"> @ </font> 211 *<font style="background-color: #F0FFFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F0FFFF; color: #ffffff"> @ </font> 212 * 213 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 214 *<font style="background-color: #ff0000; color: #F0FFFF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 215 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 216 */ 217 public static final SColor AZURE = new SColor(0xF0FFFF, "Azure"); 218 /** 219 * Color constant<PRE> 220 *<font style="background-color: #E0FFFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E0FFFF; color: #000000"> @ </font> 221 *<font style="background-color: #E0FFFF; color: #E0FFFF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E0FFFF; color: #888888"> @ </font> 222 *<font style="background-color: #E0FFFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E0FFFF; color: #ffffff"> @ </font> 223 * 224 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 225 *<font style="background-color: #ff0000; color: #E0FFFF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 226 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 227 */ 228 public static final SColor BABY_BLUE = new SColor(0xE0FFFF, "Baby Blue"); 229 /** 230 * Color constant<PRE> 231 *<font style="background-color: #857C55; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #857C55; color: #000000"> @ </font> 232 *<font style="background-color: #857C55; color: #857C55"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #857C55; color: #888888"> @ </font> 233 *<font style="background-color: #857C55; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #857C55; color: #ffffff"> @ </font> 234 * 235 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 236 *<font style="background-color: #ff0000; color: #857C55"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 237 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 238 */ 239 public static final SColor BAIKO_BROWN = new SColor(0x857C55, "Baiko Brown"); 240 /** 241 * Color constant<PRE> 242 *<font style="background-color: #F5F5DC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F5F5DC; color: #000000"> @ </font> 243 *<font style="background-color: #F5F5DC; color: #F5F5DC"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F5F5DC; color: #888888"> @ </font> 244 *<font style="background-color: #F5F5DC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F5F5DC; color: #ffffff"> @ </font> 245 * 246 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 247 *<font style="background-color: #ff0000; color: #F5F5DC"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 248 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 249 */ 250 public static final SColor BEIGE = new SColor(0xF5F5DC, "Beige"); 251 /** 252 * Color constant<PRE> 253 *<font style="background-color: #5D3F6A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5D3F6A; color: #000000"> @ </font> 254 *<font style="background-color: #5D3F6A; color: #5D3F6A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5D3F6A; color: #888888"> @ </font> 255 *<font style="background-color: #5D3F6A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5D3F6A; color: #ffffff"> @ </font> 256 * 257 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 258 *<font style="background-color: #ff0000; color: #5D3F6A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 259 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 260 */ 261 public static final SColor BELLFLOWER = new SColor(0x5D3F6A, "Bellflower"); 262 /** 263 * Color constant<PRE> 264 *<font style="background-color: #913225; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #913225; color: #000000"> @ </font> 265 *<font style="background-color: #913225; color: #913225"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #913225; color: #888888"> @ </font> 266 *<font style="background-color: #913225; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #913225; color: #ffffff"> @ </font> 267 * 268 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 269 *<font style="background-color: #ff0000; color: #913225"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 270 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 271 */ 272 public static final SColor BENI_DYE = new SColor(0x913225, "Beni Dye"); 273 /** 274 * Color constant<PRE> 275 *<font style="background-color: #352925; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #352925; color: #000000"> @ </font> 276 *<font style="background-color: #352925; color: #352925"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #352925; color: #888888"> @ </font> 277 *<font style="background-color: #352925; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #352925; color: #ffffff"> @ </font> 278 * 279 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 280 *<font style="background-color: #ff0000; color: #352925"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 281 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 282 */ 283 public static final SColor BETEL_NUT_DYE = new SColor(0x352925, "Betel Nut Dye"); 284 /** 285 * Color constant<PRE> 286 *<font style="background-color: #B14A30; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B14A30; color: #000000"> @ </font> 287 *<font style="background-color: #B14A30; color: #B14A30"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B14A30; color: #888888"> @ </font> 288 *<font style="background-color: #B14A30; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B14A30; color: #ffffff"> @ </font> 289 * 290 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 291 *<font style="background-color: #ff0000; color: #B14A30"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 292 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 293 */ 294 public static final SColor BIRCH_BROWN = new SColor(0xB14A30, "Birch Brown"); 295 /** 296 * Color constant<PRE> 297 *<font style="background-color: #3D2B1F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3D2B1F; color: #000000"> @ </font> 298 *<font style="background-color: #3D2B1F; color: #3D2B1F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #3D2B1F; color: #888888"> @ </font> 299 *<font style="background-color: #3D2B1F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3D2B1F; color: #ffffff"> @ </font> 300 * 301 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 302 *<font style="background-color: #ff0000; color: #3D2B1F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 303 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 304 */ 305 public static final SColor BISTRE = new SColor(0x3D2B1F, "Bistre"); 306 /** 307 * Color constant<PRE> 308 *<font style="background-color: #000000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> @ </font> 309 *<font style="background-color: #000000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> @ </font><font style="background-color: #888888; color: #000000"> @ </font><font style="background-color: #ffffff; color: #000000"> @ </font><font style="background-color: #000000; color: #888888"> @ </font> 310 *<font style="background-color: #000000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #000000; color: #ffffff"> @ </font> 311 * 312 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font> 313 *<font style="background-color: #ff0000; color: #000000"> @ </font><font style="background-color: #ffff00; color: #000000"> @ </font><font style="background-color: #00ff00; color: #000000"> @ </font><font style="background-color: #0000ff; color: #000000"> @ </font><font style="background-color: #964B00; color: #000000"> @ </font> 314 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font></PRE> 315 */ 316 public static final SColor BLACK = new SColor(0x000000, "Black"); 317 /** 318 * Color constant<PRE> 319 *<font style="background-color: #252321; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #252321; color: #000000"> @ </font> 320 *<font style="background-color: #252321; color: #252321"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #252321; color: #888888"> @ </font> 321 *<font style="background-color: #252321; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #252321; color: #ffffff"> @ </font> 322 * 323 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 324 *<font style="background-color: #ff0000; color: #252321"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 325 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 326 */ 327 public static final SColor BLACK_CHESTNUT_OAK = new SColor(0x252321, "Black Chestnut Oak"); 328 /** 329 * Color constant<PRE> 330 *<font style="background-color: #171412; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #171412; color: #000000"> @ </font> 331 *<font style="background-color: #171412; color: #171412"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #171412; color: #888888"> @ </font> 332 *<font style="background-color: #171412; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #171412; color: #ffffff"> @ </font> 333 * 334 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 335 *<font style="background-color: #ff0000; color: #171412"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 336 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 337 */ 338 public static final SColor BLACK_DYE = new SColor(0x171412, "Black Dye"); 339 /** 340 * Color constant<PRE> 341 *<font style="background-color: #351E1C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #351E1C; color: #000000"> @ </font> 342 *<font style="background-color: #351E1C; color: #351E1C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #351E1C; color: #888888"> @ </font> 343 *<font style="background-color: #351E1C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #351E1C; color: #ffffff"> @ </font> 344 * 345 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 346 *<font style="background-color: #ff0000; color: #351E1C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 347 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 348 */ 349 public static final SColor BLACK_KITE = new SColor(0x351E1C, "Black Kite"); 350 /** 351 * Color constant<PRE> 352 *<font style="background-color: #CF3A24; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CF3A24; color: #000000"> @ </font> 353 *<font style="background-color: #CF3A24; color: #CF3A24"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CF3A24; color: #888888"> @ </font> 354 *<font style="background-color: #CF3A24; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CF3A24; color: #ffffff"> @ </font> 355 * 356 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 357 *<font style="background-color: #ff0000; color: #CF3A24"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 358 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 359 */ 360 public static final SColor BLOOD = new SColor(0xCF3A24, "Blood"); 361 /** 362 * Color constant<PRE> 363 *<font style="background-color: #F35336; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F35336; color: #000000"> @ </font> 364 *<font style="background-color: #F35336; color: #F35336"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F35336; color: #888888"> @ </font> 365 *<font style="background-color: #F35336; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F35336; color: #ffffff"> @ </font> 366 * 367 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 368 *<font style="background-color: #ff0000; color: #F35336"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 369 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 370 */ 371 public static final SColor BLOOD_RED = new SColor(0xF35336, "Blood Red"); 372 /** 373 * Color constant<PRE> 374 *<font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> @ </font> 375 *<font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #000000; color: #0000ff"> @ </font><font style="background-color: #888888; color: #0000ff"> @ </font><font style="background-color: #ffffff; color: #0000ff"> @ </font><font style="background-color: #0000ff; color: #888888"> @ </font> 376 *<font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0000ff; color: #ffffff"> @ </font> 377 * 378 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font> 379 *<font style="background-color: #ff0000; color: #0000ff"> @ </font><font style="background-color: #ffff00; color: #0000ff"> @ </font><font style="background-color: #00ff00; color: #0000ff"> @ </font><font style="background-color: #0000ff; color: #0000ff"> @ </font><font style="background-color: #964B00; color: #0000ff"> @ </font> 380 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font></PRE> 381 */ 382 public static final SColor BLUE = new SColor(0x0000ff, "Blue"); 383 /** 384 * Color constant<PRE> 385 *<font style="background-color: #62693B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #62693B; color: #000000"> @ </font> 386 *<font style="background-color: #62693B; color: #62693B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #62693B; color: #888888"> @ </font> 387 *<font style="background-color: #62693B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #62693B; color: #ffffff"> @ </font> 388 * 389 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 390 *<font style="background-color: #ff0000; color: #62693B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 391 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 392 */ 393 public static final SColor BLUE_BLACK_CRAYFISH = new SColor(0x62693B, "Blue Black Crayfish"); 394 /** 395 * Color constant<PRE> 396 *<font style="background-color: #00DDDD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00DDDD; color: #000000"> @ </font> 397 *<font style="background-color: #00DDDD; color: #00DDDD"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #00DDDD; color: #888888"> @ </font> 398 *<font style="background-color: #00DDDD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00DDDD; color: #ffffff"> @ </font> 399 * 400 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 401 *<font style="background-color: #ff0000; color: #00DDDD"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 402 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 403 */ 404 public static final SColor BLUE_GREEN = new SColor(0x00DDDD, "Blue Green"); 405 /** 406 * Color constant<PRE> 407 *<font style="background-color: #3A6960; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3A6960; color: #000000"> @ </font> 408 *<font style="background-color: #3A6960; color: #3A6960"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #3A6960; color: #888888"> @ </font> 409 *<font style="background-color: #3A6960; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3A6960; color: #ffffff"> @ </font> 410 * 411 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 412 *<font style="background-color: #ff0000; color: #3A6960"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 413 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 414 */ 415 public static final SColor BLUE_GREEN_DYE = new SColor(0x3A6960, "Blue Green Dye"); 416 /** 417 * Color constant<PRE> 418 *<font style="background-color: #8A2BE2; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8A2BE2; color: #000000"> @ </font> 419 *<font style="background-color: #8A2BE2; color: #8A2BE2"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8A2BE2; color: #888888"> @ </font> 420 *<font style="background-color: #8A2BE2; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8A2BE2; color: #ffffff"> @ </font> 421 * 422 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 423 *<font style="background-color: #ff0000; color: #8A2BE2"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 424 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 425 */ 426 public static final SColor BLUE_VIOLET = new SColor(0x8A2BE2, "Blue Violet"); 427 /** 428 * Color constant<PRE> 429 *<font style="background-color: #2B2028; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2B2028; color: #000000"> @ </font> 430 *<font style="background-color: #2B2028; color: #2B2028"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2B2028; color: #888888"> @ </font> 431 *<font style="background-color: #2B2028; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2B2028; color: #ffffff"> @ </font> 432 * 433 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 434 *<font style="background-color: #ff0000; color: #2B2028"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 435 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 436 */ 437 public static final SColor BLUE_VIOLET_DYE = new SColor(0x2B2028, "Blue Violet Dye"); 438 /** 439 * Color constant<PRE> 440 *<font style="background-color: #542D24; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #542D24; color: #000000"> @ </font> 441 *<font style="background-color: #542D24; color: #542D24"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #542D24; color: #888888"> @ </font> 442 *<font style="background-color: #542D24; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #542D24; color: #ffffff"> @ </font> 443 * 444 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 445 *<font style="background-color: #ff0000; color: #542D24"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 446 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 447 */ 448 public static final SColor BOILED_RED_BEAN_BROWN = new SColor(0x542D24, "Boiled Red Bean Brown"); 449 /** 450 * Color constant<PRE> 451 *<font style="background-color: #0095B6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0095B6; color: #000000"> @ </font> 452 *<font style="background-color: #0095B6; color: #0095B6"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #0095B6; color: #888888"> @ </font> 453 *<font style="background-color: #0095B6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0095B6; color: #ffffff"> @ </font> 454 * 455 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 456 *<font style="background-color: #ff0000; color: #0095B6"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 457 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 458 */ 459 public static final SColor BONDI_BLUE = new SColor(0x0095B6, "Bondi Blue"); 460 /** 461 * Color constant<PRE> 462 *<font style="background-color: #B5A642; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B5A642; color: #000000"> @ </font> 463 *<font style="background-color: #B5A642; color: #B5A642"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B5A642; color: #888888"> @ </font> 464 *<font style="background-color: #B5A642; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B5A642; color: #ffffff"> @ </font> 465 * 466 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 467 *<font style="background-color: #ff0000; color: #B5A642"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 468 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 469 */ 470 public static final SColor BRASS = new SColor(0xB5A642, "Brass"); 471 /** 472 * Color constant<PRE> 473 *<font style="background-color: #E68364; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E68364; color: #000000"> @ </font> 474 *<font style="background-color: #E68364; color: #E68364"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E68364; color: #888888"> @ </font> 475 *<font style="background-color: #E68364; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E68364; color: #ffffff"> @ </font> 476 * 477 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 478 *<font style="background-color: #ff0000; color: #E68364"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 479 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 480 */ 481 public static final SColor BREWED_MUSTARD_BROWN = new SColor(0xE68364, "Brewed Mustard Brown"); 482 /** 483 * Color constant<PRE> 484 *<font style="background-color: #CB7E1F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CB7E1F; color: #000000"> @ </font> 485 *<font style="background-color: #CB7E1F; color: #CB7E1F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CB7E1F; color: #888888"> @ </font> 486 *<font style="background-color: #CB7E1F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CB7E1F; color: #ffffff"> @ </font> 487 * 488 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 489 *<font style="background-color: #ff0000; color: #CB7E1F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 490 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 491 */ 492 public static final SColor BRIGHT_GOLD_BROWN = new SColor(0xCB7E1F, "Bright Gold Brown"); 493 /** 494 * Color constant<PRE> 495 *<font style="background-color: #FFA400; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA400; color: #000000"> @ </font> 496 *<font style="background-color: #FFA400; color: #FFA400"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFA400; color: #888888"> @ </font> 497 *<font style="background-color: #FFA400; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA400; color: #ffffff"> @ </font> 498 * 499 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 500 *<font style="background-color: #ff0000; color: #FFA400"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 501 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 502 */ 503 public static final SColor BRIGHT_GOLDEN_YELLOW = new SColor(0xFFA400, "Bright Golden Yellow"); 504 /** 505 * Color constant<PRE> 506 *<font style="background-color: #66FF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #66FF00; color: #000000"> @ </font> 507 *<font style="background-color: #66FF00; color: #66FF00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #66FF00; color: #888888"> @ </font> 508 *<font style="background-color: #66FF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #66FF00; color: #ffffff"> @ </font> 509 * 510 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 511 *<font style="background-color: #ff0000; color: #66FF00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 512 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 513 */ 514 public static final SColor BRIGHT_GREEN = new SColor(0x66FF00, "Bright Green"); 515 /** 516 * Color constant<PRE> 517 *<font style="background-color: #FF0080; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF0080; color: #000000"> @ </font> 518 *<font style="background-color: #FF0080; color: #FF0080"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF0080; color: #888888"> @ </font> 519 *<font style="background-color: #FF0080; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF0080; color: #ffffff"> @ </font> 520 * 521 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 522 *<font style="background-color: #ff0000; color: #FF0080"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 523 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 524 */ 525 public static final SColor BRIGHT_PINK = new SColor(0xFF0080, "Bright Pink"); 526 /** 527 * Color constant<PRE> 528 *<font style="background-color: #08E8DE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #08E8DE; color: #000000"> @ </font> 529 *<font style="background-color: #08E8DE; color: #08E8DE"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #08E8DE; color: #888888"> @ </font> 530 *<font style="background-color: #08E8DE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #08E8DE; color: #ffffff"> @ </font> 531 * 532 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 533 *<font style="background-color: #ff0000; color: #08E8DE"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 534 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 535 */ 536 public static final SColor BRIGHT_TURQUOISE = new SColor(0x08E8DE, "Bright Turquoise"); 537 /** 538 * Color constant<PRE> 539 *<font style="background-color: #FF55A3; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF55A3; color: #000000"> @ </font> 540 *<font style="background-color: #FF55A3; color: #FF55A3"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF55A3; color: #888888"> @ </font> 541 *<font style="background-color: #FF55A3; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF55A3; color: #ffffff"> @ </font> 542 * 543 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 544 *<font style="background-color: #ff0000; color: #FF55A3"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 545 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 546 */ 547 public static final SColor BRILLIANT_ROSE = new SColor(0xFF55A3, "Brilliant Rose"); 548 /** 549 * Color constant<PRE> 550 *<font style="background-color: #CD7F32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CD7F32; color: #000000"> @ </font> 551 *<font style="background-color: #CD7F32; color: #CD7F32"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CD7F32; color: #888888"> @ </font> 552 *<font style="background-color: #CD7F32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CD7F32; color: #ffffff"> @ </font> 553 * 554 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 555 *<font style="background-color: #ff0000; color: #CD7F32"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 556 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 557 */ 558 public static final SColor BRONZE = new SColor(0xCD7F32, "Bronze"); 559 /** 560 * Color constant<PRE> 561 *<font style="background-color: #808000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #808000; color: #000000"> @ </font> 562 *<font style="background-color: #808000; color: #000000"> </font><font style="background-color: #000000; color: #808000"> @ </font><font style="background-color: #888888; color: #808000"> @ </font><font style="background-color: #ffffff; color: #808000"> @ </font><font style="background-color: #808000; color: #888888"> @ </font> 563 *<font style="background-color: #808000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #808000; color: #ffffff"> @ </font> 564 * 565 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font> 566 *<font style="background-color: #ff0000; color: #808000"> @ </font><font style="background-color: #ffff00; color: #808000"> @ </font><font style="background-color: #00ff00; color: #808000"> @ </font><font style="background-color: #0000ff; color: #808000"> @ </font><font style="background-color: #964B00; color: #808000"> @ </font> 567 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font></PRE> 568 */ 569 public static final SColor BROWN = new SColor(0x808000, "Brown"); 570 /** 571 * Color constant<PRE> 572 *<font style="background-color: #4B3C39; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4B3C39; color: #000000"> @ </font> 573 *<font style="background-color: #4B3C39; color: #4B3C39"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4B3C39; color: #888888"> @ </font> 574 *<font style="background-color: #4B3C39; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4B3C39; color: #ffffff"> @ </font> 575 * 576 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 577 *<font style="background-color: #ff0000; color: #4B3C39"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 578 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 579 */ 580 public static final SColor BROWN_RAT_GREY = new SColor(0x4B3C39, "Brown Rat Grey"); 581 /** 582 * Color constant<PRE> 583 *<font style="background-color: #964B00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> @ </font> 584 *<font style="background-color: #964B00; color: #964B00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #964B00; color: #888888"> @ </font> 585 *<font style="background-color: #964B00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #964B00; color: #ffffff"> @ </font> 586 * 587 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 588 *<font style="background-color: #ff0000; color: #964B00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 589 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 590 */ 591 public static final SColor BROWNER = new SColor(0x964B00, "Browner"); 592 /** 593 * Color constant<PRE> 594 *<font style="background-color: #8C5939; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8C5939; color: #000000"> @ </font> 595 *<font style="background-color: #8C5939; color: #8C5939"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8C5939; color: #888888"> @ </font> 596 *<font style="background-color: #8C5939; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8C5939; color: #ffffff"> @ </font> 597 * 598 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 599 *<font style="background-color: #ff0000; color: #8C5939"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 600 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 601 */ 602 public static final SColor BRUSHWOOD_DYED = new SColor(0x8C5939, "Brushwood Dyed"); 603 /** 604 * Color constant<PRE> 605 *<font style="background-color: #F0DC82; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F0DC82; color: #000000"> @ </font> 606 *<font style="background-color: #F0DC82; color: #F0DC82"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F0DC82; color: #888888"> @ </font> 607 *<font style="background-color: #F0DC82; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F0DC82; color: #ffffff"> @ </font> 608 * 609 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 610 *<font style="background-color: #ff0000; color: #F0DC82"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 611 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 612 */ 613 public static final SColor BUFF = new SColor(0xF0DC82, "Buff"); 614 /** 615 * Color constant<PRE> 616 *<font style="background-color: #900020; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #900020; color: #000000"> @ </font> 617 *<font style="background-color: #900020; color: #900020"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #900020; color: #888888"> @ </font> 618 *<font style="background-color: #900020; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #900020; color: #ffffff"> @ </font> 619 * 620 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 621 *<font style="background-color: #ff0000; color: #900020"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 622 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 623 */ 624 public static final SColor BURGUNDY = new SColor(0x900020, "Burgundy"); 625 /** 626 * Color constant<PRE> 627 *<font style="background-color: #4D3B3C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4D3B3C; color: #000000"> @ </font> 628 *<font style="background-color: #4D3B3C; color: #4D3B3C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4D3B3C; color: #888888"> @ </font> 629 *<font style="background-color: #4D3B3C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4D3B3C; color: #ffffff"> @ </font> 630 * 631 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 632 *<font style="background-color: #ff0000; color: #4D3B3C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 633 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 634 */ 635 public static final SColor BURNT_BAMBOO = new SColor(0x4D3B3C, "Burnt Bamboo"); 636 /** 637 * Color constant<PRE> 638 *<font style="background-color: #CC5500; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC5500; color: #000000"> @ </font> 639 *<font style="background-color: #CC5500; color: #CC5500"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CC5500; color: #888888"> @ </font> 640 *<font style="background-color: #CC5500; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC5500; color: #ffffff"> @ </font> 641 * 642 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 643 *<font style="background-color: #ff0000; color: #CC5500"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 644 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 645 */ 646 public static final SColor BURNT_ORANGE = new SColor(0xCC5500, "Burnt Orange"); 647 /** 648 * Color constant<PRE> 649 *<font style="background-color: #E97451; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E97451; color: #000000"> @ </font> 650 *<font style="background-color: #E97451; color: #E97451"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E97451; color: #888888"> @ </font> 651 *<font style="background-color: #E97451; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E97451; color: #ffffff"> @ </font> 652 * 653 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 654 *<font style="background-color: #ff0000; color: #E97451"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 655 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 656 */ 657 public static final SColor BURNT_SIENNA = new SColor(0xE97451, "Burnt Sienna"); 658 /** 659 * Color constant<PRE> 660 *<font style="background-color: #8A3324; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8A3324; color: #000000"> @ </font> 661 *<font style="background-color: #8A3324; color: #8A3324"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8A3324; color: #888888"> @ </font> 662 *<font style="background-color: #8A3324; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8A3324; color: #ffffff"> @ </font> 663 * 664 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 665 *<font style="background-color: #ff0000; color: #8A3324"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 666 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 667 */ 668 public static final SColor BURNT_UMBER = new SColor(0x8A3324, "Burnt Umber"); 669 /** 670 * Color constant<PRE> 671 *<font style="background-color: #78866B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #78866B; color: #000000"> @ </font> 672 *<font style="background-color: #78866B; color: #78866B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #78866B; color: #888888"> @ </font> 673 *<font style="background-color: #78866B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #78866B; color: #ffffff"> @ </font> 674 * 675 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 676 *<font style="background-color: #ff0000; color: #78866B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 677 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 678 */ 679 public static final SColor CAMO_GREEN = new SColor(0x78866B, "Camo Green"); 680 /** 681 * Color constant<PRE> 682 *<font style="background-color: #FFB95A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFB95A; color: #000000"> @ </font> 683 *<font style="background-color: #FFB95A; color: #FFB95A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFB95A; color: #888888"> @ </font> 684 *<font style="background-color: #FFB95A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFB95A; color: #ffffff"> @ </font> 685 * 686 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 687 *<font style="background-color: #ff0000; color: #FFB95A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 688 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 689 */ 690 public static final SColor CAPE_JASMINE = new SColor(0xFFB95A, "Cape Jasmine"); 691 /** 692 * Color constant<PRE> 693 *<font style="background-color: #592720; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #592720; color: #000000"> @ </font> 694 *<font style="background-color: #592720; color: #592720"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #592720; color: #888888"> @ </font> 695 *<font style="background-color: #592720; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #592720; color: #ffffff"> @ </font> 696 * 697 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 698 *<font style="background-color: #ff0000; color: #592720"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 699 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 700 */ 701 public static final SColor CAPUT_MORTUUM = new SColor(0x592720, "Caput Mortuum"); 702 /** 703 * Color constant<PRE> 704 *<font style="background-color: #C41E3A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C41E3A; color: #000000"> @ </font> 705 *<font style="background-color: #C41E3A; color: #C41E3A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C41E3A; color: #888888"> @ </font> 706 *<font style="background-color: #C41E3A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C41E3A; color: #ffffff"> @ </font> 707 * 708 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 709 *<font style="background-color: #ff0000; color: #C41E3A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 710 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 711 */ 712 public static final SColor CARDINAL = new SColor(0xC41E3A, "Cardinal"); 713 /** 714 * Color constant<PRE> 715 *<font style="background-color: #960018; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #960018; color: #000000"> @ </font> 716 *<font style="background-color: #960018; color: #960018"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #960018; color: #888888"> @ </font> 717 *<font style="background-color: #960018; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #960018; color: #ffffff"> @ </font> 718 * 719 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 720 *<font style="background-color: #ff0000; color: #960018"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 721 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 722 */ 723 public static final SColor CARMINE = new SColor(0x960018, "Carmine"); 724 /** 725 * Color constant<PRE> 726 *<font style="background-color: #FFA6C9; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA6C9; color: #000000"> @ </font> 727 *<font style="background-color: #FFA6C9; color: #FFA6C9"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFA6C9; color: #888888"> @ </font> 728 *<font style="background-color: #FFA6C9; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA6C9; color: #ffffff"> @ </font> 729 * 730 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 731 *<font style="background-color: #ff0000; color: #FFA6C9"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 732 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 733 */ 734 public static final SColor CARNATION_PINK = new SColor(0xFFA6C9, "Carnation Pink"); 735 /** 736 * Color constant<PRE> 737 *<font style="background-color: #99BADD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #99BADD; color: #000000"> @ </font> 738 *<font style="background-color: #99BADD; color: #99BADD"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #99BADD; color: #888888"> @ </font> 739 *<font style="background-color: #99BADD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #99BADD; color: #ffffff"> @ </font> 740 * 741 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 742 *<font style="background-color: #ff0000; color: #99BADD"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 743 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 744 */ 745 public static final SColor CAROLINA_BLUE = new SColor(0x99BADD, "Carolina Blue"); 746 /** 747 * Color constant<PRE> 748 *<font style="background-color: #ED9121; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ED9121; color: #000000"> @ </font> 749 *<font style="background-color: #ED9121; color: #ED9121"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #ED9121; color: #888888"> @ </font> 750 *<font style="background-color: #ED9121; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ED9121; color: #ffffff"> @ </font> 751 * 752 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 753 *<font style="background-color: #ff0000; color: #ED9121"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 754 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 755 */ 756 public static final SColor CARROT_ORANGE = new SColor(0xED9121, "Carrot Orange"); 757 /** 758 * Color constant<PRE> 759 *<font style="background-color: #B64925; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B64925; color: #000000"> @ </font> 760 *<font style="background-color: #B64925; color: #B64925"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B64925; color: #888888"> @ </font> 761 *<font style="background-color: #B64925; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B64925; color: #ffffff"> @ </font> 762 * 763 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 764 *<font style="background-color: #ff0000; color: #B64925"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 765 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 766 */ 767 public static final SColor CATTAIL = new SColor(0xB64925, "Cattail"); 768 /** 769 * Color constant<PRE> 770 *<font style="background-color: #ACE1AF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ACE1AF; color: #000000"> @ </font> 771 *<font style="background-color: #ACE1AF; color: #ACE1AF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #ACE1AF; color: #888888"> @ </font> 772 *<font style="background-color: #ACE1AF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ACE1AF; color: #ffffff"> @ </font> 773 * 774 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 775 *<font style="background-color: #ff0000; color: #ACE1AF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 776 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 777 */ 778 public static final SColor CELADON = new SColor(0xACE1AF, "Celadon"); 779 /** 780 * Color constant<PRE> 781 *<font style="background-color: #819C8B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #819C8B; color: #000000"> @ </font> 782 *<font style="background-color: #819C8B; color: #819C8B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #819C8B; color: #888888"> @ </font> 783 *<font style="background-color: #819C8B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #819C8B; color: #ffffff"> @ </font> 784 * 785 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 786 *<font style="background-color: #ff0000; color: #819C8B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 787 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 788 */ 789 public static final SColor CELADON_DYE = new SColor(0x819C8B, "Celadon Dye"); 790 /** 791 * Color constant<PRE> 792 *<font style="background-color: #DE3163; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DE3163; color: #000000"> @ </font> 793 *<font style="background-color: #DE3163; color: #DE3163"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DE3163; color: #888888"> @ </font> 794 *<font style="background-color: #DE3163; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DE3163; color: #ffffff"> @ </font> 795 * 796 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 797 *<font style="background-color: #ff0000; color: #DE3163"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 798 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 799 */ 800 public static final SColor CERISE = new SColor(0xDE3163, "Cerise"); 801 /** 802 * Color constant<PRE> 803 *<font style="background-color: #007BA7; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #007BA7; color: #000000"> @ </font> 804 *<font style="background-color: #007BA7; color: #007BA7"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #007BA7; color: #888888"> @ </font> 805 *<font style="background-color: #007BA7; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #007BA7; color: #ffffff"> @ </font> 806 * 807 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 808 *<font style="background-color: #ff0000; color: #007BA7"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 809 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 810 */ 811 public static final SColor CERULEAN = new SColor(0x007BA7, "Cerulean"); 812 /** 813 * Color constant<PRE> 814 *<font style="background-color: #2A52BE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2A52BE; color: #000000"> @ </font> 815 *<font style="background-color: #2A52BE; color: #2A52BE"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2A52BE; color: #888888"> @ </font> 816 *<font style="background-color: #2A52BE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2A52BE; color: #ffffff"> @ </font> 817 * 818 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 819 *<font style="background-color: #ff0000; color: #2A52BE"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 820 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 821 */ 822 public static final SColor CERULEAN_BLUE = new SColor(0x2A52BE, "Cerulean Blue"); 823 /** 824 * Color constant<PRE> 825 *<font style="background-color: #DFFF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DFFF00; color: #000000"> @ </font> 826 *<font style="background-color: #DFFF00; color: #DFFF00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DFFF00; color: #888888"> @ </font> 827 *<font style="background-color: #DFFF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DFFF00; color: #ffffff"> @ </font> 828 * 829 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 830 *<font style="background-color: #ff0000; color: #DFFF00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 831 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 832 */ 833 public static final SColor CHARTREUSE = new SColor(0xDFFF00, "Chartreuse"); 834 /** 835 * Color constant<PRE> 836 *<font style="background-color: #7FFF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7FFF00; color: #000000"> @ </font> 837 *<font style="background-color: #7FFF00; color: #7FFF00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #7FFF00; color: #888888"> @ </font> 838 *<font style="background-color: #7FFF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7FFF00; color: #ffffff"> @ </font> 839 * 840 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 841 *<font style="background-color: #ff0000; color: #7FFF00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 842 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 843 */ 844 public static final SColor CHARTREUSE_GREEN = new SColor(0x7FFF00, "Chartreuse Green"); 845 /** 846 * Color constant<PRE> 847 *<font style="background-color: #FFB7C5; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFB7C5; color: #000000"> @ </font> 848 *<font style="background-color: #FFB7C5; color: #FFB7C5"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFB7C5; color: #888888"> @ </font> 849 *<font style="background-color: #FFB7C5; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFB7C5; color: #ffffff"> @ </font> 850 * 851 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 852 *<font style="background-color: #ff0000; color: #FFB7C5"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 853 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 854 */ 855 public static final SColor CHERRY_BLOSSOM = new SColor(0xFFB7C5, "Cherry Blossom"); 856 /** 857 * Color constant<PRE> 858 *<font style="background-color: #fcc9b9; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #fcc9b9; color: #000000"> @ </font> 859 *<font style="background-color: #fcc9b9; color: #fcc9b9"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #fcc9b9; color: #888888"> @ </font> 860 *<font style="background-color: #fcc9b9; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #fcc9b9; color: #ffffff"> @ </font> 861 * 862 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 863 *<font style="background-color: #ff0000; color: #fcc9b9"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 864 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 865 */ 866 public static final SColor CHERRY_BLOSSOM_DYE = new SColor(0xfcc9b9, "Cherry Blossom Dye"); 867 /** 868 * Color constant<PRE> 869 *<font style="background-color: #AC8181; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AC8181; color: #000000"> @ </font> 870 *<font style="background-color: #AC8181; color: #AC8181"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #AC8181; color: #888888"> @ </font> 871 *<font style="background-color: #AC8181; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AC8181; color: #ffffff"> @ </font> 872 * 873 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 874 *<font style="background-color: #ff0000; color: #AC8181"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 875 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 876 */ 877 public static final SColor CHERRY_BLOSSOM_MOUSE = new SColor(0xAC8181, "Cherry Blossom Mouse"); 878 /** 879 * Color constant<PRE> 880 *<font style="background-color: #CD5C5C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CD5C5C; color: #000000"> @ </font> 881 *<font style="background-color: #CD5C5C; color: #CD5C5C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CD5C5C; color: #888888"> @ </font> 882 *<font style="background-color: #CD5C5C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CD5C5C; color: #ffffff"> @ </font> 883 * 884 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 885 *<font style="background-color: #ff0000; color: #CD5C5C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 886 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 887 */ 888 public static final SColor CHESTNUT = new SColor(0xCD5C5C, "Chestnut"); 889 /** 890 * Color constant<PRE> 891 *<font style="background-color: #60281E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #60281E; color: #000000"> @ </font> 892 *<font style="background-color: #60281E; color: #60281E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #60281E; color: #888888"> @ </font> 893 *<font style="background-color: #60281E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #60281E; color: #ffffff"> @ </font> 894 * 895 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 896 *<font style="background-color: #ff0000; color: #60281E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 897 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 898 */ 899 public static final SColor CHESTNUT_LEATHER_BROWN = new SColor(0x60281E, "Chestnut Leather Brown"); 900 /** 901 * Color constant<PRE> 902 *<font style="background-color: #8B352D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8B352D; color: #000000"> @ </font> 903 *<font style="background-color: #8B352D; color: #8B352D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8B352D; color: #888888"> @ </font> 904 *<font style="background-color: #8B352D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8B352D; color: #ffffff"> @ </font> 905 * 906 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 907 *<font style="background-color: #ff0000; color: #8B352D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 908 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 909 */ 910 public static final SColor CHESTNUT_PLUM = new SColor(0x8B352D, "Chestnut Plum"); 911 /** 912 * Color constant<PRE> 913 *<font style="background-color: #B35C44; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B35C44; color: #000000"> @ </font> 914 *<font style="background-color: #B35C44; color: #B35C44"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B35C44; color: #888888"> @ </font> 915 *<font style="background-color: #B35C44; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B35C44; color: #ffffff"> @ </font> 916 * 917 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 918 *<font style="background-color: #ff0000; color: #B35C44"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 919 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 920 */ 921 public static final SColor CHINESE_TEA_BROWN = new SColor(0xB35C44, "Chinese Tea Brown"); 922 /** 923 * Color constant<PRE> 924 *<font style="background-color: #B7702D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B7702D; color: #000000"> @ </font> 925 *<font style="background-color: #B7702D; color: #B7702D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B7702D; color: #888888"> @ </font> 926 *<font style="background-color: #B7702D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B7702D; color: #ffffff"> @ </font> 927 * 928 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 929 *<font style="background-color: #ff0000; color: #B7702D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 930 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 931 */ 932 public static final SColor CHINESE_TEA_YELLOW = new SColor(0xB7702D, "Chinese Tea Yellow"); 933 /** 934 * Color constant<PRE> 935 *<font style="background-color: #7B3F00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7B3F00; color: #000000"> @ </font> 936 *<font style="background-color: #7B3F00; color: #7B3F00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #7B3F00; color: #888888"> @ </font> 937 *<font style="background-color: #7B3F00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7B3F00; color: #ffffff"> @ </font> 938 * 939 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 940 *<font style="background-color: #ff0000; color: #7B3F00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 941 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 942 */ 943 public static final SColor CHOCOLATE = new SColor(0x7B3F00, "Chocolate"); 944 /** 945 * Color constant<PRE> 946 *<font style="background-color: #E34234; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E34234; color: #000000"> @ </font> 947 *<font style="background-color: #E34234; color: #E34234"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E34234; color: #888888"> @ </font> 948 *<font style="background-color: #E34234; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E34234; color: #ffffff"> @ </font> 949 * 950 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 951 *<font style="background-color: #ff0000; color: #E34234"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 952 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 953 */ 954 public static final SColor CINNABAR = new SColor(0xE34234, "Cinnabar"); 955 /** 956 * Color constant<PRE> 957 *<font style="background-color: #D2691E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D2691E; color: #000000"> @ </font> 958 *<font style="background-color: #D2691E; color: #D2691E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D2691E; color: #888888"> @ </font> 959 *<font style="background-color: #D2691E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D2691E; color: #ffffff"> @ </font> 960 * 961 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 962 *<font style="background-color: #ff0000; color: #D2691E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 963 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 964 */ 965 public static final SColor CINNAMON = new SColor(0xD2691E, "Cinnamon"); 966 /** 967 * Color constant<PRE> 968 *<font style="background-color: #8F583C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8F583C; color: #000000"> @ </font> 969 *<font style="background-color: #8F583C; color: #8F583C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8F583C; color: #888888"> @ </font> 970 *<font style="background-color: #8F583C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8F583C; color: #ffffff"> @ </font> 971 * 972 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 973 *<font style="background-color: #ff0000; color: #8F583C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 974 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 975 */ 976 public static final SColor CLOVE_BROWN = new SColor(0x8F583C, "Clove Brown"); 977 /** 978 * Color constant<PRE> 979 *<font style="background-color: #C66B27; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C66B27; color: #000000"> @ </font> 980 *<font style="background-color: #C66B27; color: #C66B27"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C66B27; color: #888888"> @ </font> 981 *<font style="background-color: #C66B27; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C66B27; color: #ffffff"> @ </font> 982 * 983 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 984 *<font style="background-color: #ff0000; color: #C66B27"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 985 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 986 */ 987 public static final SColor CLOVE_DYED = new SColor(0xC66B27, "Clove Dyed"); 988 /** 989 * Color constant<PRE> 990 *<font style="background-color: #181B26; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #181B26; color: #000000"> @ </font> 991 *<font style="background-color: #181B26; color: #181B26"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #181B26; color: #888888"> @ </font> 992 *<font style="background-color: #181B26; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #181B26; color: #ffffff"> @ </font> 993 * 994 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 995 *<font style="background-color: #ff0000; color: #181B26"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 996 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 997 */ 998 public static final SColor COARSE_WOOL = new SColor(0x181B26, "Coarse Wool"); 999 /** 1000 * Color constant<PRE> 1001 *<font style="background-color: #0047AB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0047AB; color: #000000"> @ </font> 1002 *<font style="background-color: #0047AB; color: #0047AB"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #0047AB; color: #888888"> @ </font> 1003 *<font style="background-color: #0047AB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0047AB; color: #ffffff"> @ </font> 1004 * 1005 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1006 *<font style="background-color: #ff0000; color: #0047AB"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1007 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1008 */ 1009 public static final SColor COBALT = new SColor(0x0047AB, "Cobalt"); 1010 /** 1011 * Color constant<PRE> 1012 *<font style="background-color: #9D2933; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9D2933; color: #000000"> @ </font> 1013 *<font style="background-color: #9D2933; color: #0047AB"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9D2933; color: #888888"> @ </font> 1014 *<font style="background-color: #9D2933; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9D2933; color: #ffffff"> @ </font> 1015 * 1016 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1017 *<font style="background-color: #ff0000; color: #9D2933"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1018 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1019 */ 1020 public static final SColor COCHINEAL_RED = new SColor(0x9D2933, "Cochineal Red"); 1021 /** 1022 * Color constant<PRE> 1023 *<font style="background-color: #9BDDFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9BDDFF; color: #000000"> @ </font> 1024 *<font style="background-color: #9BDDFF; color: #9BDDFF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9BDDFF; color: #888888"> @ </font> 1025 *<font style="background-color: #9BDDFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9BDDFF; color: #ffffff"> @ </font> 1026 * 1027 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1028 *<font style="background-color: #ff0000; color: #9BDDFF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1029 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1030 */ 1031 public static final SColor COLUMBIA_BLUE = new SColor(0x9BDDFF, "Columbia Blue"); 1032 /** 1033 * Color constant<PRE> 1034 *<font style="background-color: #B87333; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B87333; color: #000000"> @ </font> 1035 *<font style="background-color: #B87333; color: #B87333"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B87333; color: #888888"> @ </font> 1036 *<font style="background-color: #B87333; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B87333; color: #ffffff"> @ </font> 1037 * 1038 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1039 *<font style="background-color: #ff0000; color: #B87333"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1040 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1041 */ 1042 public static final SColor COPPER = new SColor(0xB87333, "Copper"); 1043 /** 1044 * Color constant<PRE> 1045 *<font style="background-color: #996666; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #996666; color: #000000"> @ </font> 1046 *<font style="background-color: #996666; color: #996666"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #996666; color: #888888"> @ </font> 1047 *<font style="background-color: #996666; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #996666; color: #ffffff"> @ </font> 1048 * 1049 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1050 *<font style="background-color: #ff0000; color: #996666"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1051 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1052 */ 1053 public static final SColor COPPER_ROSE = new SColor(0x996666, "Copper Rose"); 1054 /** 1055 * Color constant<PRE> 1056 *<font style="background-color: #FF7F50; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF7F50; color: #000000"> @ </font> 1057 *<font style="background-color: #FF7F50; color: #FF7F50"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF7F50; color: #888888"> @ </font> 1058 *<font style="background-color: #FF7F50; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF7F50; color: #ffffff"> @ </font> 1059 * 1060 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1061 *<font style="background-color: #ff0000; color: #FF7F50"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1062 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1063 */ 1064 public static final SColor CORAL = new SColor(0xFF7F50, "Coral"); 1065 /** 1066 * Color constant<PRE> 1067 *<font style="background-color: #F8674F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F8674F; color: #000000"> @ </font> 1068 *<font style="background-color: #F8674F; color: #F8674F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F8674F; color: #888888"> @ </font> 1069 *<font style="background-color: #F8674F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F8674F; color: #ffffff"> @ </font> 1070 * 1071 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1072 *<font style="background-color: #ff0000; color: #F8674F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1073 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1074 */ 1075 public static final SColor CORAL_DYE = new SColor(0xF8674F, "Coral Dye"); 1076 /** 1077 * Color constant<PRE> 1078 *<font style="background-color: #FF4040; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF4040; color: #000000"> @ </font> 1079 *<font style="background-color: #FF4040; color: #FF4040"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF4040; color: #888888"> @ </font> 1080 *<font style="background-color: #FF4040; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF4040; color: #ffffff"> @ </font> 1081 * 1082 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1083 *<font style="background-color: #ff0000; color: #FF4040"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1084 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1085 */ 1086 public static final SColor CORAL_RED = new SColor(0xFF4040, "Coral Red"); 1087 /** 1088 * Color constant<PRE> 1089 *<font style="background-color: #FBEC5D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FBEC5D; color: #000000"> @ </font> 1090 *<font style="background-color: #FBEC5D; color: #FBEC5D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FBEC5D; color: #888888"> @ </font> 1091 *<font style="background-color: #FBEC5D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FBEC5D; color: #ffffff"> @ </font> 1092 * 1093 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1094 *<font style="background-color: #ff0000; color: #FBEC5D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1095 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1096 */ 1097 public static final SColor CORN = new SColor(0xFBEC5D, "Corn"); 1098 /** 1099 * Color constant<PRE> 1100 *<font style="background-color: #FAA945; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FAA945; color: #000000"> @ </font> 1101 *<font style="background-color: #FAA945; color: #FAA945"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FAA945; color: #888888"> @ </font> 1102 *<font style="background-color: #FAA945; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FAA945; color: #ffffff"> @ </font> 1103 * 1104 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1105 *<font style="background-color: #ff0000; color: #FAA945"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1106 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1107 */ 1108 public static final SColor CORN_DYE = new SColor(0xFAA945, "Corn Dye"); 1109 /** 1110 * Color constant<PRE> 1111 *<font style="background-color: #6495ED; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6495ED; color: #000000"> @ </font> 1112 *<font style="background-color: #6495ED; color: #6495ED"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6495ED; color: #888888"> @ </font> 1113 *<font style="background-color: #6495ED; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6495ED; color: #ffffff"> @ </font> 1114 * 1115 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1116 *<font style="background-color: #ff0000; color: #6495ED"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1117 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1118 */ 1119 public static final SColor CORNFLOWER_BLUE = new SColor(0x6495ED, "Cornflower Blue"); 1120 /** 1121 * Color constant<PRE> 1122 *<font style="background-color: #FFF8E7; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFF8E7; color: #000000"> @ </font> 1123 *<font style="background-color: #FFF8E7; color: #FFF8E7"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFF8E7; color: #888888"> @ </font> 1124 *<font style="background-color: #FFF8E7; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFF8E7; color: #ffffff"> @ </font> 1125 * 1126 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1127 *<font style="background-color: #ff0000; color: #FFF8E7"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1128 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1129 */ 1130 public static final SColor COSMIC_LATTE = new SColor(0xFFF8E7, "Cosmic Latte"); 1131 /** 1132 * Color constant<PRE> 1133 *<font style="background-color: #FFFDD0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFFDD0; color: #000000"> @ </font> 1134 *<font style="background-color: #FFFDD0; color: #FFFDD0"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFFDD0; color: #888888"> @ </font> 1135 *<font style="background-color: #FFFDD0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFFDD0; color: #ffffff"> @ </font> 1136 * 1137 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1138 *<font style="background-color: #ff0000; color: #FFFDD0"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1139 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1140 */ 1141 public static final SColor CREAM = new SColor(0xFFFDD0, "Cream"); 1142 /** 1143 * Color constant<PRE> 1144 *<font style="background-color: #DC143C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DC143C; color: #000000"> @ </font> 1145 *<font style="background-color: #DC143C; color: #DC143C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DC143C; color: #888888"> @ </font> 1146 *<font style="background-color: #DC143C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DC143C; color: #ffffff"> @ </font> 1147 * 1148 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1149 *<font style="background-color: #ff0000; color: #DC143C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1150 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1151 */ 1152 public static final SColor CRIMSON = new SColor(0xDC143C, "Crimson"); 1153 /** 1154 * Duplicated as AQUA for usability Color constant<PRE> 1155 *<font style="background-color: #00ffff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00ffff; color: #000000"> @ </font> 1156 *<font style="background-color: #00ffff; color: #000000"> </font><font style="background-color: #000000; color: #00ffff"> @ </font><font style="background-color: #888888; color: #00ffff"> @ </font><font style="background-color: #ffffff; color: #00ffff"> @ </font><font style="background-color: #00ffff; color: #888888"> @ </font> 1157 *<font style="background-color: #00ffff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00ffff; color: #ffffff"> @ </font> 1158 * 1159 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font> 1160 *<font style="background-color: #ff0000; color: #00ffff"> @ </font><font style="background-color: #ffff00; color: #00ffff"> @ </font><font style="background-color: #00ff00; color: #00ffff"> @ </font><font style="background-color: #0000ff; color: #00ffff"> @ </font><font style="background-color: #964B00; color: #00ffff"> @ </font> 1161 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font></PRE> 1162 */ 1163 public static final SColor CYAN = new SColor(0x00ffff, "Cyan"); 1164 /** 1165 * Color constant<PRE> 1166 *<font style="background-color: #752E23; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #752E23; color: #000000"> @ </font> 1167 *<font style="background-color: #752E23; color: #752E23"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #752E23; color: #888888"> @ </font> 1168 *<font style="background-color: #752E23; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #752E23; color: #ffffff"> @ </font> 1169 * 1170 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1171 *<font style="background-color: #ff0000; color: #752E23"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1172 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1173 */ 1174 public static final SColor CYPRESS_BARK = new SColor(0x752E23, "Cypress Bark"); 1175 /** 1176 * Color constant<PRE> 1177 *<font style="background-color: #6F3028; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6F3028; color: #000000"> @ </font> 1178 *<font style="background-color: #6F3028; color: #6F3028"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6F3028; color: #888888"> @ </font> 1179 *<font style="background-color: #6F3028; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6F3028; color: #ffffff"> @ </font> 1180 * 1181 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1182 *<font style="background-color: #ff0000; color: #6F3028"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1183 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1184 */ 1185 public static final SColor CYPRESS_BARK_RED = new SColor(0x6F3028, "Cypress Bark Red"); 1186 /** 1187 * Color constant<PRE> 1188 *<font style="background-color: #0000c8; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0000c8; color: #000000"> @ </font> 1189 *<font style="background-color: #0000c8; color: #000000"> </font><font style="background-color: #000000; color: #0000c8"> @ </font><font style="background-color: #888888; color: #0000c8"> @ </font><font style="background-color: #ffffff; color: #0000c8"> @ </font><font style="background-color: #0000c8; color: #888888"> @ </font> 1190 *<font style="background-color: #0000c8; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0000c8; color: #ffffff"> @ </font> 1191 * 1192 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font> 1193 *<font style="background-color: #ff0000; color: #0000c8"> @ </font><font style="background-color: #ffff00; color: #0000c8"> @ </font><font style="background-color: #00ff00; color: #0000c8"> @ </font><font style="background-color: #0000ff; color: #0000c8"> @ </font><font style="background-color: #964B00; color: #0000c8"> @ </font> 1194 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font></PRE> 1195 */ 1196 public static final SColor DARK_BLUE = new SColor(0x0000c8, "Dark Blue"); 1197 /** 1198 * Color constant<PRE> 1199 *<font style="background-color: #192236; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #192236; color: #000000"> @ </font> 1200 *<font style="background-color: #192236; color: #192236"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #192236; color: #888888"> @ </font> 1201 *<font style="background-color: #192236; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #192236; color: #ffffff"> @ </font> 1202 * 1203 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1204 *<font style="background-color: #ff0000; color: #192236"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1205 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1206 */ 1207 public static final SColor DARK_BLUE_DYE = new SColor(0x192236, "Dark Blue Dye"); 1208 /** 1209 * Color constant<PRE> 1210 *<font style="background-color: #1B294B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1B294B; color: #000000"> @ </font> 1211 *<font style="background-color: #1B294B; color: #1B294B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #1B294B; color: #888888"> @ </font> 1212 *<font style="background-color: #1B294B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1B294B; color: #ffffff"> @ </font> 1213 * 1214 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1215 *<font style="background-color: #ff0000; color: #1B294B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1216 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1217 */ 1218 public static final SColor DARK_BLUE_LAPIS_LAZULI = new SColor(0x1B294B, "Dark Blue Lapis Lazuli"); 1219 /** 1220 * Color constant<PRE> 1221 *<font style="background-color: #654321; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #654321; color: #000000"> @ </font> 1222 *<font style="background-color: #654321; color: #654321"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #654321; color: #888888"> @ </font> 1223 *<font style="background-color: #654321; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #654321; color: #ffffff"> @ </font> 1224 * 1225 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1226 *<font style="background-color: #ff0000; color: #654321"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1227 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1228 */ 1229 public static final SColor DARK_BROWN = new SColor(0x654321, "Dark Brown"); 1230 /** 1231 * Color constant<PRE> 1232 *<font style="background-color: #08457E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #08457E; color: #000000"> @ </font> 1233 *<font style="background-color: #08457E; color: #08457E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #08457E; color: #888888"> @ </font> 1234 *<font style="background-color: #08457E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #08457E; color: #ffffff"> @ </font> 1235 * 1236 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1237 *<font style="background-color: #ff0000; color: #08457E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1238 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1239 */ 1240 public static final SColor DARK_CERULEAN = new SColor(0x08457E, "Dark Cerulean"); 1241 /** 1242 * Color constant<PRE> 1243 *<font style="background-color: #986960; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #986960; color: #000000"> @ </font> 1244 *<font style="background-color: #986960; color: #986960"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #986960; color: #888888"> @ </font> 1245 *<font style="background-color: #986960; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #986960; color: #ffffff"> @ </font> 1246 * 1247 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1248 *<font style="background-color: #ff0000; color: #986960"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1249 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1250 */ 1251 public static final SColor DARK_CHESTNUT = new SColor(0x986960, "Dark Chestnut"); 1252 /** 1253 * Color constant<PRE> 1254 *<font style="background-color: #CD5B45; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CD5B45; color: #000000"> @ </font> 1255 *<font style="background-color: #CD5B45; color: #CD5B45"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CD5B45; color: #888888"> @ </font> 1256 *<font style="background-color: #CD5B45; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CD5B45; color: #ffffff"> @ </font> 1257 * 1258 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1259 *<font style="background-color: #ff0000; color: #CD5B45"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1260 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1261 */ 1262 public static final SColor DARK_CORAL = new SColor(0xCD5B45, "Dark Coral"); 1263 /** 1264 * Color constant<PRE> 1265 *<font style="background-color: #B8860B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B8860B; color: #000000"> @ </font> 1266 *<font style="background-color: #B8860B; color: #B8860B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B8860B; color: #888888"> @ </font> 1267 *<font style="background-color: #B8860B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B8860B; color: #ffffff"> @ </font> 1268 * 1269 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1270 *<font style="background-color: #ff0000; color: #B8860B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1271 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1272 */ 1273 public static final SColor DARK_GOLDENROD = new SColor(0xB8860B, "Dark Goldenrod"); 1274 /** 1275 * Color constant<PRE> 1276 *<font style="background-color: #404040; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #404040; color: #000000"> @ </font> 1277 *<font style="background-color: #404040; color: #000000"> </font><font style="background-color: #000000; color: #404040"> @ </font><font style="background-color: #888888; color: #404040"> @ </font><font style="background-color: #ffffff; color: #404040"> @ </font><font style="background-color: #404040; color: #888888"> @ </font> 1278 *<font style="background-color: #404040; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #404040; color: #ffffff"> @ </font> 1279 * 1280 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font> 1281 *<font style="background-color: #ff0000; color: #404040"> @ </font><font style="background-color: #ffff00; color: #404040"> @ </font><font style="background-color: #00ff00; color: #404040"> @ </font><font style="background-color: #0000ff; color: #404040"> @ </font><font style="background-color: #964B00; color: #404040"> @ </font> 1282 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font></PRE> 1283 */ 1284 public static final SColor DARK_GRAY = new SColor(0x404040, "Dark Gray"); 1285 /** 1286 * Color constant<PRE> 1287 *<font style="background-color: #013220; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #013220; color: #000000"> @ </font> 1288 *<font style="background-color: #013220; color: #013220"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #013220; color: #888888"> @ </font> 1289 *<font style="background-color: #013220; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #013220; color: #ffffff"> @ </font> 1290 * 1291 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1292 *<font style="background-color: #ff0000; color: #013220"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1293 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1294 */ 1295 public static final SColor DARK_GREEN = new SColor(0x013220, "Dark Green"); 1296 /** 1297 * Color constant<PRE> 1298 *<font style="background-color: #614E6E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #614E6E; color: #000000"> @ </font> 1299 *<font style="background-color: #614E6E; color: #614E6E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #614E6E; color: #888888"> @ </font> 1300 *<font style="background-color: #614E6E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #614E6E; color: #ffffff"> @ </font> 1301 * 1302 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1303 *<font style="background-color: #ff0000; color: #614E6E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1304 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1305 */ 1306 public static final SColor DARK_INDIGO = new SColor(0x614E6E, "Dark Indigo"); 1307 /** 1308 * Color constant<PRE> 1309 *<font style="background-color: #BDB76B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BDB76B; color: #000000"> @ </font> 1310 *<font style="background-color: #BDB76B; color: #BDB76B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #BDB76B; color: #888888"> @ </font> 1311 *<font style="background-color: #BDB76B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BDB76B; color: #ffffff"> @ </font> 1312 * 1313 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1314 *<font style="background-color: #ff0000; color: #BDB76B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1315 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1316 */ 1317 public static final SColor DARK_KHAKI = new SColor(0xBDB76B, "Dark Khaki"); 1318 /** 1319 * Color constant<PRE> 1320 *<font style="background-color: #03C03C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #03C03C; color: #000000"> @ </font> 1321 *<font style="background-color: #03C03C; color: #03C03C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #03C03C; color: #888888"> @ </font> 1322 *<font style="background-color: #03C03C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #03C03C; color: #ffffff"> @ </font> 1323 * 1324 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1325 *<font style="background-color: #ff0000; color: #03C03C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1326 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1327 */ 1328 public static final SColor DARK_PASTEL_GREEN = new SColor(0x03C03C, "Dark Pastel Green"); 1329 /** 1330 * Color constant<PRE> 1331 *<font style="background-color: #E75480; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E75480; color: #000000"> @ </font> 1332 *<font style="background-color: #E75480; color: #E75480"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E75480; color: #888888"> @ </font> 1333 *<font style="background-color: #E75480; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E75480; color: #ffffff"> @ </font> 1334 * 1335 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1336 *<font style="background-color: #ff0000; color: #E75480"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1337 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1338 */ 1339 public static final SColor DARK_PINK = new SColor(0xE75480, "Dark Pink"); 1340 /** 1341 * Color constant<PRE> 1342 *<font style="background-color: #560319; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #560319; color: #000000"> @ </font> 1343 *<font style="background-color: #560319; color: #560319"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #560319; color: #888888"> @ </font> 1344 *<font style="background-color: #560319; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #560319; color: #ffffff"> @ </font> 1345 * 1346 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1347 *<font style="background-color: #ff0000; color: #560319"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1348 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1349 */ 1350 public static final SColor DARK_SCARLET = new SColor(0x560319, "Dark Scarlet"); 1351 /** 1352 * Color constant<PRE> 1353 *<font style="background-color: #800000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #800000; color: #000000"> @ </font> 1354 *<font style="background-color: #800000; color: #000000"> </font><font style="background-color: #000000; color: #800000"> @ </font><font style="background-color: #888888; color: #800000"> @ </font><font style="background-color: #ffffff; color: #800000"> @ </font><font style="background-color: #800000; color: #888888"> @ </font> 1355 *<font style="background-color: #800000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #800000; color: #ffffff"> @ </font> 1356 * 1357 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font> 1358 *<font style="background-color: #ff0000; color: #800000"> @ </font><font style="background-color: #ffff00; color: #800000"> @ </font><font style="background-color: #00ff00; color: #800000"> @ </font><font style="background-color: #0000ff; color: #800000"> @ </font><font style="background-color: #964B00; color: #800000"> @ </font> 1359 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font></PRE> 1360 */ 1361 public static final SColor DARK_RED = new SColor(0x800000, "Dark Red"); 1362 /** 1363 * Color constant<PRE> 1364 *<font style="background-color: #23191E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #23191E; color: #000000"> @ </font> 1365 *<font style="background-color: #23191E; color: #23191E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #23191E; color: #888888"> @ </font> 1366 *<font style="background-color: #23191E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #23191E; color: #ffffff"> @ </font> 1367 * 1368 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1369 *<font style="background-color: #ff0000; color: #23191E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1370 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1371 */ 1372 public static final SColor DARK_RED_DYE = new SColor(0x23191E, "Dark Red Dye"); 1373 /** 1374 * Color constant<PRE> 1375 *<font style="background-color: #E9967A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E9967A; color: #000000"> @ </font> 1376 *<font style="background-color: #E9967A; color: #E9967A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E9967A; color: #888888"> @ </font> 1377 *<font style="background-color: #E9967A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E9967A; color: #ffffff"> @ </font> 1378 * 1379 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1380 *<font style="background-color: #ff0000; color: #E9967A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1381 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1382 */ 1383 public static final SColor DARK_SALMON = new SColor(0xE9967A, "Dark Salmon"); 1384 /** 1385 * Color constant<PRE> 1386 *<font style="background-color: #2F4F4F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2F4F4F; color: #000000"> @ </font> 1387 *<font style="background-color: #2F4F4F; color: #2F4F4F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2F4F4F; color: #888888"> @ </font> 1388 *<font style="background-color: #2F4F4F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2F4F4F; color: #ffffff"> @ </font> 1389 * 1390 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1391 *<font style="background-color: #ff0000; color: #2F4F4F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1392 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1393 */ 1394 public static final SColor DARK_SLATE_GRAY = new SColor(0x2F4F4F, "Dark Slate Gray"); 1395 /** 1396 * Color constant<PRE> 1397 *<font style="background-color: #177245; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #177245; color: #000000"> @ </font> 1398 *<font style="background-color: #177245; color: #177245"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #177245; color: #888888"> @ </font> 1399 *<font style="background-color: #177245; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #177245; color: #ffffff"> @ </font> 1400 * 1401 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1402 *<font style="background-color: #ff0000; color: #177245"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1403 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1404 */ 1405 public static final SColor DARK_SPRING_GREEN = new SColor(0x177245, "Dark Spring Green"); 1406 /** 1407 * Color constant<PRE> 1408 *<font style="background-color: #918151; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #918151; color: #000000"> @ </font> 1409 *<font style="background-color: #918151; color: #918151"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #918151; color: #888888"> @ </font> 1410 *<font style="background-color: #918151; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #918151; color: #ffffff"> @ </font> 1411 * 1412 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1413 *<font style="background-color: #ff0000; color: #918151"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1414 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1415 */ 1416 public static final SColor DARK_TAN = new SColor(0x918151, "Dark Tan"); 1417 /** 1418 * Color constant<PRE> 1419 *<font style="background-color: #00CED1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00CED1; color: #000000"> @ </font> 1420 *<font style="background-color: #00CED1; color: #00CED1"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #00CED1; color: #888888"> @ </font> 1421 *<font style="background-color: #00CED1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00CED1; color: #ffffff"> @ </font> 1422 * 1423 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1424 *<font style="background-color: #ff0000; color: #00CED1"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1425 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1426 */ 1427 public static final SColor DARK_TURQUOISE = new SColor(0x00CED1, "Dark Turquoise"); 1428 /** 1429 * Color constant<PRE> 1430 *<font style="background-color: #9400D3; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9400D3; color: #000000"> @ </font> 1431 *<font style="background-color: #9400D3; color: #9400D3"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9400D3; color: #888888"> @ </font> 1432 *<font style="background-color: #9400D3; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9400D3; color: #ffffff"> @ </font> 1433 * 1434 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1435 *<font style="background-color: #ff0000; color: #9400D3"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1436 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1437 */ 1438 public static final SColor DARK_VIOLET = new SColor(0x9400D3, "Dark Violet"); 1439 /** 1440 * Color constant<PRE> 1441 *<font style="background-color: #FA7B62; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FA7B62; color: #000000"> @ </font> 1442 *<font style="background-color: #FA7B62; color: #FA7B62"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FA7B62; color: #888888"> @ </font> 1443 *<font style="background-color: #FA7B62; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FA7B62; color: #ffffff"> @ </font> 1444 * 1445 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1446 *<font style="background-color: #ff0000; color: #FA7B62"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1447 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1448 */ 1449 public static final SColor DAWN = new SColor(0xFA7B62, "Dawn"); 1450 /** 1451 * Color constant<PRE> 1452 *<font style="background-color: #FF8936; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF8936; color: #000000"> @ </font> 1453 *<font style="background-color: #FF8936; color: #FF8936"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF8936; color: #888888"> @ </font> 1454 *<font style="background-color: #FF8936; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF8936; color: #ffffff"> @ </font> 1455 * 1456 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1457 *<font style="background-color: #ff0000; color: #FF8936"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1458 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1459 */ 1460 public static final SColor DAYLILY = new SColor(0xFF8936, "Daylily"); 1461 /** 1462 * Color constant<PRE> 1463 *<font style="background-color: #524B2A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #524B2A; color: #000000"> @ </font> 1464 *<font style="background-color: #524B2A; color: #524B2A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #524B2A; color: #888888"> @ </font> 1465 *<font style="background-color: #524B2A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #524B2A; color: #ffffff"> @ </font> 1466 * 1467 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1468 *<font style="background-color: #ff0000; color: #524B2A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1469 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1470 */ 1471 public static final SColor DEAD_MANS_FINGERS_SEAWEED = new SColor(0x524B2A, "Dead Man's Fingers Seaweed"); 1472 /** 1473 * Color constant<PRE> 1474 *<font style="background-color: #D57835; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D57835; color: #000000"> @ </font> 1475 *<font style="background-color: #D57835; color: #D57835"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D57835; color: #888888"> @ </font> 1476 *<font style="background-color: #D57835; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D57835; color: #ffffff"> @ </font> 1477 * 1478 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1479 *<font style="background-color: #ff0000; color: #D57835"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1480 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1481 */ 1482 public static final SColor DECAYING_LEAVES = new SColor(0xD57835, "Decaying Leaves"); 1483 /** 1484 * Color constant<PRE> 1485 *<font style="background-color: #DA3287; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DA3287; color: #000000"> @ </font> 1486 *<font style="background-color: #DA3287; color: #DA3287"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DA3287; color: #888888"> @ </font> 1487 *<font style="background-color: #DA3287; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DA3287; color: #ffffff"> @ </font> 1488 * 1489 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1490 *<font style="background-color: #ff0000; color: #DA3287"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1491 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1492 */ 1493 public static final SColor DEEP_CERISE = new SColor(0xDA3287, "Deep Cerise"); 1494 /** 1495 * Color constant<PRE> 1496 *<font style="background-color: #B94E48; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B94E48; color: #000000"> @ </font> 1497 *<font style="background-color: #B94E48; color: #B94E48"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B94E48; color: #888888"> @ </font> 1498 *<font style="background-color: #B94E48; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B94E48; color: #ffffff"> @ </font> 1499 * 1500 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1501 *<font style="background-color: #ff0000; color: #B94E48"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1502 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1503 */ 1504 public static final SColor DEEP_CHESTNUT = new SColor(0xB94E48, "Deep Chestnut"); 1505 /** 1506 * Color constant<PRE> 1507 *<font style="background-color: #C154C1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C154C1; color: #000000"> @ </font> 1508 *<font style="background-color: #C154C1; color: #C154C1"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C154C1; color: #888888"> @ </font> 1509 *<font style="background-color: #C154C1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C154C1; color: #ffffff"> @ </font> 1510 * 1511 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1512 *<font style="background-color: #ff0000; color: #C154C1"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1513 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1514 */ 1515 public static final SColor DEEP_FUCHSIA = new SColor(0xC154C1, "Deep Fuchsia"); 1516 /** 1517 * Color constant<PRE> 1518 *<font style="background-color: #9955BB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9955BB; color: #000000"> @ </font> 1519 *<font style="background-color: #9955BB; color: #9955BB"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9955BB; color: #888888"> @ </font> 1520 *<font style="background-color: #9955BB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9955BB; color: #ffffff"> @ </font> 1521 * 1522 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1523 *<font style="background-color: #ff0000; color: #9955BB"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1524 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1525 */ 1526 public static final SColor DEEP_LILAC = new SColor(0x9955BB, "Deep Lilac"); 1527 /** 1528 * Color constant<PRE> 1529 *<font style="background-color: #CD00CC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CD00CC; color: #000000"> @ </font> 1530 *<font style="background-color: #CD00CC; color: #CD00CC"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CD00CC; color: #888888"> @ </font> 1531 *<font style="background-color: #CD00CC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CD00CC; color: #ffffff"> @ </font> 1532 * 1533 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1534 *<font style="background-color: #ff0000; color: #CD00CC"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1535 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1536 */ 1537 public static final SColor DEEP_MAGENTA = new SColor(0xCD00CC, "Deep Magenta"); 1538 /** 1539 * Color constant<PRE> 1540 *<font style="background-color: #FFCBA4; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFCBA4; color: #000000"> @ </font> 1541 *<font style="background-color: #FFCBA4; color: #FFCBA4"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFCBA4; color: #888888"> @ </font> 1542 *<font style="background-color: #FFCBA4; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFCBA4; color: #ffffff"> @ </font> 1543 * 1544 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1545 *<font style="background-color: #ff0000; color: #FFCBA4"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1546 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1547 */ 1548 public static final SColor DEEP_PEACH = new SColor(0xFFCBA4, "Deep Peach"); 1549 /** 1550 * Color constant<PRE> 1551 *<font style="background-color: #FF1493; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF1493; color: #000000"> @ </font> 1552 *<font style="background-color: #FF1493; color: #FF1493"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF1493; color: #888888"> @ </font> 1553 *<font style="background-color: #FF1493; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF1493; color: #ffffff"> @ </font> 1554 * 1555 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1556 *<font style="background-color: #ff0000; color: #FF1493"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1557 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1558 */ 1559 public static final SColor DEEP_PINK = new SColor(0xFF1493, "Deep Pink"); 1560 /** 1561 * Color constant<PRE> 1562 *<font style="background-color: #3A243B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3A243B; color: #000000"> @ </font> 1563 *<font style="background-color: #3A243B; color: #3A243B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #3A243B; color: #888888"> @ </font> 1564 *<font style="background-color: #3A243B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3A243B; color: #ffffff"> @ </font> 1565 * 1566 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1567 *<font style="background-color: #ff0000; color: #3A243B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1568 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1569 */ 1570 public static final SColor DEEP_PURPLE = new SColor(0x3A243B, "Deep Purple"); 1571 /** 1572 * Color constant<PRE> 1573 *<font style="background-color: #7B3B3A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7B3B3A; color: #000000"> @ </font> 1574 *<font style="background-color: #7B3B3A; color: #7B3B3A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #7B3B3A; color: #888888"> @ </font> 1575 *<font style="background-color: #7B3B3A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7B3B3A; color: #ffffff"> @ </font> 1576 * 1577 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1578 *<font style="background-color: #ff0000; color: #7B3B3A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1579 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1580 */ 1581 public static final SColor DEEP_SCARLET = new SColor(0x7B3B3A, "Deep Scarlet"); 1582 /** 1583 * Color constant<PRE> 1584 *<font style="background-color: #1560BD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1560BD; color: #000000"> @ </font> 1585 *<font style="background-color: #1560BD; color: #1560BD"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #1560BD; color: #888888"> @ </font> 1586 *<font style="background-color: #1560BD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1560BD; color: #ffffff"> @ </font> 1587 * 1588 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1589 *<font style="background-color: #ff0000; color: #1560BD"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1590 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1591 */ 1592 public static final SColor DENIM = new SColor(0x1560BD, "Denim"); 1593 /** 1594 * Color constant<PRE> 1595 *<font style="background-color: #3F313A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3F313A; color: #000000"> @ </font> 1596 *<font style="background-color: #3F313A; color: #3F313A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #3F313A; color: #888888"> @ </font> 1597 *<font style="background-color: #3F313A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3F313A; color: #ffffff"> @ </font> 1598 * 1599 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1600 *<font style="background-color: #ff0000; color: #3F313A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1601 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1602 */ 1603 public static final SColor DISAPPEARING_PURPLE = new SColor(0x3F313A, "Disappearing Purple"); 1604 /** 1605 * Color constant<PRE> 1606 *<font style="background-color: #CB6649; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CB6649; color: #000000"> @ </font> 1607 *<font style="background-color: #CB6649; color: #CB6649"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CB6649; color: #888888"> @ </font> 1608 *<font style="background-color: #CB6649; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CB6649; color: #ffffff"> @ </font> 1609 * 1610 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1611 *<font style="background-color: #ff0000; color: #CB6649"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1612 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1613 */ 1614 public static final SColor DISTANT_RIVER_BROWN = new SColor(0xCB6649, "Distant River Brown"); 1615 /** 1616 * Color constant<PRE> 1617 *<font style="background-color: #1E90FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1E90FF; color: #000000"> @ </font> 1618 *<font style="background-color: #1E90FF; color: #1E90FF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #1E90FF; color: #888888"> @ </font> 1619 *<font style="background-color: #1E90FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1E90FF; color: #ffffff"> @ </font> 1620 * 1621 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1622 *<font style="background-color: #ff0000; color: #1E90FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1623 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1624 */ 1625 public static final SColor DODGER_BLUE = new SColor(0x1E90FF, "Dodger Blue"); 1626 /** 1627 * Color constant<PRE> 1628 *<font style="background-color: #755D5B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #755D5B; color: #000000"> @ </font> 1629 *<font style="background-color: #755D5B; color: #755D5B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #755D5B; color: #888888"> @ </font> 1630 *<font style="background-color: #755D5B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #755D5B; color: #ffffff"> @ </font> 1631 * 1632 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1633 *<font style="background-color: #ff0000; color: #755D5B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1634 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1635 */ 1636 public static final SColor DOVE_FEATHER_GREY = new SColor(0x755D5B, "Dove Feather Grey"); 1637 /** 1638 * Color constant<PRE> 1639 *<font style="background-color: #7D4E2D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7D4E2D; color: #000000"> @ </font> 1640 *<font style="background-color: #7D4E2D; color: #7D4E2D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #7D4E2D; color: #888888"> @ </font> 1641 *<font style="background-color: #7D4E2D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7D4E2D; color: #ffffff"> @ </font> 1642 * 1643 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1644 *<font style="background-color: #ff0000; color: #7D4E2D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1645 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1646 */ 1647 public static final SColor DRIED_WEATHERED_BAMBOO = new SColor(0x7D4E2D, "Dried Weathered Bamboo"); 1648 /** 1649 * Color constant<PRE> 1650 *<font style="background-color: #4F4944; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4F4944; color: #000000"> @ </font> 1651 *<font style="background-color: #4F4944; color: #4F4944"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4F4944; color: #888888"> @ </font> 1652 *<font style="background-color: #4F4944; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4F4944; color: #ffffff"> @ </font> 1653 * 1654 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1655 *<font style="background-color: #ff0000; color: #4F4944"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1656 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1657 */ 1658 public static final SColor DULL_BLUE = new SColor(0x4F4944, "Dull Blue"); 1659 /** 1660 * Color constant<PRE> 1661 *<font style="background-color: #BE7F51; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BE7F51; color: #000000"> @ </font> 1662 *<font style="background-color: #BE7F51; color: #BE7F51"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #BE7F51; color: #888888"> @ </font> 1663 *<font style="background-color: #BE7F51; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BE7F51; color: #ffffff"> @ </font> 1664 * 1665 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1666 *<font style="background-color: #ff0000; color: #BE7F51"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1667 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1668 */ 1669 public static final SColor EARTHEN_YELLOW = new SColor(0xBE7F51, "Earthen Yellow"); 1670 /** 1671 * Color constant<PRE> 1672 *<font style="background-color: #FF4E20; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF4E20; color: #000000"> @ </font> 1673 *<font style="background-color: #FF4E20; color: #FF4E20"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF4E20; color: #888888"> @ </font> 1674 *<font style="background-color: #FF4E20; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF4E20; color: #ffffff"> @ </font> 1675 * 1676 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1677 *<font style="background-color: #ff0000; color: #FF4E20"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1678 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1679 */ 1680 public static final SColor EARTHEN_YELLOW_RED_BROWN = new SColor(0xFF4E20, "Earthen Yellow Red Brown"); 1681 /** 1682 * Color constant<PRE> 1683 *<font style="background-color: #C2B280; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C2B280; color: #000000"> @ </font> 1684 *<font style="background-color: #C2B280; color: #C2B280"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C2B280; color: #888888"> @ </font> 1685 *<font style="background-color: #C2B280; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C2B280; color: #ffffff"> @ </font> 1686 * 1687 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1688 *<font style="background-color: #ff0000; color: #C2B280"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1689 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1690 */ 1691 public static final SColor ECRU = new SColor(0xC2B280, "Ecru"); 1692 /** 1693 * Color constant<PRE> 1694 *<font style="background-color: #A13D2D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A13D2D; color: #000000"> @ </font> 1695 *<font style="background-color: #A13D2D; color: #A13D2D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #A13D2D; color: #888888"> @ </font> 1696 *<font style="background-color: #A13D2D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A13D2D; color: #ffffff"> @ </font> 1697 * 1698 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1699 *<font style="background-color: #ff0000; color: #A13D2D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1700 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1701 */ 1702 public static final SColor EDO_BROWN = new SColor(0xA13D2D, "Edo Brown"); 1703 /** 1704 * Color constant<PRE> 1705 *<font style="background-color: #FFA631; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA631; color: #000000"> @ </font> 1706 *<font style="background-color: #FFA631; color: #FFA631"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFA631; color: #888888"> @ </font> 1707 *<font style="background-color: #FFA631; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA631; color: #ffffff"> @ </font> 1708 * 1709 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1710 *<font style="background-color: #ff0000; color: #FFA631"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1711 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1712 */ 1713 public static final SColor EGG_DYE = new SColor(0xFFA631, "Egg Dye"); 1714 /** 1715 * Color constant<PRE> 1716 *<font style="background-color: #ECBE9F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ECBE9F; color: #000000"> @ </font> 1717 *<font style="background-color: #ECBE9F; color: #ECBE9F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #ECBE9F; color: #888888"> @ </font> 1718 *<font style="background-color: #ECBE9F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ECBE9F; color: #ffffff"> @ </font> 1719 * 1720 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1721 *<font style="background-color: #ff0000; color: #ECBE9F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1722 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1723 */ 1724 public static final SColor EGGSHELL_PAPER = new SColor(0xECBE9F, "Eggshell Paper"); 1725 /** 1726 * Color constant<PRE> 1727 *<font style="background-color: #1034A6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1034A6; color: #000000"> @ </font> 1728 *<font style="background-color: #1034A6; color: #1034A6"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #1034A6; color: #888888"> @ </font> 1729 *<font style="background-color: #1034A6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1034A6; color: #ffffff"> @ </font> 1730 * 1731 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1732 *<font style="background-color: #ff0000; color: #1034A6"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1733 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1734 */ 1735 public static final SColor EGYPTIAN_BLUE = new SColor(0x1034A6, "Egyptian Blue"); 1736 /** 1737 * Color constant<PRE> 1738 *<font style="background-color: #7DF9FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7DF9FF; color: #000000"> @ </font> 1739 *<font style="background-color: #7DF9FF; color: #7DF9FF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #7DF9FF; color: #888888"> @ </font> 1740 *<font style="background-color: #7DF9FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7DF9FF; color: #ffffff"> @ </font> 1741 * 1742 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1743 *<font style="background-color: #ff0000; color: #7DF9FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1744 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1745 */ 1746 public static final SColor ELECTRIC_BLUE = new SColor(0x7DF9FF, "Electric Blue"); 1747 /** 1748 * Color constant<PRE> 1749 *<font style="background-color: #00FF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00FF00; color: #000000"> @ </font> 1750 *<font style="background-color: #00FF00; color: #00FF00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #00FF00; color: #888888"> @ </font> 1751 *<font style="background-color: #00FF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00FF00; color: #ffffff"> @ </font> 1752 * 1753 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1754 *<font style="background-color: #ff0000; color: #00FF00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1755 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1756 */ 1757 public static final SColor ELECTRIC_GREEN = new SColor(0x00FF00, "Electric Green"); 1758 /** 1759 * Color constant<PRE> 1760 *<font style="background-color: #6600FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6600FF; color: #000000"> @ </font> 1761 *<font style="background-color: #6600FF; color: #6600FF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6600FF; color: #888888"> @ </font> 1762 *<font style="background-color: #6600FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6600FF; color: #ffffff"> @ </font> 1763 * 1764 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1765 *<font style="background-color: #ff0000; color: #6600FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1766 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1767 */ 1768 public static final SColor ELECTRIC_INDIGO = new SColor(0x6600FF, "Electric Indigo"); 1769 /** 1770 * Color constant<PRE> 1771 *<font style="background-color: #CCFF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CCFF00; color: #000000"> @ </font> 1772 *<font style="background-color: #CCFF00; color: #CCFF00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CCFF00; color: #888888"> @ </font> 1773 *<font style="background-color: #CCFF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CCFF00; color: #ffffff"> @ </font> 1774 * 1775 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1776 *<font style="background-color: #ff0000; color: #CCFF00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1777 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1778 */ 1779 public static final SColor ELECTRIC_LIME = new SColor(0xCCFF00, "Electric Lime"); 1780 /** 1781 * Color constant<PRE> 1782 *<font style="background-color: #BF00FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BF00FF; color: #000000"> @ </font> 1783 *<font style="background-color: #BF00FF; color: #BF00FF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #BF00FF; color: #888888"> @ </font> 1784 *<font style="background-color: #BF00FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BF00FF; color: #ffffff"> @ </font> 1785 * 1786 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1787 *<font style="background-color: #ff0000; color: #BF00FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1788 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1789 */ 1790 public static final SColor ELECTRIC_PURPLE = new SColor(0xBF00FF, "Electric Purple"); 1791 /** 1792 * Color constant<PRE> 1793 *<font style="background-color: #50C878; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #50C878; color: #000000"> @ </font> 1794 *<font style="background-color: #50C878; color: #50C878"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #50C878; color: #888888"> @ </font> 1795 *<font style="background-color: #50C878; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #50C878; color: #ffffff"> @ </font> 1796 * 1797 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1798 *<font style="background-color: #ff0000; color: #50C878"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1799 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1800 */ 1801 public static final SColor EMERALD = new SColor(0x50C878, "Emerald"); 1802 /** 1803 * Color constant<PRE> 1804 *<font style="background-color: #614051; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #614051; color: #000000"> @ </font> 1805 *<font style="background-color: #614051; color: #614051"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #614051; color: #888888"> @ </font> 1806 *<font style="background-color: #614051; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #614051; color: #ffffff"> @ </font> 1807 * 1808 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1809 *<font style="background-color: #ff0000; color: #614051"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1810 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1811 */ 1812 public static final SColor EGGPLANT = new SColor(0x614051, "Eggplant"); 1813 /** 1814 * Color constant<PRE> 1815 *<font style="background-color: #60281E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #60281E; color: #000000"> @ </font> 1816 *<font style="background-color: #60281E; color: #60281E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #60281E; color: #888888"> @ </font> 1817 *<font style="background-color: #60281E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #60281E; color: #ffffff"> @ </font> 1818 * 1819 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1820 *<font style="background-color: #ff0000; color: #60281E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1821 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1822 */ 1823 public static final SColor FADED_CHINESE_TEA_BROWN = new SColor(0x60281E, "Faded Chinese Tea Brown"); 1824 /** 1825 * Color constant<PRE> 1826 *<font style="background-color: #B0927A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B0927A; color: #000000"> @ </font> 1827 *<font style="background-color: #B0927A; color: #B0927A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B0927A; color: #888888"> @ </font> 1828 *<font style="background-color: #B0927A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B0927A; color: #ffffff"> @ </font> 1829 * 1830 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1831 *<font style="background-color: #ff0000; color: #B0927A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1832 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1833 */ 1834 public static final SColor FADED_SEN_NO_RIKYUS_TEA = new SColor(0xB0927A, "Faded Den No Rikyu's Tea"); 1835 /** 1836 * Color constant<PRE> 1837 *<font style="background-color: #43242A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #43242A; color: #000000"> @ </font> 1838 *<font style="background-color: #43242A; color: #43242A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #43242A; color: #888888"> @ </font> 1839 *<font style="background-color: #43242A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #43242A; color: #ffffff"> @ </font> 1840 * 1841 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1842 *<font style="background-color: #ff0000; color: #43242A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1843 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1844 */ 1845 public static final SColor FAKE_PURPLE = new SColor(0x43242A, "Fake Purple"); 1846 /** 1847 * Color constant<PRE> 1848 *<font style="background-color: #801818; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #801818; color: #000000"> @ </font> 1849 *<font style="background-color: #801818; color: #801818"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #801818; color: #888888"> @ </font> 1850 *<font style="background-color: #801818; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #801818; color: #ffffff"> @ </font> 1851 * 1852 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1853 *<font style="background-color: #ff0000; color: #801818"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1854 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1855 */ 1856 public static final SColor FALU_RED = new SColor(0x801818, "Falu Red"); 1857 /** 1858 * Color constant<PRE> 1859 *<font style="background-color: #4F7942; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4F7942; color: #000000"> @ </font> 1860 *<font style="background-color: #4F7942; color: #4F7942"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4F7942; color: #888888"> @ </font> 1861 *<font style="background-color: #4F7942; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4F7942; color: #ffffff"> @ </font> 1862 * 1863 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1864 *<font style="background-color: #ff0000; color: #4F7942"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1865 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1866 */ 1867 public static final SColor FERN_GREEN = new SColor(0x4F7942, "Fern Green"); 1868 /** 1869 * Color constant<PRE> 1870 *<font style="background-color: #957B38; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #957B38; color: #000000"> @ </font> 1871 *<font style="background-color: #957B38; color: #957B38"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #957B38; color: #888888"> @ </font> 1872 *<font style="background-color: #957B38; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #957B38; color: #ffffff"> @ </font> 1873 * 1874 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1875 *<font style="background-color: #ff0000; color: #957B38"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1876 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1877 */ 1878 public static final SColor FINCH_BROWN = new SColor(0x957B38, "Finch Brown"); 1879 /** 1880 * Color constant<PRE> 1881 *<font style="background-color: #B22222; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B22222; color: #000000"> @ </font> 1882 *<font style="background-color: #B22222; color: #B22222"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B22222; color: #888888"> @ </font> 1883 *<font style="background-color: #B22222; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B22222; color: #ffffff"> @ </font> 1884 * 1885 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1886 *<font style="background-color: #ff0000; color: #B22222"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1887 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1888 */ 1889 public static final SColor FIREBRICK = new SColor(0xB22222, "Firebrick"); 1890 /** 1891 * Color constant<PRE> 1892 *<font style="background-color: #6B4423; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6B4423; color: #000000"> @ </font> 1893 *<font style="background-color: #6B4423; color: #6B4423"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6B4423; color: #888888"> @ </font> 1894 *<font style="background-color: #6B4423; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6B4423; color: #ffffff"> @ </font> 1895 * 1896 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1897 *<font style="background-color: #ff0000; color: #6B4423"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1898 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1899 */ 1900 public static final SColor FLATTERY_BROWN = new SColor(0x6B4423, "Flattery Brown"); 1901 /** 1902 * Color constant<PRE> 1903 *<font style="background-color: #EEDC82; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EEDC82; color: #000000"> @ </font> 1904 *<font style="background-color: #EEDC82; color: #EEDC82"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #EEDC82; color: #888888"> @ </font> 1905 *<font style="background-color: #EEDC82; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EEDC82; color: #ffffff"> @ </font> 1906 * 1907 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1908 *<font style="background-color: #ff0000; color: #EEDC82"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1909 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1910 */ 1911 public static final SColor FLAX = new SColor(0xEEDC82, "Flax"); 1912 /** 1913 * Color constant<PRE> 1914 *<font style="background-color: #473F2D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #473F2D; color: #000000"> @ </font> 1915 *<font style="background-color: #473F2D; color: #473F2D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #473F2D; color: #888888"> @ </font> 1916 *<font style="background-color: #473F2D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #473F2D; color: #ffffff"> @ </font> 1917 * 1918 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1919 *<font style="background-color: #ff0000; color: #473F2D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1920 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1921 */ 1922 public static final SColor FLIRTATIOUS_INDIGO_TEA = new SColor(0x473F2D, "Flirtatious Indigo Tea"); 1923 /** 1924 * Color constant<PRE> 1925 *<font style="background-color: #FFB94E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFB94E; color: #000000"> @ </font> 1926 *<font style="background-color: #FFB94E; color: #FFB94E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFB94E; color: #888888"> @ </font> 1927 *<font style="background-color: #FFB94E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFB94E; color: #ffffff"> @ </font> 1928 * 1929 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1930 *<font style="background-color: #ff0000; color: #FFB94E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1931 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1932 */ 1933 public static final SColor FLORAL_LEAF = new SColor(0xFFB94E, "Floral Leaf"); 1934 /** 1935 * Color constant<PRE> 1936 *<font style="background-color: #C91F37; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C91F37; color: #000000"> @ </font> 1937 *<font style="background-color: #C91F37; color: #C91F37"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C91F37; color: #888888"> @ </font> 1938 *<font style="background-color: #C91F37; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C91F37; color: #ffffff"> @ </font> 1939 * 1940 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1941 *<font style="background-color: #ff0000; color: #C91F37"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1942 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1943 */ 1944 public static final SColor FOREIGN_CRIMSON = new SColor(0xC91F37, "Foreign Crimson"); 1945 /** 1946 * Color constant<PRE> 1947 *<font style="background-color: #228B22; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #228B22; color: #000000"> @ </font> 1948 *<font style="background-color: #228B22; color: #228B22"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #228B22; color: #888888"> @ </font> 1949 *<font style="background-color: #228B22; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #228B22; color: #ffffff"> @ </font> 1950 * 1951 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1952 *<font style="background-color: #ff0000; color: #228B22"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1953 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1954 */ 1955 public static final SColor FOREST_GREEN = new SColor(0x228B22, "Forest Green"); 1956 /** 1957 * Color constant<PRE> 1958 *<font style="background-color: #985629; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #985629; color: #000000"> @ </font> 1959 *<font style="background-color: #985629; color: #985629"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #985629; color: #888888"> @ </font> 1960 *<font style="background-color: #985629; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #985629; color: #ffffff"> @ </font> 1961 * 1962 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1963 *<font style="background-color: #ff0000; color: #985629"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1964 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1965 */ 1966 public static final SColor FOX = new SColor(0x985629, "Fox"); 1967 /** 1968 * Color constant<PRE> 1969 *<font style="background-color: #2E372E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2E372E; color: #000000"> @ </font> 1970 *<font style="background-color: #2E372E; color: #2E372E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2E372E; color: #888888"> @ </font> 1971 *<font style="background-color: #2E372E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2E372E; color: #ffffff"> @ </font> 1972 * 1973 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1974 *<font style="background-color: #ff0000; color: #2E372E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1975 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1976 */ 1977 public static final SColor FRAGILE_SEAWEED_BROWN = new SColor(0x2E372E, "Fragile Seaweed Brown"); 1978 /** 1979 * Color constant<PRE> 1980 *<font style="background-color: #F64A8A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F64A8A; color: #000000"> @ </font> 1981 *<font style="background-color: #F64A8A; color: #F64A8A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F64A8A; color: #888888"> @ </font> 1982 *<font style="background-color: #F64A8A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F64A8A; color: #ffffff"> @ </font> 1983 * 1984 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1985 *<font style="background-color: #ff0000; color: #F64A8A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1986 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1987 */ 1988 public static final SColor FRENCH_ROSE = new SColor(0xF64A8A, "French Rose"); 1989 /** 1990 * Color constant<PRE> 1991 *<font style="background-color: #5B8930; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5B8930; color: #000000"> @ </font> 1992 *<font style="background-color: #5B8930; color: #5B8930"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5B8930; color: #888888"> @ </font> 1993 *<font style="background-color: #5B8930; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5B8930; color: #ffffff"> @ </font> 1994 * 1995 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 1996 *<font style="background-color: #ff0000; color: #5B8930"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 1997 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 1998 */ 1999 public static final SColor FRESH_ONION = new SColor(0x5B8930, "Fresh Onion"); 2000 /** 2001 * Color constant<PRE> 2002 *<font style="background-color: #FF77FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF77FF; color: #000000"> @ </font> 2003 *<font style="background-color: #FF77FF; color: #FF77FF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF77FF; color: #888888"> @ </font> 2004 *<font style="background-color: #FF77FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF77FF; color: #ffffff"> @ </font> 2005 * 2006 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2007 *<font style="background-color: #ff0000; color: #FF77FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2008 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2009 */ 2010 public static final SColor FUCSHIA_PINK = new SColor(0xFF77FF, "Fucshia Pink"); 2011 /** 2012 * Color constant<PRE> 2013 *<font style="background-color: #E49B0F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E49B0F; color: #000000"> @ </font> 2014 *<font style="background-color: #E49B0F; color: #E49B0F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E49B0F; color: #888888"> @ </font> 2015 *<font style="background-color: #E49B0F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E49B0F; color: #ffffff"> @ </font> 2016 * 2017 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2018 *<font style="background-color: #ff0000; color: #E49B0F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2019 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2020 */ 2021 public static final SColor GAMBOGE = new SColor(0xE49B0F, "Gamboge"); 2022 /** 2023 * Color constant<PRE> 2024 *<font style="background-color: #FFB61E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFB61E; color: #000000"> @ </font> 2025 *<font style="background-color: #FFB61E; color: #FFB61E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFB61E; color: #888888"> @ </font> 2026 *<font style="background-color: #FFB61E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFB61E; color: #ffffff"> @ </font> 2027 * 2028 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2029 *<font style="background-color: #ff0000; color: #FFB61E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2030 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2031 */ 2032 public static final SColor GAMBOGE_DYE = new SColor(0xFFB61E, "Gamboge Dye"); 2033 /** 2034 * Color constant<PRE> 2035 *<font style="background-color: #D34E36; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D34E36; color: #000000"> @ </font> 2036 *<font style="background-color: #D34E36; color: #D34E36"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D34E36; color: #888888"> @ </font> 2037 *<font style="background-color: #D34E36; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D34E36; color: #ffffff"> @ </font> 2038 * 2039 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2040 *<font style="background-color: #ff0000; color: #D34E36"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2041 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2042 */ 2043 public static final SColor GLAZED_PERSIMMON = new SColor(0xD34E36, "Glazed Persimmon"); 2044 /** 2045 * Color constant<PRE> 2046 *<font style="background-color: #D4AF37; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D4AF37; color: #000000"> @ </font> 2047 *<font style="background-color: #D4AF37; color: #D4AF37"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D4AF37; color: #888888"> @ </font> 2048 *<font style="background-color: #D4AF37; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D4AF37; color: #ffffff"> @ </font> 2049 * 2050 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2051 *<font style="background-color: #ff0000; color: #D4AF37"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2052 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2053 */ 2054 public static final SColor GOLD = new SColor(0xD4AF37, "Gold"); 2055 /** 2056 * Color constant<PRE> 2057 *<font style="background-color: #FFD700; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFD700; color: #000000"> @ </font> 2058 *<font style="background-color: #FFD700; color: #FFD700"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFD700; color: #888888"> @ </font> 2059 *<font style="background-color: #FFD700; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFD700; color: #ffffff"> @ </font> 2060 * 2061 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2062 *<font style="background-color: #ff0000; color: #FFD700"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2063 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2064 */ 2065 public static final SColor GOLDEN = new SColor(0xFFD700, "Golden"); 2066 /** 2067 * Color constant<PRE> 2068 *<font style="background-color: #996515; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #996515; color: #000000"> @ </font> 2069 *<font style="background-color: #996515; color: #996515"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #996515; color: #888888"> @ </font> 2070 *<font style="background-color: #996515; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #996515; color: #ffffff"> @ </font> 2071 * 2072 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2073 *<font style="background-color: #ff0000; color: #996515"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2074 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2075 */ 2076 public static final SColor GOLDEN_BROWN = new SColor(0x996515, "Golden Brown"); 2077 /** 2078 * Color constant<PRE> 2079 *<font style="background-color: #C66B27; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C66B27; color: #000000"> @ </font> 2080 *<font style="background-color: #C66B27; color: #C66B27"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C66B27; color: #888888"> @ </font> 2081 *<font style="background-color: #C66B27; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C66B27; color: #ffffff"> @ </font> 2082 * 2083 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2084 *<font style="background-color: #ff0000; color: #C66B27"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2085 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2086 */ 2087 public static final SColor GOLDEN_BROWN_DYE = new SColor(0xC66B27, "Golden Brown Dye"); 2088 /** 2089 * Color constant<PRE> 2090 *<font style="background-color: #E29C45; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E29C45; color: #000000"> @ </font> 2091 *<font style="background-color: #E29C45; color: #E29C45"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E29C45; color: #888888"> @ </font> 2092 *<font style="background-color: #E29C45; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E29C45; color: #ffffff"> @ </font> 2093 * 2094 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2095 *<font style="background-color: #ff0000; color: #E29C45"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2096 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2097 */ 2098 public static final SColor GOLDEN_FALLEN_LEAVES = new SColor(0xE29C45, "Golden Fallen Leaves"); 2099 /** 2100 * Color constant<PRE> 2101 *<font style="background-color: #BB8141; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BB8141; color: #000000"> @ </font> 2102 *<font style="background-color: #BB8141; color: #BB8141"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #BB8141; color: #888888"> @ </font> 2103 *<font style="background-color: #BB8141; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BB8141; color: #ffffff"> @ </font> 2104 * 2105 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2106 *<font style="background-color: #ff0000; color: #BB8141"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2107 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2108 */ 2109 public static final SColor GOLDEN_OAK = new SColor(0xBB8141, "Golden Oak"); 2110 /** 2111 * Color constant<PRE> 2112 *<font style="background-color: #FFDF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFDF00; color: #000000"> @ </font> 2113 *<font style="background-color: #FFDF00; color: #FFDF00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFDF00; color: #888888"> @ </font> 2114 *<font style="background-color: #FFDF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFDF00; color: #ffffff"> @ </font> 2115 * 2116 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2117 *<font style="background-color: #ff0000; color: #FFDF00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2118 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2119 */ 2120 public static final SColor GOLDEN_YELLOW = new SColor(0xFFDF00, "Golden Yellow"); 2121 /** 2122 * Color constant<PRE> 2123 *<font style="background-color: #DAA520; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DAA520; color: #000000"> @ </font> 2124 *<font style="background-color: #DAA520; color: #DAA520"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DAA520; color: #888888"> @ </font> 2125 *<font style="background-color: #DAA520; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DAA520; color: #ffffff"> @ </font> 2126 * 2127 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2128 *<font style="background-color: #ff0000; color: #DAA520"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2129 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2130 */ 2131 public static final SColor GOLDENROD = new SColor(0xDAA520, "Goldenrod"); 2132 /** 2133 * Color constant<PRE> 2134 *<font style="background-color: #203838; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #203838; color: #000000"> @ </font> 2135 *<font style="background-color: #203838; color: #203838"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #203838; color: #888888"> @ </font> 2136 *<font style="background-color: #203838; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #203838; color: #ffffff"> @ </font> 2137 * 2138 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2139 *<font style="background-color: #ff0000; color: #203838"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2140 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2141 */ 2142 public static final SColor GORYEO_STOREROOM = new SColor(0x203838, "Goryeo Storeroom"); 2143 /** 2144 * Color constant<PRE> 2145 *<font style="background-color: #63424B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #63424B; color: #000000"> @ </font> 2146 *<font style="background-color: #63424B; color: #63424B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #63424B; color: #888888"> @ </font> 2147 *<font style="background-color: #63424B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #63424B; color: #ffffff"> @ </font> 2148 * 2149 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2150 *<font style="background-color: #ff0000; color: #63424B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2151 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2152 */ 2153 public static final SColor GRAPE_MOUSE = new SColor(0x63424B, "Grape Mouse"); 2154 /** 2155 * Color constant<PRE> 2156 *<font style="background-color: #808080; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #808080; color: #000000"> @ </font> 2157 *<font style="background-color: #808080; color: #000000"> </font><font style="background-color: #000000; color: #808080"> @ </font><font style="background-color: #888888; color: #808080"> @ </font><font style="background-color: #ffffff; color: #808080"> @ </font><font style="background-color: #808080; color: #888888"> @ </font> 2158 *<font style="background-color: #808080; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #808080; color: #ffffff"> @ </font> 2159 * 2160 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font> 2161 *<font style="background-color: #ff0000; color: #808080"> @ </font><font style="background-color: #ffff00; color: #808080"> @ </font><font style="background-color: #00ff00; color: #808080"> @ </font><font style="background-color: #0000ff; color: #808080"> @ </font><font style="background-color: #964B00; color: #808080"> @ </font> 2162 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font></PRE> 2163 */ 2164 public static final SColor GRAY = new SColor(0x808080, "Gray"); 2165 /** 2166 * Color constant<PRE> 2167 *<font style="background-color: #465945; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #465945; color: #000000"> @ </font> 2168 *<font style="background-color: #465945; color: #465945"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #465945; color: #888888"> @ </font> 2169 *<font style="background-color: #465945; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #465945; color: #ffffff"> @ </font> 2170 * 2171 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2172 *<font style="background-color: #ff0000; color: #465945"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2173 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2174 */ 2175 public static final SColor GRAY_ASPARAGUS = new SColor(0x465945, "Gray Asparagus"); 2176 /** 2177 * Color constant<PRE> 2178 *<font style="background-color: #008000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #008000; color: #000000"> @ </font> 2179 *<font style="background-color: #008000; color: #000000"> </font><font style="background-color: #000000; color: #008000"> @ </font><font style="background-color: #888888; color: #008000"> @ </font><font style="background-color: #ffffff; color: #008000"> @ </font><font style="background-color: #008000; color: #888888"> @ </font> 2180 *<font style="background-color: #008000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #008000; color: #ffffff"> @ </font> 2181 * 2182 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font> 2183 *<font style="background-color: #ff0000; color: #008000"> @ </font><font style="background-color: #ffff00; color: #008000"> @ </font><font style="background-color: #00ff00; color: #008000"> @ </font><font style="background-color: #0000ff; color: #008000"> @ </font><font style="background-color: #964B00; color: #008000"> @ </font> 2184 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font></PRE> 2185 */ 2186 public static final SColor GREEN = new SColor(0x008000, "Green"); 2187 /** 2188 * Color constant<PRE> 2189 *<font style="background-color: #BDA928; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BDA928; color: #000000"> @ </font> 2190 *<font style="background-color: #BDA928; color: #BDA928"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #BDA928; color: #888888"> @ </font> 2191 *<font style="background-color: #BDA928; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BDA928; color: #ffffff"> @ </font> 2192 * 2193 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2194 *<font style="background-color: #ff0000; color: #BDA928"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2195 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2196 */ 2197 public static final SColor GREENFINCH = new SColor(0xBDA928, "Greenfinch"); 2198 /** 2199 * Color constant<PRE> 2200 *<font style="background-color: #006442; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #006442; color: #000000"> @ </font> 2201 *<font style="background-color: #006442; color: #006442"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #006442; color: #888888"> @ </font> 2202 *<font style="background-color: #006442; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #006442; color: #ffffff"> @ </font> 2203 * 2204 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2205 *<font style="background-color: #ff0000; color: #006442"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2206 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2207 */ 2208 public static final SColor GREEN_BAMBOO = new SColor(0x006442, "Green Bamboo"); 2209 /** 2210 * Color constant<PRE> 2211 *<font style="background-color: #824B35; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #824B35; color: #000000"> @ </font> 2212 *<font style="background-color: #824B35; color: #824B35"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #824B35; color: #888888"> @ </font> 2213 *<font style="background-color: #824B35; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #824B35; color: #ffffff"> @ </font> 2214 * 2215 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2216 *<font style="background-color: #ff0000; color: #824B35"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2217 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2218 */ 2219 public static final SColor GREEN_TEA_DYE = new SColor(0x824B35, "Green Tea Dye"); 2220 /** 2221 * Color constant<PRE> 2222 *<font style="background-color: #ADFF2F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ADFF2F; color: #000000"> @ </font> 2223 *<font style="background-color: #ADFF2F; color: #ADFF2F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #ADFF2F; color: #888888"> @ </font> 2224 *<font style="background-color: #ADFF2F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ADFF2F; color: #ffffff"> @ </font> 2225 * 2226 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2227 *<font style="background-color: #ff0000; color: #ADFF2F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2228 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2229 */ 2230 public static final SColor GREEN_YELLOW = new SColor(0xADFF2F, "Green Yellow"); 2231 /** 2232 * Color constant<PRE> 2233 *<font style="background-color: #656255; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #656255; color: #000000"> @ </font> 2234 *<font style="background-color: #656255; color: #656255"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #656255; color: #888888"> @ </font> 2235 *<font style="background-color: #656255; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #656255; color: #ffffff"> @ </font> 2236 * 2237 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2238 *<font style="background-color: #ff0000; color: #656255"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2239 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2240 */ 2241 public static final SColor GREYISH_DARK_GREEN = new SColor(0x656255, "Greyish Dark Green"); 2242 /** 2243 * Color constant<PRE> 2244 *<font style="background-color: #8D608C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8D608C; color: #000000"> @ </font> 2245 *<font style="background-color: #8D608C; color: #8D608C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8D608C; color: #888888"> @ </font> 2246 *<font style="background-color: #8D608C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8D608C; color: #ffffff"> @ </font> 2247 * 2248 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2249 *<font style="background-color: #ff0000; color: #8D608C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2250 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2251 */ 2252 public static final SColor HALF_PURPLE = new SColor(0x8D608C, "Half Purple"); 2253 /** 2254 * Color constant<PRE> 2255 *<font style="background-color: #5218FA; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5218FA; color: #000000"> @ </font> 2256 *<font style="background-color: #5218FA; color: #5218FA"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5218FA; color: #888888"> @ </font> 2257 *<font style="background-color: #5218FA; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5218FA; color: #ffffff"> @ </font> 2258 * 2259 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2260 *<font style="background-color: #ff0000; color: #5218FA"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2261 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2262 */ 2263 public static final SColor HAN_PURPLE = new SColor(0x5218FA, "Han Purple"); 2264 /** 2265 * Color constant<PRE> 2266 *<font style="background-color: #757D75; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #757D75; color: #000000"> @ </font> 2267 *<font style="background-color: #757D75; color: #757D75"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #757D75; color: #888888"> @ </font> 2268 *<font style="background-color: #757D75; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #757D75; color: #ffffff"> @ </font> 2269 * 2270 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2271 *<font style="background-color: #ff0000; color: #757D75"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2272 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2273 */ 2274 public static final SColor HARBOR_RAT = new SColor(0x757D75, "Harbor Rat"); 2275 /** 2276 * Color constant<PRE> 2277 *<font style="background-color: #DF73FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DF73FF; color: #000000"> @ </font> 2278 *<font style="background-color: #DF73FF; color: #DF73FF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DF73FF; color: #888888"> @ </font> 2279 *<font style="background-color: #DF73FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DF73FF; color: #ffffff"> @ </font> 2280 * 2281 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2282 *<font style="background-color: #ff0000; color: #DF73FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2283 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2284 */ 2285 public static final SColor HELIOTROPE = new SColor(0xDF73FF, "Heliotrope"); 2286 /** 2287 * Color constant<PRE> 2288 *<font style="background-color: #F400A1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F400A1; color: #000000"> @ </font> 2289 *<font style="background-color: #F400A1; color: #F400A1"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F400A1; color: #888888"> @ </font> 2290 *<font style="background-color: #F400A1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F400A1; color: #ffffff"> @ </font> 2291 * 2292 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2293 *<font style="background-color: #ff0000; color: #F400A1"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2294 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2295 */ 2296 public static final SColor HOLLYWOOD_CERISE = new SColor(0xF400A1, "Hollywood Cerise"); 2297 /** 2298 * Color constant<PRE> 2299 *<font style="background-color: #3D5D42; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3D5D42; color: #000000"> @ </font> 2300 *<font style="background-color: #3D5D42; color: #3D5D42"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #3D5D42; color: #888888"> @ </font> 2301 *<font style="background-color: #3D5D42; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3D5D42; color: #ffffff"> @ </font> 2302 * 2303 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2304 *<font style="background-color: #ff0000; color: #3D5D42"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2305 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2306 */ 2307 public static final SColor HORSETAIL = new SColor(0x3D5D42, "Horsetail"); 2308 /** 2309 * Color constant<PRE> 2310 *<font style="background-color: #FF00CC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF00CC; color: #000000"> @ </font> 2311 *<font style="background-color: #FF00CC; color: #FF00CC"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF00CC; color: #888888"> @ </font> 2312 *<font style="background-color: #FF00CC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF00CC; color: #ffffff"> @ </font> 2313 * 2314 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2315 *<font style="background-color: #ff0000; color: #FF00CC"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2316 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2317 */ 2318 public static final SColor HOT_MAGENTA = new SColor(0xFF00CC, "Hot Magenta"); 2319 /** 2320 * Color constant<PRE> 2321 *<font style="background-color: #FF69B4; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF69B4; color: #000000"> @ </font> 2322 *<font style="background-color: #FF69B4; color: #FF69B4"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF69B4; color: #888888"> @ </font> 2323 *<font style="background-color: #FF69B4; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF69B4; color: #ffffff"> @ </font> 2324 * 2325 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2326 *<font style="background-color: #ff0000; color: #FF69B4"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2327 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2328 */ 2329 public static final SColor HOT_PINK = new SColor(0xFF69B4, "Hot Pink"); 2330 /** 2331 * Color constant<PRE> 2332 *<font style="background-color: #4C221B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4C221B; color: #000000"> @ </font> 2333 *<font style="background-color: #4C221B; color: #4C221B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4C221B; color: #888888"> @ </font> 2334 *<font style="background-color: #4C221B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4C221B; color: #ffffff"> @ </font> 2335 * 2336 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2337 *<font style="background-color: #ff0000; color: #4C221B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2338 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2339 */ 2340 public static final SColor IBIS = new SColor(0x4C221B, "Ibis"); 2341 /** 2342 * Color constant<PRE> 2343 *<font style="background-color: #F58F84; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F58F84; color: #000000"> @ </font> 2344 *<font style="background-color: #F58F84; color: #F58F84"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F58F84; color: #888888"> @ </font> 2345 *<font style="background-color: #F58F84; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F58F84; color: #ffffff"> @ </font> 2346 * 2347 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2348 *<font style="background-color: #ff0000; color: #F58F84"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2349 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2350 */ 2351 public static final SColor IBIS_WING = new SColor(0xF58F84, "Ibis Wing"); 2352 /** 2353 * Color constant<PRE> 2354 *<font style="background-color: #4B0082; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4B0082; color: #000000"> @ </font> 2355 *<font style="background-color: #4B0082; color: #4B0082"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4B0082; color: #888888"> @ </font> 2356 *<font style="background-color: #4B0082; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4B0082; color: #ffffff"> @ </font> 2357 * 2358 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2359 *<font style="background-color: #ff0000; color: #4B0082"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2360 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2361 */ 2362 public static final SColor INDIGO = new SColor(0x4B0082, "Indigo"); 2363 /** 2364 * Color constant<PRE> 2365 *<font style="background-color: #00416A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00416A; color: #000000"> @ </font> 2366 *<font style="background-color: #00416A; color: #00416A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #00416A; color: #888888"> @ </font> 2367 *<font style="background-color: #00416A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00416A; color: #ffffff"> @ </font> 2368 * 2369 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2370 *<font style="background-color: #ff0000; color: #00416A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2371 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2372 */ 2373 public static final SColor INDIGO_DYE = new SColor(0x00416A, "Indigo Dye"); 2374 /** 2375 * Color constant<PRE> 2376 *<font style="background-color: #393432; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #393432; color: #000000"> @ </font> 2377 *<font style="background-color: #393432; color: #393432"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #393432; color: #888888"> @ </font> 2378 *<font style="background-color: #393432; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #393432; color: #ffffff"> @ </font> 2379 * 2380 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2381 *<font style="background-color: #ff0000; color: #393432"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2382 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2383 */ 2384 public static final SColor INDIGO_INK_BROWN = new SColor(0x393432, "Indigo Ink Brown"); 2385 /** 2386 * Color constant<PRE> 2387 *<font style="background-color: #EBF6F7; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EBF6F7; color: #000000"> @ </font> 2388 *<font style="background-color: #EBF6F7; color: #EBF6F7"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #EBF6F7; color: #888888"> @ </font> 2389 *<font style="background-color: #EBF6F7; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EBF6F7; color: #ffffff"> @ </font> 2390 * 2391 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2392 *<font style="background-color: #ff0000; color: #EBF6F7"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2393 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2394 */ 2395 public static final SColor INDIGO_WHITE = new SColor(0xEBF6F7, "Indigo White"); 2396 /** 2397 * Color constant<PRE> 2398 *<font style="background-color: #27221F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #27221F; color: #000000"> @ </font> 2399 *<font style="background-color: #27221F; color: #27221F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #27221F; color: #888888"> @ </font> 2400 *<font style="background-color: #27221F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #27221F; color: #ffffff"> @ </font> 2401 * 2402 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2403 *<font style="background-color: #ff0000; color: #27221F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2404 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2405 */ 2406 public static final SColor INK = new SColor(0x27221F, "Ink"); 2407 /** 2408 * Color constant<PRE> 2409 *<font style="background-color: #2D4436; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2D4436; color: #000000"> @ </font> 2410 *<font style="background-color: #2D4436; color: #2D4436"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2D4436; color: #888888"> @ </font> 2411 *<font style="background-color: #2D4436; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2D4436; color: #ffffff"> @ </font> 2412 * 2413 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2414 *<font style="background-color: #ff0000; color: #2D4436"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2415 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2416 */ 2417 public static final SColor INSECT_SCREEN = new SColor(0x2D4436, "Insect Screen"); 2418 /** 2419 * Color constant<PRE> 2420 *<font style="background-color: #C6C2B6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C6C2B6; color: #000000"> @ </font> 2421 *<font style="background-color: #C6C2B6; color: #C6C2B6"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C6C2B6; color: #888888"> @ </font> 2422 *<font style="background-color: #C6C2B6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C6C2B6; color: #ffffff"> @ </font> 2423 * 2424 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2425 *<font style="background-color: #ff0000; color: #C6C2B6"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2426 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2427 */ 2428 public static final SColor INSIDE_OF_A_BOTTLE = new SColor(0xC6C2B6, "Inside Of A Bottle"); 2429 /** 2430 * Color constant<PRE> 2431 *<font style="background-color: #002FA7; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #002FA7; color: #000000"> @ </font> 2432 *<font style="background-color: #002FA7; color: #002FA7"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #002FA7; color: #888888"> @ </font> 2433 *<font style="background-color: #002FA7; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #002FA7; color: #ffffff"> @ </font> 2434 * 2435 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2436 *<font style="background-color: #ff0000; color: #002FA7"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2437 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2438 */ 2439 public static final SColor INTERNATIONAL_KLEIN_BLUE = new SColor(0x002FA7, "International Klein Blue"); 2440 /** 2441 * Color constant<PRE> 2442 *<font style="background-color: #FF4F00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF4F00; color: #000000"> @ </font> 2443 *<font style="background-color: #FF4F00; color: #FF4F00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF4F00; color: #888888"> @ </font> 2444 *<font style="background-color: #FF4F00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF4F00; color: #ffffff"> @ </font> 2445 * 2446 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2447 *<font style="background-color: #ff0000; color: #FF4F00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2448 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2449 */ 2450 public static final SColor INTERNATIONAL_ORANGE = new SColor(0xFF4F00, "International Orange"); 2451 /** 2452 * Color constant<PRE> 2453 *<font style="background-color: #763568; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #763568; color: #000000"> @ </font> 2454 *<font style="background-color: #763568; color: #763568"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #763568; color: #888888"> @ </font> 2455 *<font style="background-color: #763568; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #763568; color: #ffffff"> @ </font> 2456 * 2457 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2458 *<font style="background-color: #ff0000; color: #763568"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2459 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2460 */ 2461 public static final SColor IRIS = new SColor(0x763568, "Iris"); 2462 /** 2463 * Color constant<PRE> 2464 *<font style="background-color: #2B3733; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2B3733; color: #000000"> @ </font> 2465 *<font style="background-color: #2B3733; color: #2B3733"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2B3733; color: #888888"> @ </font> 2466 *<font style="background-color: #2B3733; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2B3733; color: #ffffff"> @ </font> 2467 * 2468 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2469 *<font style="background-color: #ff0000; color: #2B3733"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2470 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2471 */ 2472 public static final SColor IRON = new SColor(0x2B3733, "Iron"); 2473 /** 2474 * Color constant<PRE> 2475 *<font style="background-color: #344D56; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #344D56; color: #000000"> @ </font> 2476 *<font style="background-color: #344D56; color: #344D56"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #344D56; color: #888888"> @ </font> 2477 *<font style="background-color: #344D56; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #344D56; color: #ffffff"> @ </font> 2478 * 2479 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2480 *<font style="background-color: #ff0000; color: #344D56"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2481 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2482 */ 2483 public static final SColor IRONHEAD_FLOWER = new SColor(0x344D56, "Ironhead Flower"); 2484 /** 2485 * Color constant<PRE> 2486 *<font style="background-color: #2B3736; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2B3736; color: #000000"> @ </font> 2487 *<font style="background-color: #2B3736; color: #2B3736"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2B3736; color: #888888"> @ </font> 2488 *<font style="background-color: #2B3736; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2B3736; color: #ffffff"> @ </font> 2489 * 2490 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2491 *<font style="background-color: #ff0000; color: #2B3736"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2492 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2493 */ 2494 public static final SColor IRON_STORAGE = new SColor(0x2B3736, "Iron Storage"); 2495 /** 2496 * Color constant<PRE> 2497 *<font style="background-color: #009000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #009000; color: #000000"> @ </font> 2498 *<font style="background-color: #009000; color: #009000"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #009000; color: #888888"> @ </font> 2499 *<font style="background-color: #009000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #009000; color: #ffffff"> @ </font> 2500 * 2501 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2502 *<font style="background-color: #ff0000; color: #009000"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2503 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2504 */ 2505 public static final SColor ISLAMIC_GREEN = new SColor(0x009000, "Islamic Green"); 2506 /** 2507 * Color constant<PRE> 2508 *<font style="background-color: #FFFFF0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFFFF0; color: #000000"> @ </font> 2509 *<font style="background-color: #FFFFF0; color: #FFFFF0"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFFFF0; color: #888888"> @ </font> 2510 *<font style="background-color: #FFFFF0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFFFF0; color: #ffffff"> @ </font> 2511 * 2512 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2513 *<font style="background-color: #ff0000; color: #FFFFF0"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2514 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2515 */ 2516 public static final SColor IVORY = new SColor(0xFFFFF0, "Ivory"); 2517 /** 2518 * Color constant<PRE> 2519 *<font style="background-color: #5E5545; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5E5545; color: #000000"> @ </font> 2520 *<font style="background-color: #5E5545; color: #5E5545"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5E5545; color: #888888"> @ </font> 2521 *<font style="background-color: #5E5545; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5E5545; color: #ffffff"> @ </font> 2522 * 2523 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2524 *<font style="background-color: #ff0000; color: #5E5545"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2525 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2526 */ 2527 public static final SColor IWAI_BROWN = new SColor(0x5E5545, "Iwai Brown"); 2528 /** 2529 * Color constant<PRE> 2530 *<font style="background-color: #00A86B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00A86B; color: #000000"> @ </font> 2531 *<font style="background-color: #00A86B; color: #00A86B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #00A86B; color: #888888"> @ </font> 2532 *<font style="background-color: #00A86B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00A86B; color: #ffffff"> @ </font> 2533 * 2534 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2535 *<font style="background-color: #ff0000; color: #00A86B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2536 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2537 */ 2538 public static final SColor JADE = new SColor(0x00A86B, "Jade"); 2539 /** 2540 * Color constant<PRE> 2541 *<font style="background-color: #264348; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #264348; color: #000000"> @ </font> 2542 *<font style="background-color: #264348; color: #264348"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #264348; color: #888888"> @ </font> 2543 *<font style="background-color: #264348; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #264348; color: #ffffff"> @ </font> 2544 * 2545 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2546 *<font style="background-color: #ff0000; color: #264348"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2547 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2548 */ 2549 public static final SColor JAPANESE_INDIGO = new SColor(0x264348, "Japanese Indigo"); 2550 /** 2551 * Color constant<PRE> 2552 *<font style="background-color: #7F5D3B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7F5D3B; color: #000000"> @ </font> 2553 *<font style="background-color: #7F5D3B; color: #7F5D3B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #7F5D3B; color: #888888"> @ </font> 2554 *<font style="background-color: #7F5D3B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7F5D3B; color: #ffffff"> @ </font> 2555 * 2556 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2557 *<font style="background-color: #ff0000; color: #7F5D3B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2558 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2559 */ 2560 public static final SColor JAPANESE_IRIS = new SColor(0x7F5D3B, "Japanese Iris"); 2561 /** 2562 * Color constant<PRE> 2563 *<font style="background-color: #8c9c76; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8c9c76; color: #000000"> @ </font> 2564 *<font style="background-color: #8c9c76; color: #8c9c76"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8c9c76; color: #888888"> @ </font> 2565 *<font style="background-color: #8c9c76; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8c9c76; color: #ffffff"> @ </font> 2566 * 2567 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2568 *<font style="background-color: #ff0000; color: #8c9c76"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2569 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2570 */ 2571 public static final SColor JAPANESE_PALE_BLUE = new SColor(0x8c9c76, "Japanese Pale Blue"); 2572 /** 2573 * Color constant<PRE> 2574 *<font style="background-color: #E2B13C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E2B13C; color: #000000"> @ </font> 2575 *<font style="background-color: #E2B13C; color: #E2B13C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E2B13C; color: #888888"> @ </font> 2576 *<font style="background-color: #E2B13C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E2B13C; color: #ffffff"> @ </font> 2577 * 2578 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2579 *<font style="background-color: #ff0000; color: #E2B13C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2580 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2581 */ 2582 public static final SColor JAPANESE_TRIANDRA_GRASS = new SColor(0xE2B13C, "Japanese Triandra Grass"); 2583 /** 2584 * Color constant<PRE> 2585 *<font style="background-color: #4CBB17; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4CBB17; color: #000000"> @ </font> 2586 *<font style="background-color: #4CBB17; color: #4CBB17"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4CBB17; color: #888888"> @ </font> 2587 *<font style="background-color: #4CBB17; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4CBB17; color: #ffffff"> @ </font> 2588 * 2589 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2590 *<font style="background-color: #ff0000; color: #4CBB17"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2591 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2592 */ 2593 public static final SColor KELLY_GREEN = new SColor(0x4CBB17, "Kelly Green"); 2594 /** 2595 * Color constant<PRE> 2596 *<font style="background-color: #C3B091; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C3B091; color: #000000"> @ </font> 2597 *<font style="background-color: #C3B091; color: #C3B091"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C3B091; color: #888888"> @ </font> 2598 *<font style="background-color: #C3B091; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C3B091; color: #ffffff"> @ </font> 2599 * 2600 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2601 *<font style="background-color: #ff0000; color: #C3B091"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2602 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2603 */ 2604 public static final SColor KHAKI = new SColor(0xC3B091, "Khaki"); 2605 /** 2606 * Color constant<PRE> 2607 *<font style="background-color: #3D4C51; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3D4C51; color: #000000"> @ </font> 2608 *<font style="background-color: #3D4C51; color: #3D4C51"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #3D4C51; color: #888888"> @ </font> 2609 *<font style="background-color: #3D4C51; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3D4C51; color: #ffffff"> @ </font> 2610 * 2611 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2612 *<font style="background-color: #ff0000; color: #3D4C51"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2613 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2614 */ 2615 public static final SColor KIMONO_STORAGE = new SColor(0x3D4C51, "Kimono Storage"); 2616 /** 2617 * Color constant<PRE> 2618 *<font style="background-color: #1F4788; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1F4788; color: #000000"> @ </font> 2619 *<font style="background-color: #1F4788; color: #1F4788"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #1F4788; color: #888888"> @ </font> 2620 *<font style="background-color: #1F4788; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1F4788; color: #ffffff"> @ </font> 2621 * 2622 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2623 *<font style="background-color: #ff0000; color: #1F4788"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2624 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2625 */ 2626 public static final SColor LAPIS_LAZULI = new SColor(0x1F4788, "Lapis Lazuli"); 2627 /** 2628 * Color constant<PRE> 2629 *<font style="background-color: #B57EDC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B57EDC; color: #000000"> @ </font> 2630 *<font style="background-color: #B57EDC; color: #B57EDC"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B57EDC; color: #888888"> @ </font> 2631 *<font style="background-color: #B57EDC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B57EDC; color: #ffffff"> @ </font> 2632 * 2633 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2634 *<font style="background-color: #ff0000; color: #B57EDC"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2635 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2636 */ 2637 public static final SColor LAVENDER_FLORAL = new SColor(0xB57EDC, "Lavender Floral"); 2638 /** 2639 * Color constant<PRE> 2640 *<font style="background-color: #E6E6FA; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E6E6FA; color: #000000"> @ </font> 2641 *<font style="background-color: #E6E6FA; color: #E6E6FA"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E6E6FA; color: #888888"> @ </font> 2642 *<font style="background-color: #E6E6FA; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E6E6FA; color: #ffffff"> @ </font> 2643 * 2644 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2645 *<font style="background-color: #ff0000; color: #E6E6FA"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2646 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2647 */ 2648 public static final SColor LAVENDER = new SColor(0xE6E6FA, "Lavender"); 2649 /** 2650 * Color constant<PRE> 2651 *<font style="background-color: #CCCCFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CCCCFF; color: #000000"> @ </font> 2652 *<font style="background-color: #CCCCFF; color: #CCCCFF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CCCCFF; color: #888888"> @ </font> 2653 *<font style="background-color: #CCCCFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CCCCFF; color: #ffffff"> @ </font> 2654 * 2655 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2656 *<font style="background-color: #ff0000; color: #CCCCFF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2657 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2658 */ 2659 public static final SColor LAVENDER_BLUE = new SColor(0xCCCCFF, "Lavender Blue"); 2660 /** 2661 * Color constant<PRE> 2662 *<font style="background-color: #FFF0F5; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFF0F5; color: #000000"> @ </font> 2663 *<font style="background-color: #FFF0F5; color: #FFF0F5"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFF0F5; color: #888888"> @ </font> 2664 *<font style="background-color: #FFF0F5; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFF0F5; color: #ffffff"> @ </font> 2665 * 2666 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2667 *<font style="background-color: #ff0000; color: #FFF0F5"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2668 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2669 */ 2670 public static final SColor LAVENDER_BLUSH = new SColor(0xFFF0F5, "Lavender Blush"); 2671 /** 2672 * Color constant<PRE> 2673 *<font style="background-color: #C4C3D0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C4C3D0; color: #000000"> @ </font> 2674 *<font style="background-color: #C4C3D0; color: #C4C3D0"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C4C3D0; color: #888888"> @ </font> 2675 *<font style="background-color: #C4C3D0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C4C3D0; color: #ffffff"> @ </font> 2676 * 2677 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2678 *<font style="background-color: #ff0000; color: #C4C3D0"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2679 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2680 */ 2681 public static final SColor LAVENDER_GRAY = new SColor(0xC4C3D0, "Lavender Gray"); 2682 /** 2683 * Color constant<PRE> 2684 *<font style="background-color: #EE82EE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EE82EE; color: #000000"> @ </font> 2685 *<font style="background-color: #EE82EE; color: #EE82EE"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #EE82EE; color: #888888"> @ </font> 2686 *<font style="background-color: #EE82EE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EE82EE; color: #ffffff"> @ </font> 2687 * 2688 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2689 *<font style="background-color: #ff0000; color: #EE82EE"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2690 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2691 */ 2692 public static final SColor LAVENDER_MAGENTA = new SColor(0xEE82EE, "Lavender Magenta"); 2693 /** 2694 * Color constant<PRE> 2695 *<font style="background-color: #FBAED2; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FBAED2; color: #000000"> @ </font> 2696 *<font style="background-color: #FBAED2; color: #FBAED2"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FBAED2; color: #888888"> @ </font> 2697 *<font style="background-color: #FBAED2; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FBAED2; color: #ffffff"> @ </font> 2698 * 2699 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2700 *<font style="background-color: #ff0000; color: #FBAED2"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2701 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2702 */ 2703 public static final SColor LAVENDER_PINK = new SColor(0xFBAED2, "Lavender Pink"); 2704 /** 2705 * Color constant<PRE> 2706 *<font style="background-color: #967BB6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #967BB6; color: #000000"> @ </font> 2707 *<font style="background-color: #967BB6; color: #967BB6"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #967BB6; color: #888888"> @ </font> 2708 *<font style="background-color: #967BB6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #967BB6; color: #ffffff"> @ </font> 2709 * 2710 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2711 *<font style="background-color: #ff0000; color: #967BB6"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2712 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2713 */ 2714 public static final SColor LAVENDER_PURPLE = new SColor(0x967BB6, "Lavender Purple"); 2715 /** 2716 * Color constant<PRE> 2717 *<font style="background-color: #FBA0E3; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FBA0E3; color: #000000"> @ </font> 2718 *<font style="background-color: #FBA0E3; color: #FBA0E3"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FBA0E3; color: #888888"> @ </font> 2719 *<font style="background-color: #FBA0E3; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FBA0E3; color: #ffffff"> @ </font> 2720 * 2721 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2722 *<font style="background-color: #ff0000; color: #FBA0E3"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2723 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2724 */ 2725 public static final SColor LAVENDER_ROSE = new SColor(0xFBA0E3, "Lavender Rose"); 2726 /** 2727 * Color constant<PRE> 2728 *<font style="background-color: #7CFC00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7CFC00; color: #000000"> @ </font> 2729 *<font style="background-color: #7CFC00; color: #7CFC00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #7CFC00; color: #888888"> @ </font> 2730 *<font style="background-color: #7CFC00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7CFC00; color: #ffffff"> @ </font> 2731 * 2732 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2733 *<font style="background-color: #ff0000; color: #7CFC00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2734 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2735 */ 2736 public static final SColor LAWN_GREEN = new SColor(0x7CFC00, "Lawn Green"); 2737 /** 2738 * Color constant<PRE> 2739 *<font style="background-color: #2E211B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2E211B; color: #000000"> @ </font> 2740 *<font style="background-color: #2E211B; color: #2E211B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2E211B; color: #888888"> @ </font> 2741 *<font style="background-color: #2E211B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2E211B; color: #ffffff"> @ </font> 2742 * 2743 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2744 *<font style="background-color: #ff0000; color: #2E211B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2745 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2746 */ 2747 public static final SColor LEGAL_DYE = new SColor(0x2E211B, "Legal Dye"); 2748 /** 2749 * Color constant<PRE> 2750 *<font style="background-color: #FDE910; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FDE910; color: #000000"> @ </font> 2751 *<font style="background-color: #FDE910; color: #FDE910"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FDE910; color: #888888"> @ </font> 2752 *<font style="background-color: #FDE910; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FDE910; color: #ffffff"> @ </font> 2753 * 2754 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2755 *<font style="background-color: #ff0000; color: #FDE910"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2756 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2757 */ 2758 public static final SColor LEMON = new SColor(0xFDE910, "Lemon"); 2759 /** 2760 * Color constant<PRE> 2761 *<font style="background-color: #FFFACD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFFACD; color: #000000"> @ </font> 2762 *<font style="background-color: #FFFACD; color: #FFFACD"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFFACD; color: #888888"> @ </font> 2763 *<font style="background-color: #FFFACD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFFACD; color: #ffffff"> @ </font> 2764 * 2765 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2766 *<font style="background-color: #ff0000; color: #FFFACD"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2767 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2768 */ 2769 public static final SColor LEMON_CHIFFON = new SColor(0xFFFACD, "Lemon Chiffon"); 2770 /** 2771 * Color constant<PRE> 2772 *<font style="background-color: #ADD8E6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ADD8E6; color: #000000"> @ </font> 2773 *<font style="background-color: #ADD8E6; color: #ADD8E6"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #ADD8E6; color: #888888"> @ </font> 2774 *<font style="background-color: #ADD8E6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ADD8E6; color: #ffffff"> @ </font> 2775 * 2776 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2777 *<font style="background-color: #ff0000; color: #ADD8E6"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2778 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2779 */ 2780 public static final SColor LIGHT_BLUE = new SColor(0xADD8E6, "Light Blue"); 2781 /** 2782 * Color constant<PRE> 2783 *<font style="background-color: #48929B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #48929B; color: #000000"> @ </font> 2784 *<font style="background-color: #48929B; color: #48929B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #48929B; color: #888888"> @ </font> 2785 *<font style="background-color: #48929B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #48929B; color: #ffffff"> @ </font> 2786 * 2787 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2788 *<font style="background-color: #ff0000; color: #48929B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2789 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2790 */ 2791 public static final SColor LIGHT_BLUE_DYE = new SColor(0x48929B, "Light Blue Dye"); 2792 /** 2793 * Color constant<PRE> 2794 *<font style="background-color: #1D697C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1D697C; color: #000000"> @ </font> 2795 *<font style="background-color: #1D697C; color: #1D697C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #1D697C; color: #888888"> @ </font> 2796 *<font style="background-color: #1D697C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1D697C; color: #ffffff"> @ </font> 2797 * 2798 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2799 *<font style="background-color: #ff0000; color: #1D697C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2800 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2801 */ 2802 public static final SColor LIGHT_BLUE_FLOWER = new SColor(0x1D697C, "Light Blue Flower"); 2803 /** 2804 * Color constant<PRE> 2805 *<font style="background-color: #044F67; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #044F67; color: #000000"> @ </font> 2806 *<font style="background-color: #044F67; color: #044F67"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #044F67; color: #888888"> @ </font> 2807 *<font style="background-color: #044F67; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #044F67; color: #ffffff"> @ </font> 2808 * 2809 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2810 *<font style="background-color: #ff0000; color: #044F67"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2811 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2812 */ 2813 public static final SColor LIGHT_BLUE_SILK = new SColor(0x044F67, "Light Blue Silk"); 2814 /** 2815 * Color constant<PRE> 2816 *<font style="background-color: #c0c0c0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #c0c0c0; color: #000000"> @ </font> 2817 *<font style="background-color: #c0c0c0; color: #000000"> </font><font style="background-color: #000000; color: #c0c0c0"> @ </font><font style="background-color: #888888; color: #c0c0c0"> @ </font><font style="background-color: #ffffff; color: #c0c0c0"> @ </font><font style="background-color: #c0c0c0; color: #888888"> @ </font> 2818 *<font style="background-color: #c0c0c0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #c0c0c0; color: #ffffff"> @ </font> 2819 * 2820 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2821 *<font style="background-color: #ff0000; color: #c0c0c0"> @ </font><font style="background-color: #ffff00; color: #c0c0c0"> @ </font><font style="background-color: #00ff00; color: #c0c0c0"> @ </font><font style="background-color: #0000ff; color: #c0c0c0"> @ </font><font style="background-color: #964b00; color: #c0c0c0"> @ </font> 2822 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2823 */ 2824 public static final SColor LIGHT_GRAY = new SColor(0xc0c0c0, "Light Gray"); 2825 /** 2826 * Color constant<PRE> 2827 *<font style="background-color: #F0E68C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F0E68C; color: #000000"> @ </font> 2828 *<font style="background-color: #F0E68C; color: #F0E68C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F0E68C; color: #888888"> @ </font> 2829 *<font style="background-color: #F0E68C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F0E68C; color: #ffffff"> @ </font> 2830 * 2831 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2832 *<font style="background-color: #ff0000; color: #F0E68C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2833 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2834 */ 2835 public static final SColor LIGHT_KHAKI = new SColor(0xF0E68C, "Light Khaki"); 2836 /** 2837 * Color constant<PRE> 2838 *<font style="background-color: #BFFF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BFFF00; color: #000000"> @ </font> 2839 *<font style="background-color: #BFFF00; color: #BFFF00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #BFFF00; color: #888888"> @ </font> 2840 *<font style="background-color: #BFFF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BFFF00; color: #ffffff"> @ </font> 2841 * 2842 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2843 *<font style="background-color: #ff0000; color: #BFFF00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2844 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2845 */ 2846 public static final SColor LIGHT_LIME = new SColor(0xBFFF00, "Light Lime"); 2847 /** 2848 * Color constant<PRE> 2849 *<font style="background-color: #B03060; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B03060; color: #000000"> @ </font> 2850 *<font style="background-color: #B03060; color: #B03060"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B03060; color: #888888"> @ </font> 2851 *<font style="background-color: #B03060; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B03060; color: #ffffff"> @ </font> 2852 * 2853 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2854 *<font style="background-color: #ff0000; color: #B03060"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2855 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2856 */ 2857 public static final SColor LIGHT_MAROON = new SColor(0xB03060, "Light Maroon"); 2858 /** 2859 * Color constant<PRE> 2860 *<font style="background-color: #FFB6C1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFB6C1; color: #000000"> @ </font> 2861 *<font style="background-color: #FFB6C1; color: #FFB6C1"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFB6C1; color: #888888"> @ </font> 2862 *<font style="background-color: #FFB6C1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFB6C1; color: #ffffff"> @ </font> 2863 * 2864 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2865 *<font style="background-color: #ff0000; color: #FFB6C1"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2866 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2867 */ 2868 public static final SColor LIGHT_PINK = new SColor(0xFFB6C1, "Light Pink"); 2869 /** 2870 * Color constant<PRE> 2871 *<font style="background-color: #EE82EE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EE82EE; color: #000000"> @ </font> 2872 *<font style="background-color: #EE82EE; color: #EE82EE"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #EE82EE; color: #888888"> @ </font> 2873 *<font style="background-color: #EE82EE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EE82EE; color: #ffffff"> @ </font> 2874 * 2875 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2876 *<font style="background-color: #ff0000; color: #EE82EE"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2877 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2878 */ 2879 public static final SColor LIGHT_VIOLET = new SColor(0xEE82EE, "Light Violet"); 2880 /** 2881 * Color constant<PRE> 2882 *<font style="background-color: #F7BB7D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F7BB7D; color: #000000"> @ </font> 2883 *<font style="background-color: #F7BB7D; color: #F7BB7D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F7BB7D; color: #888888"> @ </font> 2884 *<font style="background-color: #F7BB7D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F7BB7D; color: #ffffff"> @ </font> 2885 * 2886 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2887 *<font style="background-color: #ff0000; color: #F7BB7D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2888 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2889 */ 2890 public static final SColor LIGHT_YELLOW_DYE = new SColor(0xF7BB7D, "Light Yellow Dye"); 2891 /** 2892 * Color constant<PRE> 2893 *<font style="background-color: #C8A2C8; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C8A2C8; color: #000000"> @ </font> 2894 *<font style="background-color: #C8A2C8; color: #C8A2C8"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C8A2C8; color: #888888"> @ </font> 2895 *<font style="background-color: #C8A2C8; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C8A2C8; color: #ffffff"> @ </font> 2896 * 2897 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2898 *<font style="background-color: #ff0000; color: #C8A2C8"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2899 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2900 */ 2901 public static final SColor LILAC = new SColor(0xC8A2C8, "Lilac"); 2902 /** 2903 * Duplicated as LIGHT_GREEN for usability Color constant<PRE> 2904 *<font style="background-color: #00FF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00FF00; color: #000000"> @ </font> 2905 *<font style="background-color: #00FF00; color: #000000"> </font><font style="background-color: #000000; color: #00FF00"> @ </font><font style="background-color: #888888; color: #00FF00"> @ </font><font style="background-color: #ffffff; color: #00FF00"> @ </font><font style="background-color: #00FF00; color: #888888"> @ </font> 2906 *<font style="background-color: #00FF00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00FF00; color: #ffffff"> @ </font> 2907 * 2908 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font> 2909 *<font style="background-color: #ff0000; color: #00FF00"> @ </font><font style="background-color: #ffff00; color: #00FF00"> @ </font><font style="background-color: #00ff00; color: #00FF00"> @ </font><font style="background-color: #0000ff; color: #00FF00"> @ </font><font style="background-color: #964B00; color: #00FF00"> @ </font> 2910 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964B00; color: #000000"> </font></PRE> 2911 */ 2912 public static final SColor LIME = new SColor(0x00FF00, "Lime"); 2913 /** 2914 * Color constant<PRE> 2915 *<font style="background-color: #32CD32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #32CD32; color: #000000"> @ </font> 2916 *<font style="background-color: #32CD32; color: #32CD32"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #32CD32; color: #888888"> @ </font> 2917 *<font style="background-color: #32CD32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #32CD32; color: #ffffff"> @ </font> 2918 * 2919 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2920 *<font style="background-color: #ff0000; color: #32CD32"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2921 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2922 */ 2923 public static final SColor LIME_GREEN = new SColor(0x32CD32, "Lime Green"); 2924 /** 2925 * Color constant<PRE> 2926 *<font style="background-color: #FAF0E6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FAF0E6; color: #000000"> @ </font> 2927 *<font style="background-color: #FAF0E6; color: #FAF0E6"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FAF0E6; color: #888888"> @ </font> 2928 *<font style="background-color: #FAF0E6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FAF0E6; color: #ffffff"> @ </font> 2929 * 2930 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2931 *<font style="background-color: #ff0000; color: #FAF0E6"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2932 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2933 */ 2934 public static final SColor LINEN = new SColor(0xFAF0E6, "Linen"); 2935 /** 2936 * Color constant<PRE> 2937 *<font style="background-color: #B95754; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B95754; color: #000000"> @ </font> 2938 *<font style="background-color: #B95754; color: #B95754"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B95754; color: #888888"> @ </font> 2939 *<font style="background-color: #B95754; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B95754; color: #ffffff"> @ </font> 2940 * 2941 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2942 *<font style="background-color: #ff0000; color: #B95754"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2943 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2944 */ 2945 public static final SColor LONG_SPRING = new SColor(0xB95754, "Long Spring"); 2946 /** 2947 * Color constant<PRE> 2948 *<font style="background-color: #AB6134; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AB6134; color: #000000"> @ </font> 2949 *<font style="background-color: #AB6134; color: #AB6134"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #AB6134; color: #888888"> @ </font> 2950 *<font style="background-color: #AB6134; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AB6134; color: #ffffff"> @ </font> 2951 * 2952 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2953 *<font style="background-color: #ff0000; color: #AB6134"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2954 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2955 */ 2956 public static final SColor LOQUAT_BROWN = new SColor(0xAB6134, "Loquat Brown"); 2957 /** 2958 * Color constant<PRE> 2959 *<font style="background-color: #7F6B5D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7F6B5D; color: #000000"> @ </font> 2960 *<font style="background-color: #7F6B5D; color: #7F6B5D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #7F6B5D; color: #888888"> @ </font> 2961 *<font style="background-color: #7F6B5D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7F6B5D; color: #ffffff"> @ </font> 2962 * 2963 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2964 *<font style="background-color: #ff0000; color: #7F6B5D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2965 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2966 */ 2967 public static final SColor LYE = new SColor(0x7F6B5D, "Lye"); 2968 /** 2969 * Color constant<PRE> 2970 *<font style="background-color: #CA1F7B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CA1F7B; color: #000000"> @ </font> 2971 *<font style="background-color: #CA1F7B; color: #CA1F7B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CA1F7B; color: #888888"> @ </font> 2972 *<font style="background-color: #CA1F7B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CA1F7B; color: #ffffff"> @ </font> 2973 * 2974 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2975 *<font style="background-color: #ff0000; color: #CA1F7B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2976 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2977 */ 2978 public static final SColor MAGENTA_DYE = new SColor(0xCA1F7B, "Magenta Dye"); 2979 /** 2980 * Color constant<PRE> 2981 *<font style="background-color: #AAF0D1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AAF0D1; color: #000000"> @ </font> 2982 *<font style="background-color: #AAF0D1; color: #AAF0D1"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #AAF0D1; color: #888888"> @ </font> 2983 *<font style="background-color: #AAF0D1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AAF0D1; color: #ffffff"> @ </font> 2984 * 2985 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2986 *<font style="background-color: #ff0000; color: #AAF0D1"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2987 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2988 */ 2989 public static final SColor MAGIC_MINT = new SColor(0xAAF0D1, "Magic Mint"); 2990 /** 2991 * Color constant<PRE> 2992 *<font style="background-color: #F8F4FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F8F4FF; color: #000000"> @ </font> 2993 *<font style="background-color: #F8F4FF; color: #F8F4FF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F8F4FF; color: #888888"> @ </font> 2994 *<font style="background-color: #F8F4FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F8F4FF; color: #ffffff"> @ </font> 2995 * 2996 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 2997 *<font style="background-color: #ff0000; color: #F8F4FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 2998 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 2999 */ 3000 public static final SColor MAGNOLIA = new SColor(0xF8F4FF, "Magnolia"); 3001 /** 3002 * Color constant<PRE> 3003 *<font style="background-color: #0BDA51; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0BDA51; color: #000000"> @ </font> 3004 *<font style="background-color: #0BDA51; color: #0BDA51"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #0BDA51; color: #888888"> @ </font> 3005 *<font style="background-color: #0BDA51; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0BDA51; color: #ffffff"> @ </font> 3006 * 3007 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3008 *<font style="background-color: #ff0000; color: #0BDA51"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3009 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3010 */ 3011 public static final SColor MALACHITE = new SColor(0x0BDA51, "Malachite"); 3012 /** 3013 * Color constant<PRE> 3014 *<font style="background-color: #800000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #800000; color: #000000"> @ </font> 3015 *<font style="background-color: #800000; color: #800000"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #800000; color: #888888"> @ </font> 3016 *<font style="background-color: #800000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #800000; color: #ffffff"> @ </font> 3017 * 3018 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3019 *<font style="background-color: #ff0000; color: #800000"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3020 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3021 */ 3022 public static final SColor MAROON = new SColor(0x800000, "Maroon"); 3023 /** 3024 * Color constant<PRE> 3025 *<font style="background-color: #ff00ff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ff00ff; color: #000000"> @ </font> 3026 *<font style="background-color: #ff00ff; color: #000000"> </font><font style="background-color: #000000; color: #ff00ff"> @ </font><font style="background-color: #888888; color: #ff00ff"> @ </font><font style="background-color: #ffffff; color: #ff00ff"> @ </font><font style="background-color: #ff00ff; color: #888888"> @ </font> 3027 *<font style="background-color: #ff00ff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ff00ff; color: #ffffff"> @ </font> 3028 * 3029 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3030 *<font style="background-color: #ff0000; color: #ff00ff"> @ </font><font style="background-color: #ffff00; color: #ff00ff"> @ </font><font style="background-color: #00ff00; color: #ff00ff"> @ </font><font style="background-color: #0000ff; color: #ff00ff"> @ </font><font style="background-color: #964b00; color: #ff00ff"> @ </font> 3031 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3032 */ 3033 public static final SColor MAGENTA = new SColor(0xff00ff, "Magenta"); 3034 /** 3035 * Color constant<PRE> 3036 *<font style="background-color: #73C2FB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #73C2FB; color: #000000"> @ </font> 3037 *<font style="background-color: #73C2FB; color: #73C2FB"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #73C2FB; color: #888888"> @ </font> 3038 *<font style="background-color: #73C2FB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #73C2FB; color: #ffffff"> @ </font> 3039 * 3040 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3041 *<font style="background-color: #ff0000; color: #73C2FB"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3042 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3043 */ 3044 public static final SColor MAYA_BLUE = new SColor(0x73C2FB, "Maya Blue"); 3045 /** 3046 * Color constant<PRE> 3047 *<font style="background-color: #E0B0FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E0B0FF; color: #000000"> @ </font> 3048 *<font style="background-color: #E0B0FF; color: #E0B0FF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E0B0FF; color: #888888"> @ </font> 3049 *<font style="background-color: #E0B0FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E0B0FF; color: #ffffff"> @ </font> 3050 * 3051 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3052 *<font style="background-color: #ff0000; color: #E0B0FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3053 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3054 */ 3055 public static final SColor MAUVE = new SColor(0xE0B0FF, "Mauve"); 3056 /** 3057 * Color constant<PRE> 3058 *<font style="background-color: #915F6D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #915F6D; color: #000000"> @ </font> 3059 *<font style="background-color: #915F6D; color: #915F6D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #915F6D; color: #888888"> @ </font> 3060 *<font style="background-color: #915F6D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #915F6D; color: #ffffff"> @ </font> 3061 * 3062 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3063 *<font style="background-color: #ff0000; color: #915F6D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3064 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3065 */ 3066 public static final SColor MAUVE_TAUPE = new SColor(0x915F6D, "Mauve Taupe"); 3067 /** 3068 * Color constant<PRE> 3069 *<font style="background-color: #F9906F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F9906F; color: #000000"> @ </font> 3070 *<font style="background-color: #F9906F; color: #F9906F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F9906F; color: #888888"> @ </font> 3071 *<font style="background-color: #F9906F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F9906F; color: #ffffff"> @ </font> 3072 * 3073 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3074 *<font style="background-color: #ff0000; color: #F9906F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3075 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3076 */ 3077 public static final SColor MEAT = new SColor(0xF9906F, "Meat"); 3078 /** 3079 * Color constant<PRE> 3080 *<font style="background-color: #0000CD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0000CD; color: #000000"> @ </font> 3081 *<font style="background-color: #0000CD; color: #0000CD"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #0000CD; color: #888888"> @ </font> 3082 *<font style="background-color: #0000CD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #0000CD; color: #ffffff"> @ </font> 3083 * 3084 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3085 *<font style="background-color: #ff0000; color: #0000CD"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3086 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3087 */ 3088 public static final SColor MEDIUM_BLUE = new SColor(0x0000CD, "Medium Blue"); 3089 /** 3090 * Color constant<PRE> 3091 *<font style="background-color: #AF4035; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AF4035; color: #000000"> @ </font> 3092 *<font style="background-color: #AF4035; color: #AF4035"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #AF4035; color: #888888"> @ </font> 3093 *<font style="background-color: #AF4035; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AF4035; color: #ffffff"> @ </font> 3094 * 3095 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3096 *<font style="background-color: #ff0000; color: #AF4035"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3097 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3098 */ 3099 public static final SColor MEDIUM_CARMINE = new SColor(0xAF4035, "Medium Carmine"); 3100 /** 3101 * Color constant<PRE> 3102 *<font style="background-color: #c93756; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #c93756; color: #000000"> @ </font> 3103 *<font style="background-color: #c93756; color: #c93756"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #c93756; color: #888888"> @ </font> 3104 *<font style="background-color: #c93756; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #c93756; color: #ffffff"> @ </font> 3105 * 3106 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3107 *<font style="background-color: #ff0000; color: #c93756"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3108 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3109 */ 3110 public static final SColor MEDIUM_CRIMSON = new SColor(0xc93756, "Medium Crimson"); 3111 /** 3112 * Color constant<PRE> 3113 *<font style="background-color: #CC99CC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC99CC; color: #000000"> @ </font> 3114 *<font style="background-color: #CC99CC; color: #CC99CC"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CC99CC; color: #888888"> @ </font> 3115 *<font style="background-color: #CC99CC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC99CC; color: #ffffff"> @ </font> 3116 * 3117 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3118 *<font style="background-color: #ff0000; color: #CC99CC"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3119 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3120 */ 3121 public static final SColor MEDIUM_LAVENDER_MAGENTA = new SColor(0xCC99CC, "Medium Lavender Magenta"); 3122 /** 3123 * Color constant<PRE> 3124 *<font style="background-color: #9370DB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9370DB; color: #000000"> @ </font> 3125 *<font style="background-color: #9370DB; color: #9370DB"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9370DB; color: #888888"> @ </font> 3126 *<font style="background-color: #9370DB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9370DB; color: #ffffff"> @ </font> 3127 * 3128 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3129 *<font style="background-color: #ff0000; color: #9370DB"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3130 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3131 */ 3132 public static final SColor MEDIUM_PURPLE = new SColor(0x9370DB, "Medium Purple"); 3133 /** 3134 * Color constant<PRE> 3135 *<font style="background-color: #00FA9A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00FA9A; color: #000000"> @ </font> 3136 *<font style="background-color: #00FA9A; color: #00FA9A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #00FA9A; color: #888888"> @ </font> 3137 *<font style="background-color: #00FA9A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00FA9A; color: #ffffff"> @ </font> 3138 * 3139 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3140 *<font style="background-color: #ff0000; color: #00FA9A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3141 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3142 */ 3143 public static final SColor MEDIUM_SPRING_GREEN = new SColor(0x00FA9A, "Medium Spring Green"); 3144 /** 3145 * Color constant<PRE> 3146 *<font style="background-color: #2A606B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2A606B; color: #000000"> @ </font> 3147 *<font style="background-color: #2A606B; color: #2A606B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2A606B; color: #888888"> @ </font> 3148 *<font style="background-color: #2A606B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2A606B; color: #ffffff"> @ </font> 3149 * 3150 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3151 *<font style="background-color: #ff0000; color: #2A606B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3152 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3153 */ 3154 public static final SColor MIDORI = new SColor(0x2A606B, "Midori"); 3155 /** 3156 * Color constant<PRE> 3157 *<font style="background-color: #003366; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #003366; color: #000000"> @ </font> 3158 *<font style="background-color: #003366; color: #003366"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #003366; color: #888888"> @ </font> 3159 *<font style="background-color: #003366; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #003366; color: #ffffff"> @ </font> 3160 * 3161 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3162 *<font style="background-color: #ff0000; color: #003366"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3163 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3164 */ 3165 public static final SColor MIDNIGHT_BLUE = new SColor(0x003366, "Midnight Blue"); 3166 /** 3167 * Color constant<PRE> 3168 *<font style="background-color: #98FF98; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #98FF98; color: #000000"> @ </font> 3169 *<font style="background-color: #98FF98; color: #98FF98"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #98FF98; color: #888888"> @ </font> 3170 *<font style="background-color: #98FF98; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #98FF98; color: #ffffff"> @ </font> 3171 * 3172 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3173 *<font style="background-color: #ff0000; color: #98FF98"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3174 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3175 */ 3176 public static final SColor MINT_GREEN = new SColor(0x98FF98, "Mint Green"); 3177 /** 3178 * Color constant<PRE> 3179 *<font style="background-color: #FFE4E1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFE4E1; color: #000000"> @ </font> 3180 *<font style="background-color: #FFE4E1; color: #FFE4E1"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFE4E1; color: #888888"> @ </font> 3181 *<font style="background-color: #FFE4E1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFE4E1; color: #ffffff"> @ </font> 3182 * 3183 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3184 *<font style="background-color: #ff0000; color: #FFE4E1"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3185 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3186 */ 3187 public static final SColor MISTY_ROSE = new SColor(0xFFE4E1, "Misty Rose"); 3188 /** 3189 * Color constant<PRE> 3190 *<font style="background-color: #8B7D3A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8B7D3A; color: #000000"> @ </font> 3191 *<font style="background-color: #8B7D3A; color: #8B7D3A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8B7D3A; color: #888888"> @ </font> 3192 *<font style="background-color: #8B7D3A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8B7D3A; color: #ffffff"> @ </font> 3193 * 3194 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3195 *<font style="background-color: #ff0000; color: #8B7D3A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3196 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3197 */ 3198 public static final SColor MOSS = new SColor(0x8B7D3A, "Moss"); 3199 /** 3200 * Color constant<PRE> 3201 *<font style="background-color: #ADDFAD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ADDFAD; color: #000000"> @ </font> 3202 *<font style="background-color: #ADDFAD; color: #ADDFAD"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #ADDFAD; color: #888888"> @ </font> 3203 *<font style="background-color: #ADDFAD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ADDFAD; color: #ffffff"> @ </font> 3204 * 3205 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3206 *<font style="background-color: #ff0000; color: #ADDFAD"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3207 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3208 */ 3209 public static final SColor MOSS_GREEN = new SColor(0xADDFAD, "Moss Green"); 3210 /** 3211 * Color constant<PRE> 3212 *<font style="background-color: #997A8D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #997A8D; color: #000000"> @ </font> 3213 *<font style="background-color: #997A8D; color: #997A8D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #997A8D; color: #888888"> @ </font> 3214 *<font style="background-color: #997A8D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #997A8D; color: #ffffff"> @ </font> 3215 * 3216 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3217 *<font style="background-color: #ff0000; color: #997A8D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3218 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3219 */ 3220 public static final SColor MOUNTBATTEN_PINK = new SColor(0x997A8D, "Mountbatten Pink"); 3221 /** 3222 * Color constant<PRE> 3223 *<font style="background-color: #5C544E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5C544E; color: #000000"> @ </font> 3224 *<font style="background-color: #5C544E; color: #5C544E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5C544E; color: #888888"> @ </font> 3225 *<font style="background-color: #5C544E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5C544E; color: #ffffff"> @ </font> 3226 * 3227 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3228 *<font style="background-color: #ff0000; color: #5C544E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3229 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3230 */ 3231 public static final SColor MOUSY_INDIGO = new SColor(0x5C544E, "Mousy Indigo"); 3232 /** 3233 * Color constant<PRE> 3234 *<font style="background-color: #766980; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #766980; color: #000000"> @ </font> 3235 *<font style="background-color: #766980; color: #766980"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #766980; color: #888888"> @ </font> 3236 *<font style="background-color: #766980; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #766980; color: #ffffff"> @ </font> 3237 * 3238 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3239 *<font style="background-color: #ff0000; color: #766980"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3240 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3241 */ 3242 public static final SColor MOUSY_WISTERIA = new SColor(0x766980, "Mousy Wisteria"); 3243 /** 3244 * Color constant<PRE> 3245 *<font style="background-color: #59292C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #59292C; color: #000000"> @ </font> 3246 *<font style="background-color: #59292C; color: #59292C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #59292C; color: #888888"> @ </font> 3247 *<font style="background-color: #59292C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #59292C; color: #ffffff"> @ </font> 3248 * 3249 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3250 *<font style="background-color: #ff0000; color: #59292C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3251 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3252 */ 3253 public static final SColor MULBERRY = new SColor(0x59292C, "Mulberry"); 3254 /** 3255 * Color constant<PRE> 3256 *<font style="background-color: #C57F2E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C57F2E; color: #000000"> @ </font> 3257 *<font style="background-color: #C57F2E; color: #C57F2E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C57F2E; color: #888888"> @ </font> 3258 *<font style="background-color: #C57F2E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C57F2E; color: #ffffff"> @ </font> 3259 * 3260 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3261 *<font style="background-color: #ff0000; color: #C57F2E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3262 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3263 */ 3264 public static final SColor MULBERRY_DYED = new SColor(0xC57F2E, "Mulberry Dyed"); 3265 /** 3266 * Color constant<PRE> 3267 *<font style="background-color: #FFDB58; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFDB58; color: #000000"> @ </font> 3268 *<font style="background-color: #FFDB58; color: #FFDB58"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFDB58; color: #888888"> @ </font> 3269 *<font style="background-color: #FFDB58; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFDB58; color: #ffffff"> @ </font> 3270 * 3271 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3272 *<font style="background-color: #ff0000; color: #FFDB58"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3273 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3274 */ 3275 public static final SColor MUSTARD = new SColor(0xFFDB58, "Mustard"); 3276 /** 3277 * Color constant<PRE> 3278 *<font style="background-color: #21421E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #21421E; color: #000000"> @ </font> 3279 *<font style="background-color: #21421E; color: #21421E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #21421E; color: #888888"> @ </font> 3280 *<font style="background-color: #21421E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #21421E; color: #ffffff"> @ </font> 3281 * 3282 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3283 *<font style="background-color: #ff0000; color: #21421E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3284 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3285 */ 3286 public static final SColor MYRTLE = new SColor(0x21421E, "Myrtle"); 3287 /** 3288 * Color constant<PRE> 3289 *<font style="background-color: #FFDEAD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFDEAD; color: #000000"> @ </font> 3290 *<font style="background-color: #FFDEAD; color: #FFDEAD"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFDEAD; color: #888888"> @ </font> 3291 *<font style="background-color: #FFDEAD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFDEAD; color: #ffffff"> @ </font> 3292 * 3293 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3294 *<font style="background-color: #ff0000; color: #FFDEAD"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3295 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3296 */ 3297 public static final SColor NAVAJO_WHITE = new SColor(0xFFDEAD, "Navajo White"); 3298 /** 3299 * Color constant<PRE> 3300 *<font style="background-color: #000080; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #000080; color: #000000"> @ </font> 3301 *<font style="background-color: #000080; color: #000080"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #000080; color: #888888"> @ </font> 3302 *<font style="background-color: #000080; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #000080; color: #ffffff"> @ </font> 3303 * 3304 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3305 *<font style="background-color: #ff0000; color: #000080"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3306 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3307 */ 3308 public static final SColor NAVY_BLUE = new SColor(0x000080, "Navy Blue"); 3309 /** 3310 * Color constant<PRE> 3311 *<font style="background-color: #191F45; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #191F45; color: #000000"> @ </font> 3312 *<font style="background-color: #191F45; color: #191F45"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #191F45; color: #888888"> @ </font> 3313 *<font style="background-color: #191F45; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #191F45; color: #ffffff"> @ </font> 3314 * 3315 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3316 *<font style="background-color: #ff0000; color: #191F45"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3317 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3318 */ 3319 public static final SColor NAVY_BLUE_BELLFLOWER = new SColor(0x191F45, "Navy Blue Bellflower"); 3320 /** 3321 * Color constant<PRE> 3322 *<font style="background-color: #003171; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #003171; color: #000000"> @ </font> 3323 *<font style="background-color: #003171; color: #003171"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #003171; color: #888888"> @ </font> 3324 *<font style="background-color: #003171; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #003171; color: #ffffff"> @ </font> 3325 * 3326 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3327 *<font style="background-color: #ff0000; color: #003171"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3328 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3329 */ 3330 public static final SColor NAVY_BLUE_DYE = new SColor(0x003171, "Navy Blue Dye"); 3331 /** 3332 * Color constant<PRE> 3333 *<font style="background-color: #006C7F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #006C7F; color: #000000"> @ </font> 3334 *<font style="background-color: #006C7F; color: #006C7F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #006C7F; color: #888888"> @ </font> 3335 *<font style="background-color: #006C7F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #006C7F; color: #ffffff"> @ </font> 3336 * 3337 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3338 *<font style="background-color: #ff0000; color: #006C7F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3339 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3340 */ 3341 public static final SColor NEW_BRIDGE = new SColor(0x006C7F, "New Bridge"); 3342 /** 3343 * Color constant<PRE> 3344 *<font style="background-color: #645530; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #645530; color: #000000"> @ </font> 3345 *<font style="background-color: #645530; color: #645530"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #645530; color: #888888"> @ </font> 3346 *<font style="background-color: #645530; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #645530; color: #ffffff"> @ </font> 3347 * 3348 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3349 *<font style="background-color: #ff0000; color: #645530"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3350 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3351 */ 3352 public static final SColor NIGHTINGALE = new SColor(0x645530, "Nightingale"); 3353 /** 3354 * Color constant<PRE> 3355 *<font style="background-color: #5C4827; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5C4827; color: #000000"> @ </font> 3356 *<font style="background-color: #5C4827; color: #5C4827"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5C4827; color: #888888"> @ </font> 3357 *<font style="background-color: #5C4827; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5C4827; color: #ffffff"> @ </font> 3358 * 3359 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3360 *<font style="background-color: #ff0000; color: #5C4827"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3361 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3362 */ 3363 public static final SColor NIGHTINGALE_BROWN = new SColor(0x5C4827, "Nightingale Brown"); 3364 /** 3365 * Color constant<PRE> 3366 *<font style="background-color: #50B0B8; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #50B0B8; color: #000000"> @ </font> 3367 *<font style="background-color: #50B0B8; color: #50B0B8"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #50B0B8; color: #888888"> @ </font> 3368 *<font style="background-color: #50B0B8; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #50B0B8; color: #ffffff"> @ </font> 3369 * 3370 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3371 *<font style="background-color: #ff0000; color: #50B0B8"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3372 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3373 */ 3374 public static final SColor OCEAN_BLUE = new SColor(0x50B0B8, "Ocean Blue"); 3375 /** 3376 * Color constant<PRE> 3377 *<font style="background-color: #CC7722; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC7722; color: #000000"> @ </font> 3378 *<font style="background-color: #CC7722; color: #CC7722"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CC7722; color: #888888"> @ </font> 3379 *<font style="background-color: #CC7722; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC7722; color: #ffffff"> @ </font> 3380 * 3381 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3382 *<font style="background-color: #ff0000; color: #CC7722"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3383 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3384 */ 3385 public static final SColor OCHRE = new SColor(0xCC7722, "Ochre"); 3386 /** 3387 * Color constant<PRE> 3388 *<font style="background-color: #5E644F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5E644F; color: #000000"> @ </font> 3389 *<font style="background-color: #5E644F; color: #5E644F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5E644F; color: #888888"> @ </font> 3390 *<font style="background-color: #5E644F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5E644F; color: #ffffff"> @ </font> 3391 * 3392 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3393 *<font style="background-color: #ff0000; color: #5E644F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3394 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3395 */ 3396 public static final SColor OLD_BAMBOO = new SColor(0x5E644F, "Old Bamboo"); 3397 /** 3398 * Color constant<PRE> 3399 *<font style="background-color: #CFB53B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CFB53B; color: #000000"> @ </font> 3400 *<font style="background-color: #CFB53B; color: #CFB53B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CFB53B; color: #888888"> @ </font> 3401 *<font style="background-color: #CFB53B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CFB53B; color: #ffffff"> @ </font> 3402 * 3403 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3404 *<font style="background-color: #ff0000; color: #CFB53B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3405 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3406 */ 3407 public static final SColor OLD_GOLD = new SColor(0xCFB53B, "Old Gold"); 3408 /** 3409 * Color constant<PRE> 3410 *<font style="background-color: #FDF5E6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FDF5E6; color: #000000"> @ </font> 3411 *<font style="background-color: #FDF5E6; color: #FDF5E6"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FDF5E6; color: #888888"> @ </font> 3412 *<font style="background-color: #FDF5E6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FDF5E6; color: #ffffff"> @ </font> 3413 * 3414 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3415 *<font style="background-color: #ff0000; color: #FDF5E6"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3416 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3417 */ 3418 public static final SColor OLD_LACE = new SColor(0xFDF5E6, "Old Lace"); 3419 /** 3420 * Color constant<PRE> 3421 *<font style="background-color: #796878; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #796878; color: #000000"> @ </font> 3422 *<font style="background-color: #796878; color: #796878"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #796878; color: #888888"> @ </font> 3423 *<font style="background-color: #796878; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #796878; color: #ffffff"> @ </font> 3424 * 3425 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3426 *<font style="background-color: #ff0000; color: #796878"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3427 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3428 */ 3429 public static final SColor OLD_LAVENDER = new SColor(0x796878, "Old Lavender"); 3430 /** 3431 * Color constant<PRE> 3432 *<font style="background-color: #C08081; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C08081; color: #000000"> @ </font> 3433 *<font style="background-color: #C08081; color: #C08081"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C08081; color: #888888"> @ </font> 3434 *<font style="background-color: #C08081; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C08081; color: #ffffff"> @ </font> 3435 * 3436 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3437 *<font style="background-color: #ff0000; color: #C08081"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3438 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3439 */ 3440 public static final SColor OLD_ROSE = new SColor(0xC08081, "Old Rose"); 3441 /** 3442 * Color constant<PRE> 3443 *<font style="background-color: #808000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #808000; color: #000000"> @ </font> 3444 *<font style="background-color: #808000; color: #808000"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #808000; color: #888888"> @ </font> 3445 *<font style="background-color: #808000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #808000; color: #ffffff"> @ </font> 3446 * 3447 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3448 *<font style="background-color: #ff0000; color: #808000"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3449 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3450 */ 3451 public static final SColor OLIVE = new SColor(0x808000, "Olive"); 3452 /** 3453 * Color constant<PRE> 3454 *<font style="background-color: #6B8E23; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6B8E23; color: #000000"> @ </font> 3455 *<font style="background-color: #6B8E23; color: #6B8E23"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6B8E23; color: #888888"> @ </font> 3456 *<font style="background-color: #6B8E23; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6B8E23; color: #ffffff"> @ </font> 3457 * 3458 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3459 *<font style="background-color: #ff0000; color: #6B8E23"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3460 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3461 */ 3462 public static final SColor OLIVE_DRAB = new SColor(0x6B8E23, "Olive Drab"); 3463 /** 3464 * Color constant<PRE> 3465 *<font style="background-color: #9AB973; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9AB973; color: #000000"> @ </font> 3466 *<font style="background-color: #9AB973; color: #9AB973"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9AB973; color: #888888"> @ </font> 3467 *<font style="background-color: #9AB973; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9AB973; color: #ffffff"> @ </font> 3468 * 3469 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3470 *<font style="background-color: #ff0000; color: #9AB973"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3471 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3472 */ 3473 public static final SColor OLIVINE = new SColor(0x9AB973, "Olivine"); 3474 /** 3475 * Color constant<PRE> 3476 *<font style="background-color: #364141; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #364141; color: #000000"> @ </font> 3477 *<font style="background-color: #364141; color: #364141"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #364141; color: #888888"> @ </font> 3478 *<font style="background-color: #364141; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #364141; color: #ffffff"> @ </font> 3479 * 3480 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3481 *<font style="background-color: #ff0000; color: #364141"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3482 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3483 */ 3484 public static final SColor ONANDO = new SColor(0x364141, "Onando"); 3485 /** 3486 * Color constant<PRE> 3487 *<font style="background-color: #f08f90; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #f08f90; color: #000000"> @ </font> 3488 *<font style="background-color: #f08f90; color: #000000"> </font><font style="background-color: #000000; color: #f08f90"> @ </font><font style="background-color: #888888; color: #f08f90"> @ </font><font style="background-color: #ffffff; color: #f08f90"> @ </font><font style="background-color: #f08f90; color: #888888"> @ </font> 3489 *<font style="background-color: #f08f90; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #f08f90; color: #ffffff"> @ </font> 3490 * 3491 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3492 *<font style="background-color: #ff0000; color: #f08f90"> @ </font><font style="background-color: #ffff00; color: #f08f90"> @ </font><font style="background-color: #00ff00; color: #f08f90"> @ </font><font style="background-color: #0000ff; color: #f08f90"> @ </font><font style="background-color: #964b00; color: #f08f90"> @ </font> 3493 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3494 */ 3495 public static final SColor ONE_KIN_DYE = new SColor(0xf08f90, "One Kin Dye"); 3496 /** 3497 * Color constant<PRE> 3498 *<font style="background-color: #4D646C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4D646C; color: #000000"> @ </font> 3499 *<font style="background-color: #4D646C; color: #4D646C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4D646C; color: #888888"> @ </font> 3500 *<font style="background-color: #4D646C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4D646C; color: #ffffff"> @ </font> 3501 * 3502 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3503 *<font style="background-color: #ff0000; color: #4D646C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3504 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3505 */ 3506 public static final SColor OPPOSITE_FLOWER = new SColor(0x4D646C, "Opposite Flower"); 3507 /** 3508 * Color constant<PRE> 3509 *<font style="background-color: #ffc800; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ffc800; color: #000000"> @ </font> 3510 *<font style="background-color: #ffc800; color: #000000"> </font><font style="background-color: #000000; color: #ffc800"> @ </font><font style="background-color: #888888; color: #ffc800"> @ </font><font style="background-color: #ffffff; color: #ffc800"> @ </font><font style="background-color: #ffc800; color: #888888"> @ </font> 3511 *<font style="background-color: #ffc800; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ffc800; color: #ffffff"> @ </font> 3512 * 3513 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3514 *<font style="background-color: #ff0000; color: #ffc800"> @ </font><font style="background-color: #ffff00; color: #ffc800"> @ </font><font style="background-color: #00ff00; color: #ffc800"> @ </font><font style="background-color: #0000ff; color: #ffc800"> @ </font><font style="background-color: #964b00; color: #ffc800"> @ </font> 3515 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3516 */ 3517 public static final SColor ORANGE = new SColor(0xffc800, "Orange"); 3518 /** 3519 * Color constant<PRE> 3520 *<font style="background-color: #FFA000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA000; color: #000000"> @ </font> 3521 *<font style="background-color: #FFA000; color: #FFA000"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFA000; color: #888888"> @ </font> 3522 *<font style="background-color: #FFA000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA000; color: #ffffff"> @ </font> 3523 * 3524 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3525 *<font style="background-color: #ff0000; color: #FFA000"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3526 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3527 */ 3528 public static final SColor ORANGE_PEEL = new SColor(0xFFA000, "Orange Peel"); 3529 /** 3530 * Color constant<PRE> 3531 *<font style="background-color: #FF4500; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF4500; color: #000000"> @ </font> 3532 *<font style="background-color: #FF4500; color: #FF4500"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF4500; color: #888888"> @ </font> 3533 *<font style="background-color: #FF4500; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF4500; color: #ffffff"> @ </font> 3534 * 3535 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3536 *<font style="background-color: #ff0000; color: #F8F4FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3537 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3538 */ 3539 public static final SColor ORANGE_RED = new SColor(0xFF4500, "Orange Red"); 3540 /** 3541 * Color constant<PRE> 3542 *<font style="background-color: #DC3023; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DC3023; color: #000000"> @ </font> 3543 *<font style="background-color: #DC3023; color: #DC3023"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DC3023; color: #888888"> @ </font> 3544 *<font style="background-color: #DC3023; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DC3023; color: #ffffff"> @ </font> 3545 * 3546 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3547 *<font style="background-color: #ff0000; color: #DC3023"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3548 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3549 */ 3550 public static final SColor ORANGUTAN = new SColor(0xDC3023, "Orangutan"); 3551 /** 3552 * Color constant<PRE> 3553 *<font style="background-color: #DA70D6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DA70D6; color: #000000"> @ </font> 3554 *<font style="background-color: #DA70D6; color: #DA70D6"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DA70D6; color: #888888"> @ </font> 3555 *<font style="background-color: #DA70D6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DA70D6; color: #ffffff"> @ </font> 3556 * 3557 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3558 *<font style="background-color: #ff0000; color: #DA70D6"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3559 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3560 */ 3561 public static final SColor ORCHID = new SColor(0xDA70D6, "Orchid"); 3562 /** 3563 * Color constant<PRE> 3564 *<font style="background-color: #E35C38; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E35C38; color: #000000"> @ </font> 3565 *<font style="background-color: #E35C38; color: #E35C38"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E35C38; color: #888888"> @ </font> 3566 *<font style="background-color: #E35C38; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E35C38; color: #ffffff"> @ </font> 3567 * 3568 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3569 *<font style="background-color: #ff0000; color: #E35C38"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3570 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3571 */ 3572 public static final SColor OVERDYED_RED_BROWN = new SColor(0xE35C38, "Overdyed Red Brown"); 3573 /** 3574 * Color constant<PRE> 3575 *<font style="background-color: #AFEEEE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AFEEEE; color: #000000"> @ </font> 3576 *<font style="background-color: #AFEEEE; color: #AFEEEE"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #AFEEEE; color: #888888"> @ </font> 3577 *<font style="background-color: #AFEEEE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AFEEEE; color: #ffffff"> @ </font> 3578 * 3579 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3580 *<font style="background-color: #ff0000; color: #AFEEEE"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3581 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3582 */ 3583 public static final SColor PALE_BLUE = new SColor(0xAFEEEE, "Pale Blue"); 3584 /** 3585 * Color constant<PRE> 3586 *<font style="background-color: #987654; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #987654; color: #000000"> @ </font> 3587 *<font style="background-color: #987654; color: #987654"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #987654; color: #888888"> @ </font> 3588 *<font style="background-color: #987654; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #987654; color: #ffffff"> @ </font> 3589 * 3590 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3591 *<font style="background-color: #ff0000; color: #987654"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3592 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3593 */ 3594 public static final SColor PALE_BROWN = new SColor(0x987654, "Pale Brown"); 3595 /** 3596 * Color constant<PRE> 3597 *<font style="background-color: #AF4035; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AF4035; color: #000000"> @ </font> 3598 *<font style="background-color: #AF4035; color: #AF4035"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #AF4035; color: #888888"> @ </font> 3599 *<font style="background-color: #AF4035; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AF4035; color: #ffffff"> @ </font> 3600 * 3601 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3602 *<font style="background-color: #ff0000; color: #AF4035"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3603 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3604 */ 3605 public static final SColor PALE_CARMINE = new SColor(0xAF4035, "Pale Carmine"); 3606 /** 3607 * Color constant<PRE> 3608 *<font style="background-color: #DDADAF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DDADAF; color: #000000"> @ </font> 3609 *<font style="background-color: #DDADAF; color: #DDADAF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DDADAF; color: #888888"> @ </font> 3610 *<font style="background-color: #DDADAF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DDADAF; color: #ffffff"> @ </font> 3611 * 3612 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3613 *<font style="background-color: #ff0000; color: #DDADAF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3614 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3615 */ 3616 public static final SColor PALE_CHESTNUT = new SColor(0xDDADAF, "Pale Chestnut"); 3617 /** 3618 * Color constant<PRE> 3619 *<font style="background-color: #ABCDEF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ABCDEF; color: #000000"> @ </font> 3620 *<font style="background-color: #ABCDEF; color: #ABCDEF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #ABCDEF; color: #888888"> @ </font> 3621 *<font style="background-color: #ABCDEF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ABCDEF; color: #ffffff"> @ </font> 3622 * 3623 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3624 *<font style="background-color: #ff0000; color: #ABCDEF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3625 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3626 */ 3627 public static final SColor PALE_CORNFLOWER_BLUE = new SColor(0xABCDEF, "Pale Cornflower Blue"); 3628 /** 3629 * Color constant<PRE> 3630 *<font style="background-color: #f2666c; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #f2666c; color: #000000"> @ </font> 3631 *<font style="background-color: #f2666c; color: #f2666c"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #f2666c; color: #888888"> @ </font> 3632 *<font style="background-color: #f2666c; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #f2666c; color: #ffffff"> @ </font> 3633 * 3634 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3635 *<font style="background-color: #ff0000; color: #f2666c"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3636 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3637 */ 3638 public static final SColor PALE_CRIMSON = new SColor(0xf2666c, "Pale Crimson"); 3639 /** 3640 * Color constant<PRE> 3641 *<font style="background-color: #AA8736; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AA8736; color: #000000"> @ </font> 3642 *<font style="background-color: #AA8736; color: #AA8736"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #AA8736; color: #888888"> @ </font> 3643 *<font style="background-color: #AA8736; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AA8736; color: #ffffff"> @ </font> 3644 * 3645 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3646 *<font style="background-color: #ff0000; color: #AA8736"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3647 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3648 */ 3649 public static final SColor PALE_FALLEN_LEAVES = new SColor(0xAA8736, "Pale Fallen Leaves"); 3650 /** 3651 * Color constant<PRE> 3652 *<font style="background-color: #749F8D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #749F8D; color: #000000"> @ </font> 3653 *<font style="background-color: #749F8D; color: #749F8D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #749F8D; color: #888888"> @ </font> 3654 *<font style="background-color: #749F8D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #749F8D; color: #ffffff"> @ </font> 3655 * 3656 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3657 *<font style="background-color: #ff0000; color: #749F8D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3658 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3659 */ 3660 public static final SColor PALE_GREEN_ONION = new SColor(0x749F8D, "Pale Green Onion"); 3661 /** 3662 * Color constant<PRE> 3663 *<font style="background-color: #FFA565; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA565; color: #000000"> @ </font> 3664 *<font style="background-color: #FFA565; color: #FFA565"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFA565; color: #888888"> @ </font> 3665 *<font style="background-color: #FFA565; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA565; color: #ffffff"> @ </font> 3666 * 3667 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3668 *<font style="background-color: #ff0000; color: #FFA565"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3669 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3670 */ 3671 public static final SColor PALE_INCENSE = new SColor(0xFFA565, "Pale Incense"); 3672 /** 3673 * Color constant<PRE> 3674 *<font style="background-color: #F984E5; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F984E5; color: #000000"> @ </font> 3675 *<font style="background-color: #F984E5; color: #F984E5"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F984E5; color: #888888"> @ </font> 3676 *<font style="background-color: #F984E5; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F984E5; color: #ffffff"> @ </font> 3677 * 3678 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3679 *<font style="background-color: #ff0000; color: #F984E5"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3680 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3681 */ 3682 public static final SColor PALE_MAGENTA = new SColor(0xF984E5, "Pale Magenta"); 3683 /** 3684 * Color constant<PRE> 3685 *<font style="background-color: #BBA46D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BBA46D; color: #000000"> @ </font> 3686 *<font style="background-color: #BBA46D; color: #BBA46D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #BBA46D; color: #888888"> @ </font> 3687 *<font style="background-color: #BBA46D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BBA46D; color: #ffffff"> @ </font> 3688 * 3689 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3690 *<font style="background-color: #ff0000; color: #BBA46D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3691 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3692 */ 3693 public static final SColor PALE_OAK = new SColor(0xBBA46D, "Pale Oak"); 3694 /** 3695 * Color constant<PRE> 3696 *<font style="background-color: #FCA474; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FCA474; color: #000000"> @ </font> 3697 *<font style="background-color: #FCA474; color: #FCA474"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FCA474; color: #888888"> @ </font> 3698 *<font style="background-color: #FCA474; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FCA474; color: #ffffff"> @ </font> 3699 * 3700 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3701 *<font style="background-color: #ff0000; color: #FCA474"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3702 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3703 */ 3704 public static final SColor PALE_PERSIMMON = new SColor(0xFCA474, "Pale Persimmon"); 3705 /** 3706 * Color constant<PRE> 3707 *<font style="background-color: #FADADD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FADADD; color: #000000"> @ </font> 3708 *<font style="background-color: #FADADD; color: #FADADD"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FADADD; color: #888888"> @ </font> 3709 *<font style="background-color: #FADADD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FADADD; color: #ffffff"> @ </font> 3710 * 3711 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3712 *<font style="background-color: #ff0000; color: #FADADD"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3713 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3714 */ 3715 public static final SColor PALE_PINK = new SColor(0xFADADD, "Pale Pink"); 3716 /** 3717 * Color constant<PRE> 3718 *<font style="background-color: #DB7093; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DB7093; color: #000000"> @ </font> 3719 *<font style="background-color: #DB7093; color: #DB7093"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DB7093; color: #888888"> @ </font> 3720 *<font style="background-color: #DB7093; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DB7093; color: #ffffff"> @ </font> 3721 * 3722 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3723 *<font style="background-color: #ff0000; color: #DB7093"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3724 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3725 */ 3726 public static final SColor PALE_RED_VIOLET = new SColor(0xDB7093, "Pale Red Violet"); 3727 /** 3728 * Color constant<PRE> 3729 *<font style="background-color: #8DB255; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8DB255; color: #000000"> @ </font> 3730 *<font style="background-color: #8DB255; color: #8DB255"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8DB255; color: #888888"> @ </font> 3731 *<font style="background-color: #8DB255; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8DB255; color: #ffffff"> @ </font> 3732 * 3733 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3734 *<font style="background-color: #ff0000; color: #8DB255"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3735 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3736 */ 3737 public static final SColor PALE_YOUNG_GREEN_ONION = new SColor(0x8DB255, "Pale Young Green Onion"); 3738 /** 3739 * Color constant<PRE> 3740 *<font style="background-color: #FFEFD5; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFEFD5; color: #000000"> @ </font> 3741 *<font style="background-color: #FFEFD5; color: #FFEFD5"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFEFD5; color: #888888"> @ </font> 3742 *<font style="background-color: #FFEFD5; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFEFD5; color: #ffffff"> @ </font> 3743 * 3744 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3745 *<font style="background-color: #ff0000; color: #FFEFD5"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3746 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3747 */ 3748 public static final SColor PAPAYA_WHIP = new SColor(0xFFEFD5, "Papaya Whip"); 3749 /** 3750 * Color constant<PRE> 3751 *<font style="background-color: #77DD77; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #77DD77; color: #000000"> @ </font> 3752 *<font style="background-color: #77DD77; color: #77DD77"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #77DD77; color: #888888"> @ </font> 3753 *<font style="background-color: #77DD77; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #77DD77; color: #ffffff"> @ </font> 3754 * 3755 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3756 *<font style="background-color: #ff0000; color: #77DD77"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3757 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3758 */ 3759 public static final SColor PASTEL_GREEN = new SColor(0x77DD77, "Pastel Green"); 3760 /** 3761 * Color constant<PRE> 3762 *<font style="background-color: #FFD1DC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFD1DC; color: #000000"> @ </font> 3763 *<font style="background-color: #FFD1DC; color: #FFD1DC"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFD1DC; color: #888888"> @ </font> 3764 *<font style="background-color: #FFD1DC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFD1DC; color: #ffffff"> @ </font> 3765 * 3766 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3767 *<font style="background-color: #ff0000; color: #FFD1DC"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3768 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3769 */ 3770 public static final SColor PASTEL_PINK = new SColor(0xFFD1DC, "Pastel Pink"); 3771 /** 3772 * Color constant<PRE> 3773 *<font style="background-color: #407A52; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #407A52; color: #000000"> @ </font> 3774 *<font style="background-color: #407A52; color: #407A52"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #407A52; color: #888888"> @ </font> 3775 *<font style="background-color: #407A52; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #407A52; color: #ffffff"> @ </font> 3776 * 3777 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3778 *<font style="background-color: #ff0000; color: #407A52"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3779 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3780 */ 3781 public static final SColor PATINA = new SColor(0x407A52, "Patina"); 3782 /** 3783 * Color constant<PRE> 3784 *<font style="background-color: #D9B611; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D9B611; color: #000000"> @ </font> 3785 *<font style="background-color: #D9B611; color: #D9B611"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D9B611; color: #888888"> @ </font> 3786 *<font style="background-color: #D9B611; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D9B611; color: #ffffff"> @ </font> 3787 * 3788 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3789 *<font style="background-color: #ff0000; color: #D9B611"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3790 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3791 */ 3792 public static final SColor PATRINIA_FLOWER = new SColor(0xD9B611, "Patrinia Flower"); 3793 /** 3794 * Color constant<PRE> 3795 *<font style="background-color: #FFE5B4; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFE5B4; color: #000000"> @ </font> 3796 *<font style="background-color: #FFE5B4; color: #FFE5B4"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFE5B4; color: #888888"> @ </font> 3797 *<font style="background-color: #FFE5B4; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFE5B4; color: #ffffff"> @ </font> 3798 * 3799 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3800 *<font style="background-color: #ff0000; color: #FFE5B4"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3801 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3802 */ 3803 public static final SColor PEACH = new SColor(0xFFE5B4, "Peach"); 3804 /** 3805 * Color constant<PRE> 3806 *<font style="background-color: #f47983; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #f47983; color: #000000"> @ </font> 3807 *<font style="background-color: #f47983; color: #f47983"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #f47983; color: #888888"> @ </font> 3808 *<font style="background-color: #f47983; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #f47983; color: #ffffff"> @ </font> 3809 * 3810 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3811 *<font style="background-color: #ff0000; color: #f47983"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3812 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3813 */ 3814 public static final SColor PEACH_DYE = new SColor(0xf47983, "Peach Dye"); 3815 /** 3816 * Color constant<PRE> 3817 *<font style="background-color: #FFCC99; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFCC99; color: #000000"> @ </font> 3818 *<font style="background-color: #FFCC99; color: #FFCC99"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFCC99; color: #888888"> @ </font> 3819 *<font style="background-color: #FFCC99; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFCC99; color: #ffffff"> @ </font> 3820 * 3821 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3822 *<font style="background-color: #ff0000; color: #FFCC99"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3823 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3824 */ 3825 public static final SColor PEACH_ORANGE = new SColor(0xFFCC99, "Peach Orange"); 3826 /** 3827 * Color constant<PRE> 3828 *<font style="background-color: #FADFAD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FADFAD; color: #000000"> @ </font> 3829 *<font style="background-color: #FADFAD; color: #FADFAD"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FADFAD; color: #888888"> @ </font> 3830 *<font style="background-color: #FADFAD; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FADFAD; color: #ffffff"> @ </font> 3831 * 3832 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3833 *<font style="background-color: #ff0000; color: #FADFAD"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3834 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3835 */ 3836 public static final SColor PEACH_YELLOW = new SColor(0xFADFAD, "Peach Yellow"); 3837 /** 3838 * Color constant<PRE> 3839 *<font style="background-color: #D1E231; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D1E231; color: #000000"> @ </font> 3840 *<font style="background-color: #D1E231; color: #D1E231"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D1E231; color: #888888"> @ </font> 3841 *<font style="background-color: #D1E231; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D1E231; color: #ffffff"> @ </font> 3842 * 3843 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3844 *<font style="background-color: #ff0000; color: #D1E231"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3845 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3846 */ 3847 public static final SColor PEAR = new SColor(0xD1E231, "Pear"); 3848 /** 3849 * Color constant<PRE> 3850 *<font style="background-color: #CCCCFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CCCCFF; color: #000000"> @ </font> 3851 *<font style="background-color: #CCCCFF; color: #CCCCFF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CCCCFF; color: #888888"> @ </font> 3852 *<font style="background-color: #CCCCFF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CCCCFF; color: #ffffff"> @ </font> 3853 * 3854 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3855 *<font style="background-color: #ff0000; color: #CCCCFF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3856 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3857 */ 3858 public static final SColor PERIWINKLE = new SColor(0xCCCCFF, "Periwinkle"); 3859 /** 3860 * Color constant<PRE> 3861 *<font style="background-color: #1C39BB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1C39BB; color: #000000"> @ </font> 3862 *<font style="background-color: #1C39BB; color: #1C39BB"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #1C39BB; color: #888888"> @ </font> 3863 *<font style="background-color: #1C39BB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #1C39BB; color: #ffffff"> @ </font> 3864 * 3865 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3866 *<font style="background-color: #ff0000; color: #1C39BB"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3867 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3868 */ 3869 public static final SColor PERSIAN_BLUE = new SColor(0x1C39BB, "Persian Blue"); 3870 /** 3871 * Color constant<PRE> 3872 *<font style="background-color: #00A693; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00A693; color: #000000"> @ </font> 3873 *<font style="background-color: #00A693; color: #00A693"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #00A693; color: #888888"> @ </font> 3874 *<font style="background-color: #00A693; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00A693; color: #ffffff"> @ </font> 3875 * 3876 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3877 *<font style="background-color: #ff0000; color: #00A693"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3878 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3879 */ 3880 public static final SColor PERSIAN_GREEN = new SColor(0x00A693, "Persian Green"); 3881 /** 3882 * Color constant<PRE> 3883 *<font style="background-color: #32127A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #32127A; color: #000000"> @ </font> 3884 *<font style="background-color: #32127A; color: #32127A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #32127A; color: #888888"> @ </font> 3885 *<font style="background-color: #32127A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #32127A; color: #ffffff"> @ </font> 3886 * 3887 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3888 *<font style="background-color: #ff0000; color: #32127A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3889 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3890 */ 3891 public static final SColor PERSIAN_INDIGO = new SColor(0x32127A, "Persian Indigo"); 3892 /** 3893 * Color constant<PRE> 3894 *<font style="background-color: #CC3333; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC3333; color: #000000"> @ </font> 3895 *<font style="background-color: #CC3333; color: #CC3333"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CC3333; color: #888888"> @ </font> 3896 *<font style="background-color: #CC3333; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC3333; color: #ffffff"> @ </font> 3897 * 3898 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3899 *<font style="background-color: #ff0000; color: #CC3333"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3900 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3901 */ 3902 public static final SColor PERSIAN_RED = new SColor(0xCC3333, "Persian Red"); 3903 /** 3904 * Color constant<PRE> 3905 *<font style="background-color: #F77FBE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F77FBE; color: #000000"> @ </font> 3906 *<font style="background-color: #F77FBE; color: #F77FBE"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F77FBE; color: #888888"> @ </font> 3907 *<font style="background-color: #F77FBE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F77FBE; color: #ffffff"> @ </font> 3908 * 3909 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3910 *<font style="background-color: #ff0000; color: #F77FBE"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3911 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3912 */ 3913 public static final SColor PERSIAN_PINK = new SColor(0xF77FBE, "Persian Pink"); 3914 /** 3915 * Color constant<PRE> 3916 *<font style="background-color: #FE28A2; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FE28A2; color: #000000"> @ </font> 3917 *<font style="background-color: #FE28A2; color: #FE28A2"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FE28A2; color: #888888"> @ </font> 3918 *<font style="background-color: #FE28A2; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FE28A2; color: #ffffff"> @ </font> 3919 * 3920 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3921 *<font style="background-color: #ff0000; color: #FE28A2"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3922 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3923 */ 3924 public static final SColor PERSIAN_ROSE = new SColor(0xFE28A2, "Persian Rose"); 3925 /** 3926 * Color constant<PRE> 3927 *<font style="background-color: #EC5800; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EC5800; color: #000000"> @ </font> 3928 *<font style="background-color: #EC5800; color: #EC5800"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #EC5800; color: #888888"> @ </font> 3929 *<font style="background-color: #EC5800; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EC5800; color: #ffffff"> @ </font> 3930 * 3931 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3932 *<font style="background-color: #ff0000; color: #EC5800"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3933 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3934 */ 3935 public static final SColor PERSIMMON = new SColor(0xEC5800, "Persimmon"); 3936 /** 3937 * Color constant<PRE> 3938 *<font style="background-color: #934337; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #934337; color: #000000"> @ </font> 3939 *<font style="background-color: #934337; color: #934337"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #934337; color: #888888"> @ </font> 3940 *<font style="background-color: #934337; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #934337; color: #ffffff"> @ </font> 3941 * 3942 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3943 *<font style="background-color: #ff0000; color: #934337"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3944 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3945 */ 3946 public static final SColor PERSIMMON_JUICE = new SColor(0x934337, "Persimmon Juice"); 3947 /** 3948 * Color constant<PRE> 3949 *<font style="background-color: #333399; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #333399; color: #000000"> @ </font> 3950 *<font style="background-color: #333399; color: #333399"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #333399; color: #888888"> @ </font> 3951 *<font style="background-color: #333399; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #333399; color: #ffffff"> @ </font> 3952 * 3953 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3954 *<font style="background-color: #ff0000; color: #333399"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3955 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3956 */ 3957 public static final SColor PIGMENT_BLUE = new SColor(0x333399, "Pigment Blue"); 3958 /** 3959 * Color constant<PRE> 3960 *<font style="background-color: #01796F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #01796F; color: #000000"> @ </font> 3961 *<font style="background-color: #01796F; color: #01796F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #01796F; color: #888888"> @ </font> 3962 *<font style="background-color: #01796F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #01796F; color: #ffffff"> @ </font> 3963 * 3964 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3965 *<font style="background-color: #ff0000; color: #01796F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3966 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3967 */ 3968 public static final SColor PINE_GREEN = new SColor(0x01796F, "Pine Green"); 3969 /** 3970 * Color constant<PRE> 3971 *<font style="background-color: #454D32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #454D32; color: #000000"> @ </font> 3972 *<font style="background-color: #454D32; color: #454D32"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #454D32; color: #888888"> @ </font> 3973 *<font style="background-color: #454D32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #454D32; color: #ffffff"> @ </font> 3974 * 3975 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3976 *<font style="background-color: #ff0000; color: #454D32"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3977 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3978 */ 3979 public static final SColor PINE_NEEDLE = new SColor(0x454D32, "Pine Needle"); 3980 /** 3981 * Color constant<PRE> 3982 *<font style="background-color: #ffafaf; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ffafaf; color: #000000"> @ </font> 3983 *<font style="background-color: #ffafaf; color: #000000"> </font><font style="background-color: #000000; color: #ffafaf"> @ </font><font style="background-color: #888888; color: #ffafaf"> @ </font><font style="background-color: #ffffff; color: #ffafaf"> @ </font><font style="background-color: #ffafaf; color: #888888"> @ </font> 3984 *<font style="background-color: #ffafaf; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ffc800; color: #ffffff"> @ </font> 3985 * 3986 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3987 *<font style="background-color: #ff0000; color: #ffafaf"> @ </font><font style="background-color: #ffff00; color: #ffafaf"> @ </font><font style="background-color: #00ff00; color: #ffafaf"> @ </font><font style="background-color: #0000ff; color: #ffafaf"> @ </font><font style="background-color: #964b00; color: #ffafaf"> @ </font> 3988 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 3989 */ 3990 public static final SColor PINK = new SColor(0xffafaf, "Pink"); 3991 /** 3992 * Color constant<PRE> 3993 *<font style="background-color: #FF9966; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF9966; color: #000000"> @ </font> 3994 *<font style="background-color: #FF9966; color: #FF9966"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF9966; color: #888888"> @ </font> 3995 *<font style="background-color: #FF9966; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF9966; color: #ffffff"> @ </font> 3996 * 3997 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 3998 *<font style="background-color: #ff0000; color: #FF9966"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 3999 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4000 */ 4001 public static final SColor PINK_ORANGE = new SColor(0xFF9966, "Pink Orange"); 4002 /** 4003 * Color constant<PRE> 4004 *<font style="background-color: #6E5F57; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6E5F57; color: #000000"> @ </font> 4005 *<font style="background-color: #6E5F57; color: #6E5F57"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6E5F57; color: #888888"> @ </font> 4006 *<font style="background-color: #6E5F57; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6E5F57; color: #ffffff"> @ </font> 4007 * 4008 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4009 *<font style="background-color: #ff0000; color: #6E5F57"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4010 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4011 */ 4012 public static final SColor PLAIN_MOUSE = new SColor(0x6E5F57, "Plain Mosue"); 4013 /** 4014 * Color constant<PRE> 4015 *<font style="background-color: #E5E4E2; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E5E4E2; color: #000000"> @ </font> 4016 *<font style="background-color: #E5E4E2; color: #E5E4E2"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E5E4E2; color: #888888"> @ </font> 4017 *<font style="background-color: #E5E4E2; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E5E4E2; color: #ffffff"> @ </font> 4018 * 4019 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4020 *<font style="background-color: #ff0000; color: #E5E4E2"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4021 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4022 */ 4023 public static final SColor PLATINUM = new SColor(0xE5E4E2, "Platinum"); 4024 /** 4025 * Color constant<PRE> 4026 *<font style="background-color: #CC99CC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC99CC; color: #000000"> @ </font> 4027 *<font style="background-color: #CC99CC; color: #CC99CC"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CC99CC; color: #888888"> @ </font> 4028 *<font style="background-color: #CC99CC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC99CC; color: #ffffff"> @ </font> 4029 * 4030 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4031 *<font style="background-color: #ff0000; color: #CC99CC"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4032 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4033 */ 4034 public static final SColor PLUM = new SColor(0xCC99CC, "Plum"); 4035 /** 4036 * Color constant<PRE> 4037 *<font style="background-color: #97645A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #97645A; color: #000000"> @ </font> 4038 *<font style="background-color: #97645A; color: #97645A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #97645A; color: #888888"> @ </font> 4039 *<font style="background-color: #97645A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #97645A; color: #ffffff"> @ </font> 4040 * 4041 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4042 *<font style="background-color: #ff0000; color: #97645A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4043 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4044 */ 4045 public static final SColor PLUM_BLOSSOM_MOUSE = new SColor(0x97645A, "Plum Blossom Mouse"); 4046 /** 4047 * Color constant<PRE> 4048 *<font style="background-color: #FA9258; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FA9258; color: #000000"> @ </font> 4049 *<font style="background-color: #FA9258; color: #FA9258"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FA9258; color: #888888"> @ </font> 4050 *<font style="background-color: #FA9258; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FA9258; color: #ffffff"> @ </font> 4051 * 4052 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4053 *<font style="background-color: #ff0000; color: #FA9258"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4054 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4055 */ 4056 public static final SColor PLUM_DYED = new SColor(0xFA9258, "Plum Dyed"); 4057 /** 4058 * Color constant<PRE> 4059 *<font style="background-color: #8F4155; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8F4155; color: #000000"> @ </font> 4060 *<font style="background-color: #8F4155; color: #8F4155"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8F4155; color: #888888"> @ </font> 4061 *<font style="background-color: #8F4155; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8F4155; color: #ffffff"> @ </font> 4062 * 4063 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4064 *<font style="background-color: #ff0000; color: #8F4155"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4065 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4066 */ 4067 public static final SColor PLUM_PURPLE = new SColor(0x8F4155, "Plum Purple"); 4068 /** 4069 * Color constant<PRE> 4070 *<font style="background-color: #9F5233; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9F5233; color: #000000"> @ </font> 4071 *<font style="background-color: #9F5233; color: #9F5233"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9F5233; color: #888888"> @ </font> 4072 *<font style="background-color: #9F5233; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9F5233; color: #ffffff"> @ </font> 4073 * 4074 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4075 *<font style="background-color: #ff0000; color: #9F5233"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4076 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4077 */ 4078 public static final SColor POLISHED_BROWN = new SColor(0x9F5233, "Polished Brown"); 4079 /** 4080 * Color constant<PRE> 4081 *<font style="background-color: #B0E0E6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B0E0E6; color: #000000"> @ </font> 4082 *<font style="background-color: #B0E0E6; color: #B0E0E6"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B0E0E6; color: #888888"> @ </font> 4083 *<font style="background-color: #B0E0E6; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B0E0E6; color: #ffffff"> @ </font> 4084 * 4085 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4086 *<font style="background-color: #ff0000; color: #B0E0E6"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4087 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4088 */ 4089 public static final SColor POWDER_BLUE = new SColor(0xB0E0E6, "Powder Blue"); 4090 /** 4091 * Color constant<PRE> 4092 *<font style="background-color: #003153; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #003153; color: #000000"> @ </font> 4093 *<font style="background-color: #003153; color: #003153"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #003153; color: #888888"> @ </font> 4094 *<font style="background-color: #003153; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #003153; color: #ffffff"> @ </font> 4095 * 4096 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4097 *<font style="background-color: #ff0000; color: #003153"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4098 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4099 */ 4100 public static final SColor PRUSSIAN_BLUE = new SColor(0x003153, "Prussian Blue"); 4101 /** 4102 * Color constant<PRE> 4103 *<font style="background-color: #DD00FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DD00FF; color: #000000"> @ </font> 4104 *<font style="background-color: #DD00FF; color: #DD00FF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #DD00FF; color: #888888"> @ </font> 4105 *<font style="background-color: #DD00FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #DD00FF; color: #ffffff"> @ </font> 4106 * 4107 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4108 *<font style="background-color: #ff0000; color: #DD00FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4109 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4110 */ 4111 public static final SColor PSYCHEDELIC_PURPLE = new SColor(0xDD00FF, "Psychedelic Purple"); 4112 /** 4113 * Color constant<PRE> 4114 *<font style="background-color: #CC8899; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC8899; color: #000000"> @ </font> 4115 *<font style="background-color: #CC8899; color: #CC8899"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CC8899; color: #888888"> @ </font> 4116 *<font style="background-color: #CC8899; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CC8899; color: #ffffff"> @ </font> 4117 * 4118 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4119 *<font style="background-color: #ff0000; color: #CC8899"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4120 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4121 */ 4122 public static final SColor PUCE = new SColor(0xCC8899, "Puce"); 4123 /** 4124 * Color constant<PRE> 4125 *<font style="background-color: #FF7518; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF7518; color: #000000"> @ </font> 4126 *<font style="background-color: #FF7518; color: #FF7518"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF7518; color: #888888"> @ </font> 4127 *<font style="background-color: #FF7518; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF7518; color: #ffffff"> @ </font> 4128 * 4129 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4130 *<font style="background-color: #ff0000; color: #FF7518"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4131 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4132 */ 4133 public static final SColor PUMPKIN = new SColor(0xFF7518, "Pumpkin"); 4134 /** 4135 * Color constant<PRE> 4136 *<font style="background-color: #C3272B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C3272B; color: #000000"> @ </font> 4137 *<font style="background-color: #C3272B; color: #C3272B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C3272B; color: #888888"> @ </font> 4138 *<font style="background-color: #C3272B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C3272B; color: #ffffff"> @ </font> 4139 * 4140 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4141 *<font style="background-color: #ff0000; color: #C3272B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4142 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4143 */ 4144 public static final SColor PURE_CRIMSON = new SColor(0xC3272B, "Pure Crimson"); 4145 /** 4146 * Color constant<PRE> 4147 *<font style="background-color: #2F2F2F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2F2F2F; color: #000000"> @ </font> 4148 *<font style="background-color: #2F2F2F; color: #2F2F2F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2F2F2F; color: #888888"> @ </font> 4149 *<font style="background-color: #2F2F2F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2F2F2F; color: #ffffff"> @ </font> 4150 * 4151 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4152 *<font style="background-color: #ff0000; color: #2F2F2F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4153 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4154 */ 4155 public static final SColor PURE_DARK_GRAY = new SColor(0x3F4041, "Pure Dark Gray"); 4156 /** 4157 * Color constant<PRE> 4158 *<font style="background-color: #800080; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #800080; color: #000000"> @ </font> 4159 *<font style="background-color: #800080; color: #000000"> </font><font style="background-color: #000000; color: #800080"> @ </font><font style="background-color: #888888; color: #800080"> @ </font><font style="background-color: #ffffff; color: #800080"> @ </font><font style="background-color: #800080; color: #888888"> @ </font> 4160 *<font style="background-color: #800080; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #800080; color: #ffffff"> @ </font> 4161 * 4162 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4163 *<font style="background-color: #ff0000; color: #800080"> @ </font><font style="background-color: #ffff00; color: #800080"> @ </font><font style="background-color: #00ff00; color: #800080"> @ </font><font style="background-color: #0000ff; color: #800080"> @ </font><font style="background-color: #964b00; color: #800080"> @ </font> 4164 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4165 */ 4166 public static final SColor PURPLE = new SColor(0x800080, "Purple"); 4167 /** 4168 * Color constant<PRE> 4169 *<font style="background-color: #4F284B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4F284B; color: #000000"> @ </font> 4170 *<font style="background-color: #4F284B; color: #4F284B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4F284B; color: #888888"> @ </font> 4171 *<font style="background-color: #4F284B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4F284B; color: #ffffff"> @ </font> 4172 * 4173 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4174 *<font style="background-color: #ff0000; color: #4F284B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4175 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4176 */ 4177 public static final SColor PURPLE_DYE = new SColor(0x4F284B, "Purple Dye"); 4178 /** 4179 * Color constant<PRE> 4180 *<font style="background-color: #512C31; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #512C31; color: #000000"> @ </font> 4181 *<font style="background-color: #512C31; color: #512C31"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #512C31; color: #888888"> @ </font> 4182 *<font style="background-color: #512C31; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #512C31; color: #ffffff"> @ </font> 4183 * 4184 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4185 *<font style="background-color: #ff0000; color: #512C31"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4186 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4187 */ 4188 public static final SColor PURPLE_KITE = new SColor(0x512C31, "Purple Kite"); 4189 /** 4190 * Color constant<PRE> 4191 *<font style="background-color: #50404D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #50404D; color: #000000"> @ </font> 4192 *<font style="background-color: #50404D; color: #50404D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #50404D; color: #888888"> @ </font> 4193 *<font style="background-color: #50404D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #50404D; color: #ffffff"> @ </font> 4194 * 4195 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4196 *<font style="background-color: #ff0000; color: #50404D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4197 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4198 */ 4199 public static final SColor PURPLE_TAUPE = new SColor(0x50404D, "Purple Taupe"); 4200 /** 4201 * Color constant<PRE> 4202 *<font style="background-color: #491E3C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #491E3C; color: #000000"> @ </font> 4203 *<font style="background-color: #491E3C; color: #491E3C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #491E3C; color: #888888"> @ </font> 4204 *<font style="background-color: #491E3C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #491E3C; color: #ffffff"> @ </font> 4205 * 4206 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4207 *<font style="background-color: #ff0000; color: #491E3C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4208 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4209 */ 4210 public static final SColor RABBIT_EAR_IRIS = new SColor(0x491E3C, "Rabbit Ear Iris"); 4211 /** 4212 * Color constant<PRE> 4213 *<font style="background-color: #E3B130; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E3B130; color: #000000"> @ </font> 4214 *<font style="background-color: #E3B130; color: #E3B130"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E3B130; color: #888888"> @ </font> 4215 *<font style="background-color: #E3B130; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E3B130; color: #ffffff"> @ </font> 4216 * 4217 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4218 *<font style="background-color: #ff0000; color: #E3B130"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4219 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4220 */ 4221 public static final SColor RAPEBLOSSOM_BROWN = new SColor(0xE3B130, "Rapeblossom Brown"); 4222 /** 4223 * Color constant<PRE> 4224 *<font style="background-color: #A17917; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A17917; color: #000000"> @ </font> 4225 *<font style="background-color: #A17917; color: #A17917"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #A17917; color: #888888"> @ </font> 4226 *<font style="background-color: #A17917; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A17917; color: #ffffff"> @ </font> 4227 * 4228 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4229 *<font style="background-color: #ff0000; color: #A17917"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4230 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4231 */ 4232 public static final SColor RAPESEED_OIL = new SColor(0xA17917, "Rapeseed Oil"); 4233 /** 4234 * Color constant<PRE> 4235 *<font style="background-color: #734A12; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #734A12; color: #000000"> @ </font> 4236 *<font style="background-color: #734A12; color: #734A12"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #734A12; color: #888888"> @ </font> 4237 *<font style="background-color: #734A12; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #734A12; color: #ffffff"> @ </font> 4238 * 4239 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4240 *<font style="background-color: #ff0000; color: #734A12"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4241 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4242 */ 4243 public static final SColor RAW_UMBER = new SColor(0x734A12, "Raw Umber"); 4244 /** 4245 * Color constant<PRE> 4246 *<font style="background-color: #E30B5C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E30B5C; color: #000000"> @ </font> 4247 *<font style="background-color: #E30B5C; color: #E30B5C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E30B5C; color: #888888"> @ </font> 4248 *<font style="background-color: #E30B5C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E30B5C; color: #ffffff"> @ </font> 4249 * 4250 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4251 *<font style="background-color: #ff0000; color: #E30B5C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4252 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4253 */ 4254 public static final SColor RAZZMATAZZ = new SColor(0xE30B5C, "Razzamatazz"); 4255 /** 4256 * Color constant<PRE> 4257 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ff0000; color: #000000"> @ </font> 4258 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #000000; color: #ff0000"> @ </font><font style="background-color: #888888; color: #ff0000"> @ </font><font style="background-color: #ffffff; color: #ff0000"> @ </font><font style="background-color: #ff0000; color: #888888"> @ </font> 4259 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ff0000; color: #ffffff"> @ </font> 4260 * 4261 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4262 *<font style="background-color: #ff0000; color: #ff0000"> @ </font><font style="background-color: #ffff00; color: #ff0000"> @ </font><font style="background-color: #00ff00; color: #ff0000"> @ </font><font style="background-color: #0000ff; color: #ff0000"> @ </font><font style="background-color: #964b00; color: #ff0000"> @ </font> 4263 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4264 */ 4265 public static final SColor RED = new SColor(0xff0000, "Red"); 4266 /** 4267 * Color constant<PRE> 4268 *<font style="background-color: #672422; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #672422; color: #000000"> @ </font> 4269 *<font style="background-color: #672422; color: #672422"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #672422; color: #888888"> @ </font> 4270 *<font style="background-color: #672422; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #672422; color: #ffffff"> @ </font> 4271 * 4272 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4273 *<font style="background-color: #ff0000; color: #672422"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4274 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4275 */ 4276 public static final SColor RED_BEAN = new SColor(0x672422, "Red Bean"); 4277 /** 4278 * Color constant<PRE> 4279 *<font style="background-color: #9D2B22; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9D2B22; color: #000000"> @ </font> 4280 *<font style="background-color: #9D2B22; color: #9D2B22"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9D2B22; color: #888888"> @ </font> 4281 *<font style="background-color: #9D2B22; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9D2B22; color: #ffffff"> @ </font> 4282 * 4283 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4284 *<font style="background-color: #ff0000; color: #9D2B22"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4285 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4286 */ 4287 public static final SColor RED_BIRCH = new SColor(0x9D2B22, "Red Birch"); 4288 /** 4289 * Color constant<PRE> 4290 *<font style="background-color: #F07F5E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F07F5E; color: #000000"> @ </font> 4291 *<font style="background-color: #F07F5E; color: #F07F5E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F07F5E; color: #888888"> @ </font> 4292 *<font style="background-color: #F07F5E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F07F5E; color: #ffffff"> @ </font> 4293 * 4294 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4295 *<font style="background-color: #ff0000; color: #F07F5E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4296 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4297 */ 4298 public static final SColor RED_INCENSE = new SColor(0xF07F5E, "Red Incense"); 4299 /** 4300 * Color constant<PRE> 4301 *<font style="background-color: #FB8136; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FB8136; color: #000000"> @ </font> 4302 *<font style="background-color: #FB8136; color: #FB8136"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FB8136; color: #888888"> @ </font> 4303 *<font style="background-color: #FB8136; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FB8136; color: #ffffff"> @ </font> 4304 * 4305 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4306 *<font style="background-color: #ff0000; color: #FB8136"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4307 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4308 */ 4309 public static final SColor RED_DYE_TURMERIC = new SColor(0xFB8136, "Red Dye Turmeric"); 4310 /** 4311 * Color constant<PRE> 4312 *<font style="background-color: #913228; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #913228; color: #000000"> @ </font> 4313 *<font style="background-color: #913228; color: #913228"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #913228; color: #888888"> @ </font> 4314 *<font style="background-color: #913228; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #913228; color: #ffffff"> @ </font> 4315 * 4316 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4317 *<font style="background-color: #ff0000; color: #913228"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4318 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4319 */ 4320 public static final SColor RED_KITE = new SColor(0x913228, "Red Kite"); 4321 /** 4322 * Color constant<PRE> 4323 *<font style="background-color: #9F5233; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9F5233; color: #000000"> @ </font> 4324 *<font style="background-color: #9F5233; color: #9F5233"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9F5233; color: #888888"> @ </font> 4325 *<font style="background-color: #9F5233; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9F5233; color: #ffffff"> @ </font> 4326 * 4327 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4328 *<font style="background-color: #ff0000; color: #9F5233"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4329 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4330 */ 4331 public static final SColor RED_OCHRE = new SColor(0x9F5233, "Red Ochre"); 4332 /** 4333 * Color constant<PRE> 4334 *<font style="background-color: #ED1C24; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ED1C24; color: #000000"> @ </font> 4335 *<font style="background-color: #ED1C24; color: #ED1C24"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #ED1C24; color: #888888"> @ </font> 4336 *<font style="background-color: #ED1C24; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ED1C24; color: #ffffff"> @ </font> 4337 * 4338 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4339 *<font style="background-color: #ff0000; color: #ED1C24"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4340 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4341 */ 4342 public static final SColor RED_PIGMENT = new SColor(0xED1C24, "Red Pigment"); 4343 /** 4344 * Color constant<PRE> 4345 *<font style="background-color: #db5a6b; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #db5a6b; color: #000000"> @ </font> 4346 *<font style="background-color: #db5a6b; color: #db5a6b"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #db5a6b; color: #888888"> @ </font> 4347 *<font style="background-color: #db5a6b; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #db5a6b; color: #ffffff"> @ </font> 4348 * 4349 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4350 *<font style="background-color: #ff0000; color: #db5a6b"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #db5a6b;"> @ </font> 4351 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4352 */ 4353 public static final SColor RED_PLUM = new SColor(0xdb5a6b, "Red Plum"); 4354 /** 4355 * Color constant<PRE> 4356 *<font style="background-color: #C71585; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C71585; color: #000000"> @ </font> 4357 *<font style="background-color: #C71585; color: #C71585"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C71585; color: #888888"> @ </font> 4358 *<font style="background-color: #C71585; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C71585; color: #ffffff"> @ </font> 4359 * 4360 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4361 *<font style="background-color: #ff0000; color: #C71585"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4362 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4363 */ 4364 public static final SColor RED_VIOLET = new SColor(0xC71585, "Red Violet"); 4365 /** 4366 * Color constant<PRE> 4367 *<font style="background-color: #BB7796; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BB7796; color: #000000"> @ </font> 4368 *<font style="background-color: #BB7796; color: #BB7796"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #BB7796; color: #888888"> @ </font> 4369 *<font style="background-color: #BB7796; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BB7796; color: #ffffff"> @ </font> 4370 * 4371 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4372 *<font style="background-color: #ff0000; color: #BB7796"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4373 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4374 */ 4375 public static final SColor RED_WISTERIA = new SColor(0xBB7796, "Red Wisteria"); 4376 /** 4377 * Color constant<PRE> 4378 *<font style="background-color: #D70040; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D70040; color: #000000"> @ </font> 4379 *<font style="background-color: #D70040; color: #D70040"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D70040; color: #888888"> @ </font> 4380 *<font style="background-color: #D70040; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D70040; color: #ffffff"> @ </font> 4381 * 4382 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4383 *<font style="background-color: #ff0000; color: #D70040"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4384 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4385 */ 4386 public static final SColor RICH_CARMINE = new SColor(0xD70040, "Rich Carmine"); 4387 /** 4388 * Color constant<PRE> 4389 *<font style="background-color: #F57F4F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F57F4F; color: #000000"> @ </font> 4390 *<font style="background-color: #F57F4F; color: #F57F4F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F57F4F; color: #888888"> @ </font> 4391 *<font style="background-color: #F57F4F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F57F4F; color: #ffffff"> @ </font> 4392 * 4393 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4394 *<font style="background-color: #ff0000; color: #F57F4F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4395 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4396 */ 4397 public static final SColor RICH_GARDENIA = new SColor(0xF57F4F, "Rich Gardenia"); 4398 /** 4399 * Color constant<PRE> 4400 *<font style="background-color: #FF7952; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF7952; color: #000000"> @ </font> 4401 *<font style="background-color: #FF7952; color: #FF7952"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF7952; color: #888888"> @ </font> 4402 *<font style="background-color: #FF7952; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF7952; color: #ffffff"> @ </font> 4403 * 4404 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4405 *<font style="background-color: #ff0000; color: #FF7952"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4406 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4407 */ 4408 public static final SColor RINSED_OUT_RED = new SColor(0xFF7952, "Rinsed Out Red"); 4409 /** 4410 * Color constant<PRE> 4411 *<font style="background-color: #534A32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #534A32; color: #000000"> @ </font> 4412 *<font style="background-color: #534A32; color: #534A32"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #534A32; color: #888888"> @ </font> 4413 *<font style="background-color: #534A32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #534A32; color: #ffffff"> @ </font> 4414 * 4415 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4416 *<font style="background-color: #ff0000; color: #534A32"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4417 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4418 */ 4419 public static final SColor RIKAN_BROWN = new SColor(0x534A32, "Rikan Brown"); 4420 /** 4421 * Color constant<PRE> 4422 *<font style="background-color: #00CCCC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00CCCC; color: #000000"> @ </font> 4423 *<font style="background-color: #00CCCC; color: #00CCCC"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #00CCCC; color: #888888"> @ </font> 4424 *<font style="background-color: #00CCCC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00CCCC; color: #ffffff"> @ </font> 4425 * 4426 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4427 *<font style="background-color: #ff0000; color: #00CCCC"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4428 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4429 */ 4430 public static final SColor ROBIN_EGG_BLUE = new SColor(0x00CCCC, "Robin Egg Blue"); 4431 /** 4432 * Color constant<PRE> 4433 *<font style="background-color: #FF007F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF007F; color: #000000"> @ </font> 4434 *<font style="background-color: #FF007F; color: #FF007F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF007F; color: #888888"> @ </font> 4435 *<font style="background-color: #FF007F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF007F; color: #ffffff"> @ </font> 4436 * 4437 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4438 *<font style="background-color: #ff0000; color: #FF007F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4439 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4440 */ 4441 public static final SColor ROSE = new SColor(0xFF007F, "Rose"); 4442 /** 4443 * Color constant<PRE> 4444 *<font style="background-color: #E32636; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E32636; color: #000000"> @ </font> 4445 *<font style="background-color: #E32636; color: #E32636"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E32636; color: #888888"> @ </font> 4446 *<font style="background-color: #E32636; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E32636; color: #ffffff"> @ </font> 4447 * 4448 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4449 *<font style="background-color: #ff0000; color: #E32636"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4450 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4451 */ 4452 public static final SColor ROSE_MADDER = new SColor(0xE32636, "Rose Madder"); 4453 /** 4454 * Color constant<PRE> 4455 *<font style="background-color: #905D5D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #905D5D; color: #000000"> @ </font> 4456 *<font style="background-color: #905D5D; color: #905D5D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #905D5D; color: #888888"> @ </font> 4457 *<font style="background-color: #905D5D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #905D5D; color: #ffffff"> @ </font> 4458 * 4459 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4460 *<font style="background-color: #ff0000; color: #905D5D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4461 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4462 */ 4463 public static final SColor ROSE_TAUPE = new SColor(0x905D5D, "Rose Taupe"); 4464 /** 4465 * Color constant<PRE> 4466 *<font style="background-color: #4169E1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4169E1; color: #000000"> @ </font> 4467 *<font style="background-color: #4169E1; color: #4169E1"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4169E1; color: #888888"> @ </font> 4468 *<font style="background-color: #4169E1; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4169E1; color: #ffffff"> @ </font> 4469 * 4470 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4471 *<font style="background-color: #ff0000; color: #4169E1"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4472 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4473 */ 4474 public static final SColor ROYAL_BLUE = new SColor(0x4169E1, "Royal Blue"); 4475 /** 4476 * Color constant<PRE> 4477 *<font style="background-color: #6B3FA0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6B3FA0; color: #000000"> @ </font> 4478 *<font style="background-color: #6B3FA0; color: #6B3FA0"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6B3FA0; color: #888888"> @ </font> 4479 *<font style="background-color: #6B3FA0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6B3FA0; color: #ffffff"> @ </font> 4480 * 4481 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4482 *<font style="background-color: #ff0000; color: #6B3FA0"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4483 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4484 */ 4485 public static final SColor ROYAL_PURPLE = new SColor(0x6B3FA0, "Royal Purple"); 4486 /** 4487 * Color constant<PRE> 4488 *<font style="background-color: #E0115F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E0115F; color: #000000"> @ </font> 4489 *<font style="background-color: #E0115F; color: #E0115F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E0115F; color: #888888"> @ </font> 4490 *<font style="background-color: #E0115F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E0115F; color: #ffffff"> @ </font> 4491 * 4492 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4493 *<font style="background-color: #ff0000; color: #E0115F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4494 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4495 */ 4496 public static final SColor RUBY = new SColor(0xE0115F, "Ruby"); 4497 /** 4498 * Color constant<PRE> 4499 *<font style="background-color: #80461B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #80461B; color: #000000"> @ </font> 4500 *<font style="background-color: #80461B; color: #80461B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #80461B; color: #888888"> @ </font> 4501 *<font style="background-color: #80461B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #80461B; color: #ffffff"> @ </font> 4502 * 4503 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4504 *<font style="background-color: #ff0000; color: #80461B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4505 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4506 */ 4507 public static final SColor RUSSET = new SColor(0x80461B, "Russet"); 4508 /** 4509 * Color constant<PRE> 4510 *<font style="background-color: #B7410E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B7410E; color: #000000"> @ </font> 4511 *<font style="background-color: #B7410E; color: #B7410E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B7410E; color: #888888"> @ </font> 4512 *<font style="background-color: #B7410E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B7410E; color: #ffffff"> @ </font> 4513 * 4514 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4515 *<font style="background-color: #ff0000; color: #B7410E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4516 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4517 */ 4518 public static final SColor RUST = new SColor(0xB7410E, "Rust"); 4519 /** 4520 * Color constant<PRE> 4521 *<font style="background-color: #6A7F7A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6A7F7A; color: #000000"> @ </font> 4522 *<font style="background-color: #6A7F7A; color: #6A7F7A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6A7F7A; color: #888888"> @ </font> 4523 *<font style="background-color: #6A7F7A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6A7F7A; color: #ffffff"> @ </font> 4524 * 4525 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4526 *<font style="background-color: #ff0000; color: #6A7F7A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4527 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4528 */ 4529 public static final SColor RUSTED_LIGHT_BLUE = new SColor(0x6A7F7A, "Rusted Light Blue"); 4530 /** 4531 * Color constant<PRE> 4532 *<font style="background-color: #898A74; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #898A74; color: #000000"> @ </font> 4533 *<font style="background-color: #898A74; color: #898A74"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #898A74; color: #888888"> @ </font> 4534 *<font style="background-color: #898A74; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #898A74; color: #ffffff"> @ </font> 4535 * 4536 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4537 *<font style="background-color: #ff0000; color: #898A74"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4538 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4539 */ 4540 public static final SColor RUSTY_CELADON = new SColor(0x898A74, "Rusty Celadon"); 4541 /** 4542 * Color constant<PRE> 4543 *<font style="background-color: #455859; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #455859; color: #000000"> @ </font> 4544 *<font style="background-color: #455859; color: #455859"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #455859; color: #888888"> @ </font> 4545 *<font style="background-color: #455859; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #455859; color: #ffffff"> @ </font> 4546 * 4547 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4548 *<font style="background-color: #ff0000; color: #455859"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4549 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4550 */ 4551 public static final SColor RUSTY_STORAGE = new SColor(0x455859, "Rusty Storage"); 4552 /** 4553 * Color constant<PRE> 4554 *<font style="background-color: #3a403b; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3a403b; color: #000000"> @ </font> 4555 *<font style="background-color: #3a403b; color: #3a403b"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #3a403b; color: #888888"> @ </font> 4556 *<font style="background-color: #3a403b; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3a403b; color: #ffffff"> @ </font> 4557 * 4558 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4559 *<font style="background-color: #ff0000; color: #3a403b"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4560 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4561 */ 4562 public static final SColor RUSTY_STOREROOM = new SColor(0x3a403b, "Rusty Storeroom"); 4563 /** 4564 * Color constant<PRE> 4565 *<font style="background-color: #FF6600; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF6600; color: #000000"> @ </font> 4566 *<font style="background-color: #FF6600; color: #FF6600"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF6600; color: #888888"> @ </font> 4567 *<font style="background-color: #FF6600; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF6600; color: #ffffff"> @ </font> 4568 * 4569 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4570 *<font style="background-color: #ff0000; color: #FF6600"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4571 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4572 */ 4573 public static final SColor SAFETY_ORANGE = new SColor(0xFF6600, "Safety Orange"); 4574 /** 4575 * Color constant<PRE> 4576 *<font style="background-color: #5A4F74; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5A4F74; color: #000000"> @ </font> 4577 *<font style="background-color: #5A4F74; color: #5A4F74"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5A4F74; color: #888888"> @ </font> 4578 *<font style="background-color: #5A4F74; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5A4F74; color: #ffffff"> @ </font> 4579 * 4580 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4581 *<font style="background-color: #ff0000; color: #5A4F74"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4582 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4583 */ 4584 public static final SColor SAFFLOWER = new SColor(0x5A4F74, "Safflower"); 4585 /** 4586 * Color constant<PRE> 4587 *<font style="background-color: #F4C430; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F4C430; color: #000000"> @ </font> 4588 *<font style="background-color: #F4C430; color: #F4C430"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F4C430; color: #888888"> @ </font> 4589 *<font style="background-color: #F4C430; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F4C430; color: #ffffff"> @ </font> 4590 * 4591 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4592 *<font style="background-color: #ff0000; color: #F4C430"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4593 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4594 */ 4595 public static final SColor SAFFRON = new SColor(0xF4C430, "Saffron"); 4596 /** 4597 * Color constant<PRE> 4598 *<font style="background-color: #FF8C69; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF8C69; color: #000000"> @ </font> 4599 *<font style="background-color: #FF8C69; color: #FF8C69"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF8C69; color: #888888"> @ </font> 4600 *<font style="background-color: #FF8C69; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF8C69; color: #ffffff"> @ </font> 4601 * 4602 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4603 *<font style="background-color: #ff0000; color: #FF8C69"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4604 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4605 */ 4606 public static final SColor SALMON = new SColor(0xFF8C69, "Salmon"); 4607 /** 4608 * Color constant<PRE> 4609 *<font style="background-color: #F4A460; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F4A460; color: #000000"> @ </font> 4610 *<font style="background-color: #F4A460; color: #F4A460"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F4A460; color: #888888"> @ </font> 4611 *<font style="background-color: #F4A460; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F4A460; color: #ffffff"> @ </font> 4612 * 4613 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4614 *<font style="background-color: #ff0000; color: #F4A460"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4615 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4616 */ 4617 public static final SColor SANDY_BROWN = new SColor(0xF4A460, "Sandy Brown"); 4618 /** 4619 * Color constant<PRE> 4620 *<font style="background-color: #92000A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #92000A; color: #000000"> @ </font> 4621 *<font style="background-color: #92000A; color: #92000A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #92000A; color: #888888"> @ </font> 4622 *<font style="background-color: #92000A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #92000A; color: #ffffff"> @ </font> 4623 * 4624 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4625 *<font style="background-color: #ff0000; color: #92000A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4626 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4627 */ 4628 public static final SColor SANGRIA = new SColor(0x92000A, "Sangria"); 4629 /** 4630 * Color constant<PRE> 4631 *<font style="background-color: #082567; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #082567; color: #000000"> @ </font> 4632 *<font style="background-color: #082567; color: #082567"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #082567; color: #888888"> @ </font> 4633 *<font style="background-color: #082567; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #082567; color: #ffffff"> @ </font> 4634 * 4635 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4636 *<font style="background-color: #ff0000; color: #082567"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4637 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4638 */ 4639 public static final SColor SAPPHIRE = new SColor(0x082567, "Sapphire"); 4640 /** 4641 * Color constant<PRE> 4642 *<font style="background-color: #7E2639; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7E2639; color: #000000"> @ </font> 4643 *<font style="background-color: #7E2639; color: #7E2639"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #7E2639; color: #888888"> @ </font> 4644 *<font style="background-color: #7E2639; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7E2639; color: #ffffff"> @ </font> 4645 * 4646 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4647 *<font style="background-color: #ff0000; color: #7E2639"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4648 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4649 */ 4650 public static final SColor SAPPANWOOD = new SColor(0x7E2639, "Sappanwood"); 4651 /** 4652 * Color constant<PRE> 4653 *<font style="background-color: #A24F46; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A24F46; color: #000000"> @ </font> 4654 *<font style="background-color: #A24F46; color: #A24F46"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #A24F46; color: #888888"> @ </font> 4655 *<font style="background-color: #A24F46; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A24F46; color: #ffffff"> @ </font> 4656 * 4657 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4658 *<font style="background-color: #ff0000; color: #A24F46"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4659 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4660 */ 4661 public static final SColor SAPPANWOOD_INCENSE = new SColor(0xA24F46, "Sappanwood Incense"); 4662 /** 4663 * Color constant<PRE> 4664 *<font style="background-color: #EC956C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EC956C; color: #000000"> @ </font> 4665 *<font style="background-color: #EC956C; color: #EC956C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #EC956C; color: #888888"> @ </font> 4666 *<font style="background-color: #EC956C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EC956C; color: #ffffff"> @ </font> 4667 * 4668 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4669 *<font style="background-color: #ff0000; color: #EC956C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4670 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4671 */ 4672 public static final SColor SAWTOOTH_OAK = new SColor(0xEC956C, "Sawtooth Oak"); 4673 /** 4674 * Color constant<PRE> 4675 *<font style="background-color: #FF2400; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF2400; color: #000000"> @ </font> 4676 *<font style="background-color: #FF2400; color: #FF2400"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF2400; color: #888888"> @ </font> 4677 *<font style="background-color: #FF2400; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF2400; color: #ffffff"> @ </font> 4678 * 4679 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4680 *<font style="background-color: #ff0000; color: #FF2400"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4681 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4682 */ 4683 public static final SColor SCARLET = new SColor(0xFF2400, "Scarlet"); 4684 /** 4685 * Color constant<PRE> 4686 *<font style="background-color: #FFD800; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFD800; color: #000000"> @ </font> 4687 *<font style="background-color: #FFD800; color: #FFD800"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFD800; color: #888888"> @ </font> 4688 *<font style="background-color: #FFD800; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFD800; color: #ffffff"> @ </font> 4689 * 4690 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4691 *<font style="background-color: #ff0000; color: #FFD800"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4692 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4693 */ 4694 public static final SColor SCHOOL_BUS_YELLOW = new SColor(0xFFD800, "School Bus Yellow"); 4695 /** 4696 * Color constant<PRE> 4697 *<font style="background-color: #351F19; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #351F19; color: #000000"> @ </font> 4698 *<font style="background-color: #351F19; color: #351F19"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #351F19; color: #888888"> @ </font> 4699 *<font style="background-color: #351F19; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #351F19; color: #ffffff"> @ </font> 4700 * 4701 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4702 *<font style="background-color: #ff0000; color: #351F19"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4703 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4704 */ 4705 public static final SColor SCORTCHED_BROWN = new SColor(0x351F19, "Scortched Brown"); 4706 /** 4707 * Color constant<PRE> 4708 *<font style="background-color: #2E8B57; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2E8B57; color: #000000"> @ </font> 4709 *<font style="background-color: #2E8B57; color: #2E8B57"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #2E8B57; color: #888888"> @ </font> 4710 *<font style="background-color: #2E8B57; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #2E8B57; color: #ffffff"> @ </font> 4711 * 4712 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4713 *<font style="background-color: #ff0000; color: #2E8B57"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4714 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4715 */ 4716 public static final SColor SEA_GREEN = new SColor(0x2E8B57, "Sea Green"); 4717 /** 4718 * Color constant<PRE> 4719 *<font style="background-color: #FFF5EE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFF5EE; color: #000000"> @ </font> 4720 *<font style="background-color: #FFF5EE; color: #FFF5EE"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFF5EE; color: #888888"> @ </font> 4721 *<font style="background-color: #FFF5EE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFF5EE; color: #ffffff"> @ </font> 4722 * 4723 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4724 *<font style="background-color: #ff0000; color: #FFF5EE"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4725 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4726 */ 4727 public static final SColor SEASHELL = new SColor(0xFFF5EE, "Seashell"); 4728 /** 4729 * Color constant<PRE> 4730 *<font style="background-color: #FFBA00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFBA00; color: #000000"> @ </font> 4731 *<font style="background-color: #FFBA00; color: #FFBA00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFBA00; color: #888888"> @ </font> 4732 *<font style="background-color: #FFBA00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFBA00; color: #ffffff"> @ </font> 4733 * 4734 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4735 *<font style="background-color: #ff0000; color: #FFBA00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4736 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4737 */ 4738 public static final SColor SELECTIVE_YELLOW = new SColor(0xFFBA00, "Selective Yellow"); 4739 /** 4740 * Color constant<PRE> 4741 *<font style="background-color: #826B58; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #826B58; color: #000000"> @ </font> 4742 *<font style="background-color: #826B58; color: #826B58"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #826B58; color: #888888"> @ </font> 4743 *<font style="background-color: #826B58; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #826B58; color: #ffffff"> @ </font> 4744 * 4745 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4746 *<font style="background-color: #ff0000; color: #826B58"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4747 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4748 */ 4749 public static final SColor SEN_NO_RIKYUS_TEA = new SColor(0x826B58, "Sen No Riyu's Tea"); 4750 /** 4751 * Color constant<PRE> 4752 *<font style="background-color: #704214; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #704214; color: #000000"> @ </font> 4753 *<font style="background-color: #704214; color: #704214"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #704214; color: #888888"> @ </font> 4754 *<font style="background-color: #704214; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #704214; color: #ffffff"> @ </font> 4755 * 4756 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4757 *<font style="background-color: #ff0000; color: #704214"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4758 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4759 */ 4760 public static final SColor SEPIA = new SColor(0x704214, "Sepia"); 4761 /** 4762 * Color constant<PRE> 4763 *<font style="background-color: #009E60; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #009E60; color: #000000"> @ </font> 4764 *<font style="background-color: #009E60; color: #009E60"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #009E60; color: #888888"> @ </font> 4765 *<font style="background-color: #009E60; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #009E60; color: #ffffff"> @ </font> 4766 * 4767 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4768 *<font style="background-color: #ff0000; color: #009E60"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4769 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4770 */ 4771 public static final SColor SHAMROCK_GREEN = new SColor(0x009E60, "Shamrock Green"); 4772 /** 4773 * Color constant<PRE> 4774 *<font style="background-color: #FC0FC0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FC0FC0; color: #000000"> @ </font> 4775 *<font style="background-color: #FC0FC0; color: #FC0FC0"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FC0FC0; color: #888888"> @ </font> 4776 *<font style="background-color: #FC0FC0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FC0FC0; color: #ffffff"> @ </font> 4777 * 4778 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4779 *<font style="background-color: #ff0000; color: #F8F4FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4780 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4781 */ 4782 public static final SColor SHOCKING_PINK = new SColor(0xFC0FC0, "Shocking Pink"); 4783 /** 4784 * Color constant<PRE> 4785 *<font style="background-color: #5E2824; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5E2824; color: #000000"> @ </font> 4786 *<font style="background-color: #5E2824; color: #5E2824"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5E2824; color: #888888"> @ </font> 4787 *<font style="background-color: #5E2824; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5E2824; color: #ffffff"> @ </font> 4788 * 4789 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4790 *<font style="background-color: #ff0000; color: #5E2824"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4791 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4792 */ 4793 public static final SColor SHRIMP_BROWN = new SColor(0x5E2824, "Shrimp Brown"); 4794 /** 4795 * Color constant<PRE> 4796 *<font style="background-color: #354E4B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #354E4B; color: #000000"> @ </font> 4797 *<font style="background-color: #354E4B; color: #354E4B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #354E4B; color: #888888"> @ </font> 4798 *<font style="background-color: #354E4B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #354E4B; color: #ffffff"> @ </font> 4799 * 4800 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4801 *<font style="background-color: #ff0000; color: #354E4B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4802 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4803 */ 4804 public static final SColor SILK_CREPE_BROWN = new SColor(0x354E4B, "Silk Crepe Brown"); 4805 /** 4806 * Color constant<PRE> 4807 *<font style="background-color: #C0C0C0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C0C0C0; color: #000000"> @ </font> 4808 *<font style="background-color: #C0C0C0; color: #C0C0C0"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C0C0C0; color: #888888"> @ </font> 4809 *<font style="background-color: #C0C0C0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C0C0C0; color: #ffffff"> @ </font> 4810 * 4811 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4812 *<font style="background-color: #ff0000; color: #C0C0C0"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4813 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4814 */ 4815 public static final SColor SILVER = new SColor(0xC0C0C0, "Silver"); 4816 /** 4817 * Color constant<PRE> 4818 *<font style="background-color: #97867C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #97867C; color: #000000"> @ </font> 4819 *<font style="background-color: #97867C; color: #97867C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #97867C; color: #888888"> @ </font> 4820 *<font style="background-color: #97867C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #97867C; color: #ffffff"> @ </font> 4821 * 4822 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4823 *<font style="background-color: #ff0000; color: #97867C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4824 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4825 */ 4826 public static final SColor SILVER_GREY = new SColor(0x97867C, "Silver Grey"); 4827 /** 4828 * Color constant<PRE> 4829 *<font style="background-color: #BC2D29; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BC2D29; color: #000000"> @ </font> 4830 *<font style="background-color: #BC2D29; color: #BC2D29"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #BC2D29; color: #888888"> @ </font> 4831 *<font style="background-color: #BC2D29; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BC2D29; color: #ffffff"> @ </font> 4832 * 4833 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4834 *<font style="background-color: #ff0000; color: #BC2D29"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4835 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4836 */ 4837 public static final SColor SILVERED_RED = new SColor(0xBC2D29, "Silvered Red"); 4838 /** 4839 * Color constant<PRE> 4840 *<font style="background-color: #4C3D30; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4C3D30; color: #000000"> @ </font> 4841 *<font style="background-color: #4C3D30; color: #4C3D30"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4C3D30; color: #888888"> @ </font> 4842 *<font style="background-color: #4C3D30; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4C3D30; color: #ffffff"> @ </font> 4843 * 4844 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4845 *<font style="background-color: #ff0000; color: #4C3D30"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4846 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4847 */ 4848 public static final SColor SIMMERED_SEAWEED = new SColor(0x4C3D30, "Simmered Seawead"); 4849 /** 4850 * Color constant<PRE> 4851 *<font style="background-color: #7A942E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7A942E; color: #000000"> @ </font> 4852 *<font style="background-color: #7A942E; color: #7A942E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #7A942E; color: #888888"> @ </font> 4853 *<font style="background-color: #7A942E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #7A942E; color: #ffffff"> @ </font> 4854 * 4855 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4856 *<font style="background-color: #ff0000; color: #7A942E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4857 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4858 */ 4859 public static final SColor SISKIN_SPROUT_YELLOW = new SColor(0x7A942E, "Siskin Sprout Yellow"); 4860 /** 4861 * Color constant<PRE> 4862 *<font style="background-color: #4D8FAC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4D8FAC; color: #000000"> @ </font> 4863 *<font style="background-color: #4D8FAC; color: #4D8FAC"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4D8FAC; color: #888888"> @ </font> 4864 *<font style="background-color: #4D8FAC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4D8FAC; color: #ffffff"> @ </font> 4865 * 4866 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4867 *<font style="background-color: #ff0000; color: #4D8FAC"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4868 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4869 */ 4870 public static final SColor SKY = new SColor(0x4D8FAC, "Sky"); 4871 /** 4872 * Color constant<PRE> 4873 *<font style="background-color: #87CEEB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #87CEEB; color: #000000"> @ </font> 4874 *<font style="background-color: #87CEEB; color: #87CEEB"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #87CEEB; color: #888888"> @ </font> 4875 *<font style="background-color: #87CEEB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #87CEEB; color: #ffffff"> @ </font> 4876 * 4877 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4878 *<font style="background-color: #ff0000; color: #87CEEB"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4879 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4880 */ 4881 public static final SColor SKY_BLUE = new SColor(0x87CEEB, "Sky Blue"); 4882 /** 4883 * Color constant<PRE> 4884 *<font style="background-color: #708090; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #708090; color: #000000"> @ </font> 4885 *<font style="background-color: #708090; color: #708090"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #708090; color: #888888"> @ </font> 4886 *<font style="background-color: #708090; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #708090; color: #ffffff"> @ </font> 4887 * 4888 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4889 *<font style="background-color: #ff0000; color: #708090"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4890 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4891 */ 4892 public static final SColor SLATE_GRAY = new SColor(0x708090, "Slate Gray"); 4893 /** 4894 * Color constant<PRE> 4895 *<font style="background-color: #003399; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #003399; color: #000000"> @ </font> 4896 *<font style="background-color: #003399; color: #003399"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #003399; color: #888888"> @ </font> 4897 *<font style="background-color: #003399; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #003399; color: #ffffff"> @ </font> 4898 * 4899 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4900 *<font style="background-color: #ff0000; color: #003399"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4901 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4902 */ 4903 public static final SColor SMALT = new SColor(0x003399, "Smalt"); 4904 /** 4905 * Color constant<PRE> 4906 *<font style="background-color: #593A27; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #593A27; color: #000000"> @ </font> 4907 *<font style="background-color: #593A27; color: #593A27"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #593A27; color: #888888"> @ </font> 4908 *<font style="background-color: #593A27; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #593A27; color: #ffffff"> @ </font> 4909 * 4910 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4911 *<font style="background-color: #ff0000; color: #593A27"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4912 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4913 */ 4914 public static final SColor SOOTY_BAMBOO = new SColor(0x593A27, "Sooty Bamboo"); 4915 /** 4916 * Color constant<PRE> 4917 *<font style="background-color: #4D4B3A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4D4B3A; color: #000000"> @ </font> 4918 *<font style="background-color: #4D4B3A; color: #4D4B3A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4D4B3A; color: #888888"> @ </font> 4919 *<font style="background-color: #4D4B3A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4D4B3A; color: #ffffff"> @ </font> 4920 * 4921 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4922 *<font style="background-color: #ff0000; color: #4D4B3A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4923 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4924 */ 4925 public static final SColor SOOTY_WILLOW_BAMBOO = new SColor(0x4D4B3A, "Sooty Willow Bamboo"); 4926 /** 4927 * Color constant<PRE> 4928 *<font style="background-color: #8C4736; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8C4736; color: #000000"> @ </font> 4929 *<font style="background-color: #8C4736; color: #8C4736"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8C4736; color: #888888"> @ </font> 4930 *<font style="background-color: #8C4736; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8C4736; color: #ffffff"> @ </font> 4931 * 4932 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4933 *<font style="background-color: #ff0000; color: #8C4736"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4934 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4935 */ 4936 public static final SColor SPARROW_BROWN = new SColor(0x8C4736, "Sparrow Brown"); 4937 /** 4938 * Color constant<PRE> 4939 *<font style="background-color: #A7FC00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A7FC00; color: #000000"> @ </font> 4940 *<font style="background-color: #A7FC00; color: #A7FC00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #A7FC00; color: #888888"> @ </font> 4941 *<font style="background-color: #A7FC00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A7FC00; color: #ffffff"> @ </font> 4942 * 4943 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4944 *<font style="background-color: #ff0000; color: #A7FC00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4945 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4946 */ 4947 public static final SColor SPRING_BUD = new SColor(0xA7FC00, "Spring Bud"); 4948 /** 4949 * Color constant<PRE> 4950 *<font style="background-color: #00FF7F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00FF7F; color: #000000"> @ </font> 4951 *<font style="background-color: #00FF7F; color: #00FF7F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #00FF7F; color: #888888"> @ </font> 4952 *<font style="background-color: #00FF7F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #00FF7F; color: #ffffff"> @ </font> 4953 * 4954 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4955 *<font style="background-color: #ff0000; color: #00FF7F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4956 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4957 */ 4958 public static final SColor SPRING_GREEN = new SColor(0x00FF7F, "Spring Green"); 4959 /** 4960 * Color constant<PRE> 4961 *<font style="background-color: #78779B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #78779B; color: #000000"> @ </font> 4962 *<font style="background-color: #78779B; color: #78779B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #78779B; color: #888888"> @ </font> 4963 *<font style="background-color: #78779B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #78779B; color: #ffffff"> @ </font> 4964 * 4965 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4966 *<font style="background-color: #ff0000; color: #78779B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4967 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4968 */ 4969 public static final SColor STAINED_RED = new SColor(0x78779B, "Stained Red"); 4970 /** 4971 * Color constant<PRE> 4972 *<font style="background-color: #D3B17D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D3B17D; color: #000000"> @ </font> 4973 *<font style="background-color: #D3B17D; color: #D3B17D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D3B17D; color: #888888"> @ </font> 4974 *<font style="background-color: #D3B17D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D3B17D; color: #ffffff"> @ </font> 4975 * 4976 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4977 *<font style="background-color: #ff0000; color: #D3B17D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4978 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4979 */ 4980 public static final SColor STEAMED_CHESTNUT = new SColor(0xD3B17D, "Steamed Chestnut"); 4981 /** 4982 * Color constant<PRE> 4983 *<font style="background-color: #4682B4; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4682B4; color: #000000"> @ </font> 4984 *<font style="background-color: #4682B4; color: #4682B4"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #4682B4; color: #888888"> @ </font> 4985 *<font style="background-color: #4682B4; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #4682B4; color: #ffffff"> @ </font> 4986 * 4987 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4988 *<font style="background-color: #ff0000; color: #4682B4"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 4989 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 4990 */ 4991 public static final SColor STEEL_BLUE = new SColor(0x4682B4, "Steel Blue"); 4992 /** 4993 * Color constant<PRE> 4994 *<font style="background-color: #3D4035; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3D4035; color: #000000"> @ </font> 4995 *<font style="background-color: #3D4035; color: #3D4035"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #3D4035; color: #888888"> @ </font> 4996 *<font style="background-color: #3D4035; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3D4035; color: #ffffff"> @ </font> 4997 * 4998 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 4999 *<font style="background-color: #ff0000; color: #3D4035"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5000 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5001 */ 5002 public static final SColor STOREROOM_BROWN = new SColor(0x3D4035, "Storeroom Brown"); 5003 /** 5004 * Color constant<PRE> 5005 *<font style="background-color: #FFA26B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA26B; color: #000000"> @ </font> 5006 *<font style="background-color: #FFA26B; color: #FFA26B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFA26B; color: #888888"> @ </font> 5007 *<font style="background-color: #FFA26B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFA26B; color: #ffffff"> @ </font> 5008 * 5009 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5010 *<font style="background-color: #ff0000; color: #FFA26B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5011 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5012 */ 5013 public static final SColor STYLISH_PERSIMMON = new SColor(0xFFA26B, "Stylish Persimnmon"); 5014 /** 5015 * Color constant<PRE> 5016 *<font style="background-color: #592B1F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #592B1F; color: #000000"> @ </font> 5017 *<font style="background-color: #592B1F; color: #592B1F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #592B1F; color: #888888"> @ </font> 5018 *<font style="background-color: #592B1F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #592B1F; color: #ffffff"> @ </font> 5019 * 5020 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5021 *<font style="background-color: #ff0000; color: #592B1F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5022 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5023 */ 5024 public static final SColor SUMAC = new SColor(0x592B1F, "Sumac"); 5025 /** 5026 * Color constant<PRE> 5027 *<font style="background-color: #E08A1E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E08A1E; color: #000000"> @ </font> 5028 *<font style="background-color: #E08A1E; color: #E08A1E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E08A1E; color: #888888"> @ </font> 5029 *<font style="background-color: #E08A1E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E08A1E; color: #ffffff"> @ </font> 5030 * 5031 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5032 *<font style="background-color: #ff0000; color: #E08A1E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5033 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5034 */ 5035 public static final SColor SUMAC_DYED = new SColor(0xE08A1E, "Sumac Dyed"); 5036 /** 5037 * Color constant<PRE> 5038 *<font style="background-color: #D2B48C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D2B48C; color: #000000"> @ </font> 5039 *<font style="background-color: #D2B48C; color: #D2B48C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D2B48C; color: #888888"> @ </font> 5040 *<font style="background-color: #D2B48C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D2B48C; color: #ffffff"> @ </font> 5041 * 5042 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5043 *<font style="background-color: #ff0000; color: #D2B48C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5044 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5045 */ 5046 public static final SColor TAN = new SColor(0xD2B48C, "Tan"); 5047 /** 5048 * Color constant<PRE> 5049 *<font style="background-color: #F28500; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F28500; color: #000000"> @ </font> 5050 *<font style="background-color: #F28500; color: #F28500"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F28500; color: #888888"> @ </font> 5051 *<font style="background-color: #F28500; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F28500; color: #ffffff"> @ </font> 5052 * 5053 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5054 *<font style="background-color: #ff0000; color: #F28500"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5055 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5056 */ 5057 public static final SColor TANGERINE = new SColor(0xF28500, "Tangerine"); 5058 /** 5059 * Color constant<PRE> 5060 *<font style="background-color: #FFCC00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFCC00; color: #000000"> @ </font> 5061 *<font style="background-color: #FFCC00; color: #FFCC00"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFCC00; color: #888888"> @ </font> 5062 *<font style="background-color: #FFCC00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFCC00; color: #ffffff"> @ </font> 5063 * 5064 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5065 *<font style="background-color: #ff0000; color: #FFCC00"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5066 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5067 */ 5068 public static final SColor TANGERINE_YELLOW = new SColor(0xFFCC00, "Tangerine Yellow"); 5069 /** 5070 * Color constant<PRE> 5071 *<font style="background-color: #976E9A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #976E9A; color: #000000"> @ </font> 5072 *<font style="background-color: #976E9A; color: #976E9A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #976E9A; color: #888888"> @ </font> 5073 *<font style="background-color: #976E9A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #976E9A; color: #ffffff"> @ </font> 5074 * 5075 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5076 *<font style="background-color: #ff0000; color: #976E9A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5077 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5078 */ 5079 public static final SColor TATARIAN_ASTER = new SColor(0x976E9A, "Tatarian Aster"); 5080 /** 5081 * Color constant<PRE> 5082 *<font style="background-color: #483C32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #483C32; color: #000000"> @ </font> 5083 *<font style="background-color: #483C32; color: #483C32"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #483C32; color: #888888"> @ </font> 5084 *<font style="background-color: #483C32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #483C32; color: #ffffff"> @ </font> 5085 * 5086 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5087 *<font style="background-color: #ff0000; color: #483C32"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5088 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5089 */ 5090 public static final SColor TAUPE = new SColor(0x483C32, "Taupe"); 5091 /** 5092 * Color constant<PRE> 5093 *<font style="background-color: #CD5700; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CD5700; color: #000000"> @ </font> 5094 *<font style="background-color: #CD5700; color: #CD5700"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CD5700; color: #888888"> @ </font> 5095 *<font style="background-color: #CD5700; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CD5700; color: #ffffff"> @ </font> 5096 * 5097 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5098 *<font style="background-color: #ff0000; color: #CD5700"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5099 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5100 */ 5101 public static final SColor TAWNY = new SColor(0xCD5700, "Tawny"); 5102 /** 5103 * Color constant<PRE> 5104 *<font style="background-color: #665343; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #665343; color: #000000"> @ </font> 5105 *<font style="background-color: #665343; color: #665343"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #665343; color: #888888"> @ </font> 5106 *<font style="background-color: #665343; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #665343; color: #ffffff"> @ </font> 5107 * 5108 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5109 *<font style="background-color: #ff0000; color: #665343"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5110 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5111 */ 5112 public static final SColor TEA_GARDEN_CONTEMPLATION = new SColor(0x665343, "Tead Garden Contemplation"); 5113 /** 5114 * Color constant<PRE> 5115 *<font style="background-color: #D0F0C0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D0F0C0; color: #000000"> @ </font> 5116 *<font style="background-color: #D0F0C0; color: #D0F0C0"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D0F0C0; color: #888888"> @ </font> 5117 *<font style="background-color: #D0F0C0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D0F0C0; color: #ffffff"> @ </font> 5118 * 5119 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5120 *<font style="background-color: #ff0000; color: #D0F0C0"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5121 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5122 */ 5123 public static final SColor TEA_GREEN = new SColor(0xD0F0C0, "Tea Green"); 5124 /** 5125 * Color constant<PRE> 5126 *<font style="background-color: #F88379; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F88379; color: #000000"> @ </font> 5127 *<font style="background-color: #F88379; color: #F88379"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F88379; color: #888888"> @ </font> 5128 *<font style="background-color: #F88379; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F88379; color: #ffffff"> @ </font> 5129 * 5130 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5131 *<font style="background-color: #ff0000; color: #F88379"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5132 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5133 */ 5134 public static final SColor TEA_ORANGE = new SColor(0xF88379, "Tea Orange"); 5135 /** 5136 * Color constant<PRE> 5137 *<font style="background-color: #F4C2C2; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F4C2C2; color: #000000"> @ </font> 5138 *<font style="background-color: #F4C2C2; color: #F4C2C2"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F4C2C2; color: #888888"> @ </font> 5139 *<font style="background-color: #F4C2C2; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F4C2C2; color: #ffffff"> @ </font> 5140 * 5141 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5142 *<font style="background-color: #ff0000; color: #F4C2C2"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5143 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5144 */ 5145 public static final SColor TEA_ROSE = new SColor(0xF4C2C2, "Tea Rose"); 5146 /** 5147 * Color constant<PRE> 5148 *<font style="background-color: #008080; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #008080; color: #000000"> @ </font> 5149 *<font style="background-color: #008080; color: #000000"> </font><font style="background-color: #000000; color: #800080"> @ </font><font style="background-color: #888888; color: #008080"> @ </font><font style="background-color: #ffffff; color: #008080"> @ </font><font style="background-color: #008080; color: #888888"> @ </font> 5150 *<font style="background-color: #008080; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #008080; color: #ffffff"> @ </font> 5151 * 5152 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5153 *<font style="background-color: #ff0000; color: #008080"> @ </font><font style="background-color: #ffff00; color: #800080"> @ </font><font style="background-color: #00ff00; color: #008080"> @ </font><font style="background-color: #0000ff; color: #008080"> @ </font><font style="background-color: #964b00; color: #008080"> @ </font> 5154 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5155 */ 5156 public static final SColor TEAL = new SColor(0x008080, "Teal"); 5157 /** 5158 * Color constant<PRE> 5159 *<font style="background-color: #E2725B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E2725B; color: #000000"> @ </font> 5160 *<font style="background-color: #E2725B; color: #E2725B"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E2725B; color: #888888"> @ </font> 5161 *<font style="background-color: #E2725B; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E2725B; color: #ffffff"> @ </font> 5162 * 5163 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5164 *<font style="background-color: #ff0000; color: #E2725B"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5165 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5166 */ 5167 public static final SColor TERRA_COTTA = new SColor(0xE2725B, "Terra Cotta"); 5168 /** 5169 * Color constant<PRE> 5170 *<font style="background-color: #A87CA0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A87CA0; color: #000000"> @ </font> 5171 *<font style="background-color: #A87CA0; color: #A87CA0"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #A87CA0; color: #888888"> @ </font> 5172 *<font style="background-color: #A87CA0; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A87CA0; color: #ffffff"> @ </font> 5173 * 5174 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5175 *<font style="background-color: #ff0000; color: #A87CA0"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5176 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5177 */ 5178 public static final SColor THIN_VIOLET = new SColor(0xA87CA0, "Thin Violet"); 5179 /** 5180 * Color constant<PRE> 5181 *<font style="background-color: #D8BFD8; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D8BFD8; color: #000000"> @ </font> 5182 *<font style="background-color: #D8BFD8; color: #D8BFD8"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #D8BFD8; color: #888888"> @ </font> 5183 *<font style="background-color: #D8BFD8; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #D8BFD8; color: #ffffff"> @ </font> 5184 * 5185 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5186 *<font style="background-color: #ff0000; color: #D8BFD8"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5187 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5188 */ 5189 public static final SColor THISTLE = new SColor(0xD8BFD8, "Thistle"); 5190 /** 5191 * Color constant<PRE> 5192 *<font style="background-color: #317589; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #317589; color: #000000"> @ </font> 5193 *<font style="background-color: #317589; color: #317589"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #317589; color: #888888"> @ </font> 5194 *<font style="background-color: #317589; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #317589; color: #ffffff"> @ </font> 5195 * 5196 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5197 *<font style="background-color: #ff0000; color: #317589"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5198 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5199 */ 5200 public static final SColor THOUSAND_HERB = new SColor(0x317589, "Thousand Herb"); 5201 /** 5202 * Color constant<PRE> 5203 *<font style="background-color: #3B3429; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3B3429; color: #000000"> @ </font> 5204 *<font style="background-color: #3B3429; color: #3B3429"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #3B3429; color: #888888"> @ </font> 5205 *<font style="background-color: #3B3429; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #3B3429; color: #ffffff"> @ </font> 5206 * 5207 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5208 *<font style="background-color: #ff0000; color: #3B3429"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5209 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5210 */ 5211 public static final SColor THOUSAND_YEAR_OLD_BROWN = new SColor(0x3B3429, "Thousand Year Old Brown"); 5212 /** 5213 * Color constant<PRE> 5214 *<font style="background-color: #374231; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #374231; color: #000000"> @ </font> 5215 *<font style="background-color: #374231; color: #374231"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #374231; color: #888888"> @ </font> 5216 *<font style="background-color: #374231; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #374231; color: #ffffff"> @ </font> 5217 * 5218 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5219 *<font style="background-color: #ff0000; color: #374231"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5220 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5221 */ 5222 public static final SColor THOUSAND_YEAR_OLD_GREEN = new SColor(0x374231, "Thousand Year Old Green"); 5223 /** 5224 * Color constant<PRE> 5225 *<font style="background-color: #F7665A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F7665A; color: #000000"> @ </font> 5226 *<font style="background-color: #F7665A; color: #F7665A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F7665A; color: #888888"> @ </font> 5227 *<font style="background-color: #F7665A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F7665A; color: #ffffff"> @ </font> 5228 * 5229 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5230 *<font style="background-color: #ff0000; color: #F7665A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5231 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5232 */ 5233 public static final SColor THRICE_DYED_CRIMSON = new SColor(0xF7665A, "Thrice Dyed Crimson"); 5234 /** 5235 * Color constant<PRE> 5236 *<font style="background-color: #FF6347; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF6347; color: #000000"> @ </font> 5237 *<font style="background-color: #FF6347; color: #FF6347"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FF6347; color: #888888"> @ </font> 5238 *<font style="background-color: #FF6347; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FF6347; color: #ffffff"> @ </font> 5239 * 5240 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5241 *<font style="background-color: #ff0000; color: #FF6347"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5242 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5243 */ 5244 public static final SColor TOMATO = new SColor(0xFF6347, "Tomato"); 5245 /** 5246 * Color constant<PRE> 5247 *<font style="background-color: #A4345D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A4345D; color: #000000"> @ </font> 5248 *<font style="background-color: #A4345D; color: #A4345D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #A4345D; color: #888888"> @ </font> 5249 *<font style="background-color: #A4345D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A4345D; color: #ffffff"> @ </font> 5250 * 5251 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5252 *<font style="background-color: #ff0000; color: #A4345D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5253 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5254 */ 5255 public static final SColor TREE_PEONY = new SColor(0xA4345D, "Tree Peony"); 5256 /** 5257 * Color constant<PRE> 5258 *<font style="background-color: #FFC0CB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFC0CB; color: #000000"> @ </font> 5259 *<font style="background-color: #FFC0CB; color: #FFC0CB"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFC0CB; color: #888888"> @ </font> 5260 *<font style="background-color: #FFC0CB; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFC0CB; color: #ffffff"> @ </font> 5261 * 5262 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5263 *<font style="background-color: #ff0000; color: #FFC0CB"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5264 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5265 */ 5266 public static final SColor TRUE_PINK = new SColor(0xFFC0CB, "True Pink"); 5267 /** 5268 * Color constant<PRE> 5269 *<font style="background-color: #8F1D21; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8F1D21; color: #000000"> @ </font> 5270 *<font style="background-color: #8F1D21; color: #8F1D21"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8F1D21; color: #888888"> @ </font> 5271 *<font style="background-color: #8F1D21; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8F1D21; color: #ffffff"> @ </font> 5272 * 5273 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5274 *<font style="background-color: #ff0000; color: #8F1D21"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5275 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5276 */ 5277 public static final SColor TRUE_RED = new SColor(0x8F1D21, "True Red"); 5278 /** 5279 * Color constant<PRE> 5280 *<font style="background-color: #E69B3A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E69B3A; color: #000000"> @ </font> 5281 *<font style="background-color: #E69B3A; color: #E69B3A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E69B3A; color: #888888"> @ </font> 5282 *<font style="background-color: #E69B3A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E69B3A; color: #ffffff"> @ </font> 5283 * 5284 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5285 *<font style="background-color: #ff0000; color: #E69B3A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5286 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5287 */ 5288 public static final SColor TURMERIC = new SColor(0xE69B3A, "Turmeric"); 5289 /** 5290 * Color constant<PRE> 5291 *<font style="background-color: #30D5C8; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #30D5C8; color: #000000"> @ </font> 5292 *<font style="background-color: #30D5C8; color: #30D5C8"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #30D5C8; color: #888888"> @ </font> 5293 *<font style="background-color: #30D5C8; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #30D5C8; color: #ffffff"> @ </font> 5294 * 5295 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5296 *<font style="background-color: #ff0000; color: #30D5C8"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5297 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5298 */ 5299 public static final SColor TURQUOISE = new SColor(0x30D5C8, "Turquoise"); 5300 /** 5301 * Color constant<PRE> 5302 *<font style="background-color: #66023C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #66023C; color: #000000"> @ </font> 5303 *<font style="background-color: #66023C; color: #66023C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #66023C; color: #888888"> @ </font> 5304 *<font style="background-color: #66023C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #66023C; color: #ffffff"> @ </font> 5305 * 5306 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5307 *<font style="background-color: #ff0000; color: #66023C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5308 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5309 */ 5310 public static final SColor TYRIAN_PURPLE = new SColor(0x66023C, "Tyrian Purple"); 5311 /** 5312 * Color constant<PRE> 5313 *<font style="background-color: #120A8F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #120A8F; color: #000000"> @ </font> 5314 *<font style="background-color: #120A8F; color: #120A8F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #120A8F; color: #888888"> @ </font> 5315 *<font style="background-color: #120A8F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #120A8F; color: #ffffff"> @ </font> 5316 * 5317 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5318 *<font style="background-color: #ff0000; color: #120A8F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5319 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5320 */ 5321 public static final SColor ULTRAMARINE = new SColor(0x120A8F, "Ultramarine"); 5322 /** 5323 * Color constant<PRE> 5324 *<font style="background-color: #5D8CAE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5D8CAE; color: #000000"> @ </font> 5325 *<font style="background-color: #5D8CAE; color: #5D8CAE"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5D8CAE; color: #888888"> @ </font> 5326 *<font style="background-color: #5D8CAE; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5D8CAE; color: #ffffff"> @ </font> 5327 * 5328 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5329 *<font style="background-color: #ff0000; color: #5D8CAE"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5330 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5331 */ 5332 public static final SColor ULTRAMARINE_DYE = new SColor(0x5D8CAE, "Ultramarine Dye"); 5333 /** 5334 * Color constant<PRE> 5335 *<font style="background-color: #FFDDCA; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFDDCA; color: #000000"> @ </font> 5336 *<font style="background-color: #FFDDCA; color: #FFDDCA"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #FFDDCA; color: #888888"> @ </font> 5337 *<font style="background-color: #FFDDCA; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #FFDDCA; color: #ffffff"> @ </font> 5338 * 5339 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5340 *<font style="background-color: #ff0000; color: #FFDDCA"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5341 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5342 */ 5343 public static final SColor UNBLEACHED_SILK = new SColor(0xFFDDCA, "Unbleached Silk"); 5344 /** 5345 * Color constant<PRE> 5346 *<font style="background-color: #785E49; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #785E49; color: #000000"> @ </font> 5347 *<font style="background-color: #785E49; color: #785E49"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #785E49; color: #888888"> @ </font> 5348 *<font style="background-color: #785E49; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #785E49; color: #ffffff"> @ </font> 5349 * 5350 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5351 *<font style="background-color: #ff0000; color: #785E49"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5352 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5353 */ 5354 public static final SColor UNDRIED_WALL = new SColor(0x785E49, "Undried Wall"); 5355 /** 5356 * Color constant<PRE> 5357 *<font style="background-color: #44312E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #44312E; color: #000000"> @ </font> 5358 *<font style="background-color: #44312E; color: #44312E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #44312E; color: #888888"> @ </font> 5359 *<font style="background-color: #44312E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #44312E; color: #ffffff"> @ </font> 5360 * 5361 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5362 *<font style="background-color: #ff0000; color: #44312E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5363 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5364 */ 5365 public static final SColor VANISHING_RED_MOUSE = new SColor(0x44312E, "Vanishing Red Mouse"); 5366 /** 5367 * Color constant<PRE> 5368 *<font style="background-color: #C5B358; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C5B358; color: #000000"> @ </font> 5369 *<font style="background-color: #C5B358; color: #C5B358"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C5B358; color: #888888"> @ </font> 5370 *<font style="background-color: #C5B358; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C5B358; color: #ffffff"> @ </font> 5371 * 5372 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5373 *<font style="background-color: #ff0000; color: #C5B358"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5374 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5375 */ 5376 public static final SColor VEGAS_GOLD = new SColor(0xC5B358, "Vegas Gold"); 5377 /** 5378 * Color constant<PRE> 5379 *<font style="background-color: #224634; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #224634; color: #000000"> @ </font> 5380 *<font style="background-color: #224634; color: #224634"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #224634; color: #888888"> @ </font> 5381 *<font style="background-color: #224634; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #224634; color: #ffffff"> @ </font> 5382 * 5383 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5384 *<font style="background-color: #ff0000; color: #224634"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5385 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5386 */ 5387 public static final SColor VELVET = new SColor(0x224634, "Velvet"); 5388 /** 5389 * Color constant<PRE> 5390 *<font style="background-color: #E34234; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E34234; color: #000000"> @ </font> 5391 *<font style="background-color: #E34234; color: #E34234"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #E34234; color: #888888"> @ </font> 5392 *<font style="background-color: #E34234; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #E34234; color: #ffffff"> @ </font> 5393 * 5394 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5395 *<font style="background-color: #ff0000; color: #E34234"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5396 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5397 */ 5398 public static final SColor VERMILION = new SColor(0xE34234, "Vermillion"); 5399 /** 5400 * Color constant<PRE> 5401 *<font style="background-color: #6D2B50; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6D2B50; color: #000000"> @ </font> 5402 *<font style="background-color: #6D2B50; color: #6D2B50"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6D2B50; color: #888888"> @ </font> 5403 *<font style="background-color: #6D2B50; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6D2B50; color: #ffffff"> @ </font> 5404 * 5405 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5406 *<font style="background-color: #ff0000; color: #6D2B50"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5407 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5408 */ 5409 public static final SColor VINE_GRAPE = new SColor(0x6D2B50, "Vine Grape"); 5410 /** 5411 * Color constant<PRE> 5412 *<font style="background-color: #8B00FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8B00FF; color: #000000"> @ </font> 5413 *<font style="background-color: #8B00FF; color: #8B00FF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8B00FF; color: #888888"> @ </font> 5414 *<font style="background-color: #8B00FF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8B00FF; color: #ffffff"> @ </font> 5415 * 5416 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5417 *<font style="background-color: #ff0000; color: #8B00FF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5418 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5419 */ 5420 public static final SColor VIOLET = new SColor(0x8B00FF, "Violet"); 5421 /** 5422 * Color constant<PRE> 5423 *<font style="background-color: #5B3256; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5B3256; color: #000000"> @ </font> 5424 *<font style="background-color: #5B3256; color: #5B3256"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #5B3256; color: #888888"> @ </font> 5425 *<font style="background-color: #5B3256; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #5B3256; color: #ffffff"> @ </font> 5426 * 5427 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5428 *<font style="background-color: #ff0000; color: #5B3256"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5429 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5430 */ 5431 public static final SColor VIOLET_DYE = new SColor(0x5B3256, "Violet Dye"); 5432 /** 5433 * Color constant<PRE> 5434 *<font style="background-color: #40826D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #40826D; color: #000000"> @ </font> 5435 *<font style="background-color: #40826D; color: #40826D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #40826D; color: #888888"> @ </font> 5436 *<font style="background-color: #40826D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #40826D; color: #ffffff"> @ </font> 5437 * 5438 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5439 *<font style="background-color: #ff0000; color: #40826D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5440 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5441 */ 5442 public static final SColor VIRIDIAN = new SColor(0x40826D, "Viridian"); 5443 /** 5444 * Color constant<PRE> 5445 *<font style="background-color: #9F7462; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9F7462; color: #000000"> @ </font> 5446 *<font style="background-color: #9F7462; color: #9F7462"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9F7462; color: #888888"> @ </font> 5447 *<font style="background-color: #9F7462; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9F7462; color: #ffffff"> @ </font> 5448 * 5449 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5450 *<font style="background-color: #ff0000; color: #9F7462"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5451 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5452 */ 5453 public static final SColor WALNUT = new SColor(0x9F7462, "Walnut"); 5454 /** 5455 * Color constant<PRE> 5456 *<font style="background-color: #ffb3a7; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ffb3a7; color: #000000"> @ </font> 5457 *<font style="background-color: #ffb3a7; color: #ffb3a7"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #ffb3a7; color: #888888"> @ </font> 5458 *<font style="background-color: #ffb3a7; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ffb3a7; color: #ffffff"> @ </font> 5459 * 5460 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5461 *<font style="background-color: #ff0000; color: #ffb3a7"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5462 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5463 */ 5464 public static final SColor WASHED_OUT_CRIMSON = new SColor(0xffb3a7, "Washed Out Crimson"); 5465 /** 5466 * Color constant<PRE> 5467 *<font style="background-color: #EC8254; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EC8254; color: #000000"> @ </font> 5468 *<font style="background-color: #EC8254; color: #EC8254"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #EC8254; color: #888888"> @ </font> 5469 *<font style="background-color: #EC8254; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EC8254; color: #ffffff"> @ </font> 5470 * 5471 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5472 *<font style="background-color: #ff0000; color: #EC8254"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5473 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5474 */ 5475 public static final SColor WASHED_OUT_PERSIMMON = new SColor(0xEC8254, "Washed Out Persimmon"); 5476 /** 5477 * Color constant<PRE> 5478 *<font style="background-color: #86ABA5; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #86ABA5; color: #000000"> @ </font> 5479 *<font style="background-color: #86ABA5; color: #86ABA5"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #86ABA5; color: #888888"> @ </font> 5480 *<font style="background-color: #86ABA5; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #86ABA5; color: #ffffff"> @ </font> 5481 * 5482 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5483 *<font style="background-color: #ff0000; color: #86ABA5"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5484 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5485 */ 5486 public static final SColor WATER = new SColor(0x86ABA5, "Water"); 5487 /** 5488 * Color constant<PRE> 5489 *<font style="background-color: #B56C60; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B56C60; color: #000000"> @ </font> 5490 *<font style="background-color: #B56C60; color: #B56C60"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B56C60; color: #888888"> @ </font> 5491 *<font style="background-color: #B56C60; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B56C60; color: #ffffff"> @ </font> 5492 * 5493 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5494 *<font style="background-color: #ff0000; color: #B56C60"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5495 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5496 */ 5497 public static final SColor WATER_PERSIMMON = new SColor(0xB56C60, "Water Persimmon"); 5498 /** 5499 * Color constant<PRE> 5500 *<font style="background-color: #F5DEB3; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F5DEB3; color: #000000"> @ </font> 5501 *<font style="background-color: #F5DEB3; color: #F5DEB3"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #F5DEB3; color: #888888"> @ </font> 5502 *<font style="background-color: #F5DEB3; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #F5DEB3; color: #ffffff"> @ </font> 5503 * 5504 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5505 *<font style="background-color: #ff0000; color: #F5DEB3"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5506 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5507 */ 5508 public static final SColor WHEAT = new SColor(0xF5DEB3, "Wheat"); 5509 /** 5510 * Color constant<PRE> 5511 *<font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> @ </font> 5512 *<font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #000000; color: #ffffff"> @ </font><font style="background-color: #888888; color: #ffffff"> @ </font><font style="background-color: #ffffff; color: #ffffff"> @ </font><font style="background-color: #ffffff; color: #888888"> @ </font> 5513 *<font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ffffff; color: #ffffff"> @ </font> 5514 * 5515 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5516 *<font style="background-color: #ff0000; color: #ffffff"> @ </font><font style="background-color: #ffff00; color: #ffffff"> @ </font><font style="background-color: #00ff00; color: #ffffff"> @ </font><font style="background-color: #0000ff; color: #ffffff"> @ </font><font style="background-color: #964b00; color: #ffffff"> @ </font> 5517 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5518 */ 5519 public static final SColor WHITE = new SColor(0xffffff, "White"); 5520 /** 5521 * Color constant<PRE> 5522 *<font style="background-color: #B9A193; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B9A193; color: #000000"> @ </font> 5523 *<font style="background-color: #B9A193; color: #B9A193"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #B9A193; color: #888888"> @ </font> 5524 *<font style="background-color: #B9A193; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #B9A193; color: #ffffff"> @ </font> 5525 * 5526 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5527 *<font style="background-color: #ff0000; color: #B9A193"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5528 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5529 */ 5530 public static final SColor WHITE_MOUSE = new SColor(0xB9A193, "white Mouse"); 5531 /** 5532 * Color constant<PRE> 5533 *<font style="background-color: #CE9F6F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CE9F6F; color: #000000"> @ </font> 5534 *<font style="background-color: #CE9F6F; color: #CE9F6F"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #CE9F6F; color: #888888"> @ </font> 5535 *<font style="background-color: #CE9F6F; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #CE9F6F; color: #ffffff"> @ </font> 5536 * 5537 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5538 *<font style="background-color: #ff0000; color: #CE9F6F"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5539 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5540 */ 5541 public static final SColor WHITE_OAK = new SColor(0xCE9F6F, "White Oak"); 5542 /** 5543 * Color constant<PRE> 5544 *<font style="background-color: #C48E69; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C48E69; color: #000000"> @ </font> 5545 *<font style="background-color: #C48E69; color: #C48E69"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C48E69; color: #888888"> @ </font> 5546 *<font style="background-color: #C48E69; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C48E69; color: #ffffff"> @ </font> 5547 * 5548 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5549 *<font style="background-color: #ff0000; color: #C48E69"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5550 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5551 */ 5552 public static final SColor WHITE_TEA_DYE = new SColor(0xC48E69, "White Tea Dye"); 5553 /** 5554 * Color constant<PRE> 5555 *<font style="background-color: #A5BA93; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A5BA93; color: #000000"> @ </font> 5556 *<font style="background-color: #A5BA93; color: #A5BA93"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #A5BA93; color: #888888"> @ </font> 5557 *<font style="background-color: #A5BA93; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #A5BA93; color: #ffffff"> @ </font> 5558 * 5559 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5560 *<font style="background-color: #ff0000; color: #3A5BA93"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5561 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5562 */ 5563 public static final SColor WHITISH_GREEN = new SColor(0xA5BA93, "Whitish Green"); 5564 /** 5565 * Color constant<PRE> 5566 *<font style="background-color: #8C9E5E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8C9E5E; color: #000000"> @ </font> 5567 *<font style="background-color: #8C9E5E; color: #8C9E5E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #8C9E5E; color: #888888"> @ </font> 5568 *<font style="background-color: #8C9E5E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #8C9E5E; color: #ffffff"> @ </font> 5569 * 5570 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5571 *<font style="background-color: #ff0000; color: #8C9E5E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5572 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5573 */ 5574 public static final SColor WILLOW_DYE = new SColor(0x8C9E5E, "Willow Dye"); 5575 /** 5576 * Color constant<PRE> 5577 *<font style="background-color: #817B69; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #817B69; color: #000000"> @ </font> 5578 *<font style="background-color: #817B69; color: #817B69"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #817B69; color: #888888"> @ </font> 5579 *<font style="background-color: #817B69; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #817B69; color: #ffffff"> @ </font> 5580 * 5581 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5582 *<font style="background-color: #ff0000; color: #817B69"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5583 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5584 */ 5585 public static final SColor WILLOW_GREY = new SColor(0x817B69, "Willow Grey"); 5586 /** 5587 * Color constant<PRE> 5588 *<font style="background-color: #9C8A4D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9C8A4D; color: #000000"> @ </font> 5589 *<font style="background-color: #9C8A4D; color: #9C8A4D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9C8A4D; color: #888888"> @ </font> 5590 *<font style="background-color: #9C8A4D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9C8A4D; color: #ffffff"> @ </font> 5591 * 5592 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5593 *<font style="background-color: #ff0000; color: #9C8A4D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5594 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5595 */ 5596 public static final SColor WILLOW_TEA = new SColor(0x9C8A4D, "Willow Tea"); 5597 /** 5598 * Color constant<PRE> 5599 *<font style="background-color: #AB4C3D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AB4C3D; color: #000000"> @ </font> 5600 *<font style="background-color: #AB4C3D; color: #AB4C3D"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #AB4C3D; color: #888888"> @ </font> 5601 *<font style="background-color: #AB4C3D; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #AB4C3D; color: #ffffff"> @ </font> 5602 * 5603 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5604 *<font style="background-color: #ff0000; color: #AB4C3D"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5605 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5606 */ 5607 public static final SColor WILTED_LAWN_CLIPPINGS = new SColor(0xAB4C3D, "Wilted Lawn Clippings"); 5608 /** 5609 * Color constant<PRE> 5610 *<font style="background-color: #BCB58C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BCB58C; color: #000000"> @ </font> 5611 *<font style="background-color: #BCB58C; color: #BCB58C"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #BCB58C; color: #888888"> @ </font> 5612 *<font style="background-color: #BCB58C; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #BCB58C; color: #ffffff"> @ </font> 5613 * 5614 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5615 *<font style="background-color: #ff0000; color: #BCB58C"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5616 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5617 */ 5618 public static final SColor WILLOW_LEAVES_UNDERSIDE = new SColor(0xBCB58C, "Willow Leaves Underside"); 5619 /** 5620 * Color constant<PRE> 5621 *<font style="background-color: #C9A0DC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C9A0DC; color: #000000"> @ </font> 5622 *<font style="background-color: #C9A0DC; color: #C9A0DC"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #C9A0DC; color: #888888"> @ </font> 5623 *<font style="background-color: #C9A0DC; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #C9A0DC; color: #ffffff"> @ </font> 5624 * 5625 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5626 *<font style="background-color: #ff0000; color: #C9A0DC"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5627 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5628 */ 5629 public static final SColor WISTERIA = new SColor(0xC9A0DC, "Wisteria"); 5630 /** 5631 * Color constant<PRE> 5632 *<font style="background-color: #89729E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #89729E; color: #000000"> @ </font> 5633 *<font style="background-color: #89729E; color: #89729E"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #89729E; color: #888888"> @ </font> 5634 *<font style="background-color: #89729E; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #89729E; color: #ffffff"> @ </font> 5635 * 5636 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5637 *<font style="background-color: #ff0000; color: #89729E"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5638 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5639 */ 5640 public static final SColor WISTERIA_DYE = new SColor(0x89729E, "Wisteria Dye"); 5641 /** 5642 * Color constant<PRE> 5643 *<font style="background-color: #875F9A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #875F9A; color: #000000"> @ </font> 5644 *<font style="background-color: #875F9A; color: #875F9A"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #875F9A; color: #888888"> @ </font> 5645 *<font style="background-color: #875F9A; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #875F9A; color: #ffffff"> @ </font> 5646 * 5647 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5648 *<font style="background-color: #ff0000; color: #875F9A"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5649 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5650 */ 5651 public static final SColor WISTERIA_PURPLE = new SColor(0x875F9A, "Wisteria Purple"); 5652 /** 5653 * Color constant<PRE> 5654 *<font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> @ </font> 5655 *<font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #000000; color: #ffff00"> @ </font><font style="background-color: #888888; color: #ffff00"> @ </font><font style="background-color: #ffffff; color: #ffff00"> @ </font><font style="background-color: #ffff00; color: #888888"> @ </font> 5656 *<font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #ffff00; color: #ffffff"> @ </font> 5657 * 5658 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5659 *<font style="background-color: #ff0000; color: #ffff00"> @ </font><font style="background-color: #ffff00; color: #ffff00"> @ </font><font style="background-color: #00ff00; color: #ffff00"> @ </font><font style="background-color: #0000ff; color: #ffff00"> @ </font><font style="background-color: #964b00; color: #ffff00"> @ </font> 5660 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5661 */ 5662 public static final SColor YELLOW = new SColor(0xffff00, "Yellow"); 5663 /** 5664 * Color constant<PRE> 5665 *<font style="background-color: #9ACD32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9ACD32; color: #000000"> @ </font> 5666 *<font style="background-color: #9ACD32; color: #9ACD32"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #9ACD32; color: #888888"> @ </font> 5667 *<font style="background-color: #9ACD32; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #9ACD32; color: #ffffff"> @ </font> 5668 * 5669 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5670 *<font style="background-color: #ff0000; color: #9ACD32"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5671 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5672 */ 5673 public static final SColor YELLOW_GREEN = new SColor(0x9ACD32, "Yellow Green"); 5674 /** 5675 * Color constant<PRE> 5676 *<font style="background-color: #896C39; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #896C39; color: #000000"> @ </font> 5677 *<font style="background-color: #896C39; color: #896C39"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #896C39; color: #888888"> @ </font> 5678 *<font style="background-color: #896C39; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #896C39; color: #ffffff"> @ </font> 5679 * 5680 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5681 *<font style="background-color: #ff0000; color: #896C39"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5682 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5683 */ 5684 public static final SColor YELLOW_SEA_PINE_BROWN = new SColor(0x896C39, "Yellow Sea Pine Brown"); 5685 /** 5686 * Color constant<PRE> 5687 *<font style="background-color: #6b9362; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6b9362; color: #000000"> @ </font> 5688 *<font style="background-color: #6b9362; color: #6b9362"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #6b9362; color: #888888"> @ </font> 5689 *<font style="background-color: #6b9362; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #6b9362; color: #ffffff"> @ </font> 5690 * 5691 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5692 *<font style="background-color: #ff0000; color: #6b9362"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5693 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5694 */ 5695 public static final SColor YOUNG_BAMBOO = new SColor(0x6b9362, "Young Bamboo"); 5696 /** 5697 * Color constant<PRE> 5698 *<font style="background-color: #EBC2AF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EBC2AF; color: #000000"> @ </font> 5699 *<font style="background-color: #EBC2AF; color: #EBC2AF"> </font><font style="background-color: #000000;"> @ </font><font style="background-color: #888888;"> @ </font><font style="background-color: #ffffff;"> @ </font><font style="background-color: #EBC2AF; color: #888888"> @ </font> 5700 *<font style="background-color: #EBC2AF; color: #000000"> </font><font style="background-color: #000000; color: #000000"> </font><font style="background-color: #888888; color: #000000"> </font><font style="background-color: #ffffff; color: #000000"> </font><font style="background-color: #EBC2AF; color: #ffffff"> @ </font> 5701 * 5702 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font> 5703 *<font style="background-color: #ff0000; color: #EBC2AF"> @ </font><font style="background-color: #ffff00;"> @ </font><font style="background-color: #00ff00;"> @ </font><font style="background-color: #0000ff;"> @ </font><font style="background-color: #964b00;"> @ </font> 5704 *<font style="background-color: #ff0000; color: #000000"> </font><font style="background-color: #ffff00; color: #000000"> </font><font style="background-color: #00ff00; color: #000000"> </font><font style="background-color: #0000ff; color: #000000"> </font><font style="background-color: #964b00; color: #000000"> </font></PRE> 5705 */ 5706 public static final SColor ZINNWALDITE = new SColor(0xEBC2AF, "Zinnwaldite"); 5707 /** 5708 * A color constant that is fully transparent. The RGB portion is Black, but 5709 * should not render when used in a method that respects alpha values. 5710 */ 5711 public static final SColor TRANSPARENT = new SColor(0x00000000, "Transparent"); 5712 /** 5713 * This array is loaded with the colors found in the rainbow, in the 5714 * standard ROYGBIV order. 5715 */ 5716 public static SColor[] RAINBOW = { 5717 RED_PIGMENT, ORANGE_PEEL, YELLOW, GREEN, BLUE, INDIGO_DYE, VIOLET}; 5718 /** 5719 * This array is loaded with the colors from the traditional Japanese 5720 * Red-Violet Series found at the wikipedia site here: 5721 * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan 5722 */ 5723 public static SColor[] RED_VIOLET_SERIES = { 5724 ONE_KIN_DYE, RED_PLUM, CHERRY_BLOSSOM_DYE, PALE_CRIMSON, PEACH_DYE, MEDIUM_CRIMSON, WASHED_OUT_CRIMSON}; 5725 /** 5726 * This array is loaded with the colors from the traditional Japanese Red 5727 * Series found at the wikipedia site here: 5728 * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan 5729 */ 5730 public static SColor[] RED_SERIES = { 5731 IBIS_WING, LONG_SPRING, COCHINEAL_RED, THRICE_DYED_CRIMSON, PLUM_BLOSSOM_MOUSE, PURE_CRIMSON, RED_BEAN, 5732 SHRIMP_BROWN, DAWN, ORANGUTAN, PERSIMMON_JUICE, RED_KITE, BLACK_KITE, GLAZED_PERSIMMON, EDO_BROWN, 5733 CYPRESS_BARK, RINSED_OUT_RED, BREWED_MUSTARD_BROWN, OVERDYED_RED_BROWN, CHINESE_TEA_BROWN, FADED_CHINESE_TEA_BROWN, 5734 CHESTNUT_LEATHER_BROWN, IBIS, CHERRY_BLOSSOM_MOUSE, FOREIGN_CRIMSON, DEEP_SCARLET, WATER_PERSIMMON, 5735 SAPPANWOOD_INCENSE, TRUE_RED, SILVERED_RED, CHESTNUT_PLUM, CORAL_DYE, WILTED_LAWN_CLIPPINGS, RED_BIRCH, 5736 CYPRESS_BARK_RED, BLOOD_RED, BLOOD, BENI_DYE, MEAT, RED_INCENSE, EARTHEN_YELLOW_RED_BROWN, DISTANT_RIVER_BROWN, 5737 BIRCH_BROWN, SPARROW_BROWN, BOILED_RED_BEAN_BROWN}; 5738 /** 5739 * This array is loaded with the colors from the traditional Japanese Yellow 5740 * Red Series found at the wikipedia site here: 5741 * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan 5742 */ 5743 public static SColor[] YELLOW_RED_SERIES = { 5744 WALNUT, SUMAC, RICH_GARDENIA, RED_OCHRE, POLISHED_BROWN, STYLISH_PERSIMMON, DAYLILY, RED_DYE_TURMERIC, 5745 LEGAL_DYE, AMBER_DYE, DECAYING_LEAVES, CLOVE_DYED, BRUSHWOOD_DYED, SOOTY_BAMBOO, EARTHEN_YELLOW, CHINESE_TEA_YELLOW, 5746 CATTAIL, SCORTCHED_BROWN, WASHED_OUT_PERSIMMON, SAWTOOTH_OAK, GREEN_TEA_DYE, PALE_PERSIMMON, PLUM_DYED, 5747 CLOVE_BROWN, LOQUAT_BROWN, PALE_INCENSE, GOLDEN_BROWN_DYE, FOX, ALOEWOOD, WHITE_TEA_DYE, 5748 DRIED_WEATHERED_BAMBOO, FLATTERY_BROWN}; 5749 /** 5750 * This array is loaded with the colors from the traditional Japanese Yellow 5751 * Series found at the wikipedia site here: 5752 * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan 5753 */ 5754 public static SColor[] YELLOW_SERIES = { 5755 LIGHT_YELLOW_DYE, EGG_DYE, BRIGHT_GOLD_BROWN, UNDRIED_WALL, CORN_DYE, GOLDEN_OAK, FLORAL_LEAF, TURMERIC, 5756 FADED_SEN_NO_RIKYUS_TEA, LYE, TEA_GARDEN_CONTEMPLATION, RAPESEED_OIL, NIGHTINGALE_BROWN, JAPANESE_TRIANDRA_GRASS, 5757 STEAMED_CHESTNUT, FINCH_BROWN, NIGHTINGALE, BRIGHT_GOLDEN_YELLOW, SUMAC_DYED, MULBERRY_DYED, CAPE_JASMINE, 5758 WHITE_OAK, GAMBOGE_DYE, EGGSHELL_PAPER, GOLDEN_FALLEN_LEAVES, SEN_NO_RIKYUS_TEA, JAPANESE_IRIS, 5759 SIMMERED_SEAWEED, YELLOW_SEA_PINE_BROWN, RAPEBLOSSOM_BROWN, AMUR_CORK_TREE, PALE_FALLEN_LEAVES, PATRINIA_FLOWER}; 5760 /** 5761 * This array is loaded with the colors from the traditional Japanese Yellow 5762 * Green Series found at the wikipedia site here: 5763 * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan 5764 */ 5765 public static SColor[] YELLOW_GREEN_SERIES = { 5766 GREENFINCH, WILLOW_TEA, FLIRTATIOUS_INDIGO_TEA, DEAD_MANS_FINGERS_SEAWEED, BAIKO_BROWN, SISKIN_SPROUT_YELLOW, 5767 WILLOW_LEAVES_UNDERSIDE, WILLOW_DYE, BLUE_BLACK_CRAYFISH, PALE_OAK, RIKAN_BROWN, MOSS, THOUSAND_YEAR_OLD_BROWN, 5768 IWAI_BROWN, SOOTY_WILLOW_BAMBOO, PALE_YOUNG_GREEN_ONION, FRESH_ONION, PINE_NEEDLE}; 5769 /** 5770 * This array is loaded with the colors from the traditional Japanese Blue 5771 * Green Series found at the wikipedia site here: 5772 * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan 5773 */ 5774 public static SColor[] BLUE_GREEN_SERIES = { 5775 JAPANESE_PALE_BLUE, WILLOW_GREY, THOUSAND_YEAR_OLD_GREEN, WHITISH_GREEN, PATINA, STOREROOM_BROWN, GREYISH_DARK_GREEN, 5776 INSECT_SCREEN, ALOEWOOD_BROWN, CELADON_DYE, RUSTY_STOREROOM, SILK_CREPE_BROWN, YOUNG_BAMBOO, OLD_BAMBOO, 5777 MIDORI, RUSTY_CELADON, HORSETAIL, GREEN_BAMBOO, VELVET, FRAGILE_SEAWEED_BROWN, PALE_GREEN_ONION, BLUE_GREEN_DYE, 5778 IRON, GORYEO_STOREROOM}; 5779 /** 5780 * This array is loaded with the colors from the traditional Japanese Blue 5781 * Violet Series found at the wikipedia site here: 5782 * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan 5783 */ 5784 public static SColor[] BLUE_VIOLET_SERIES = { 5785 HARBOR_RAT, IRON_STORAGE, RUSTED_LIGHT_BLUE, LIGHT_BLUE_DYE, RUSTY_STORAGE, JAPANESE_INDIGO, LIGHT_BLUE_FLOWER, 5786 OPPOSITE_FLOWER, IRONHEAD_FLOWER, SKY, ULTRAMARINE_DYE, COARSE_WOOL, NAVY_BLUE_DYE, STAINED_RED, MOUSY_WISTERIA, 5787 WISTERIA_DYE, DULL_BLUE, WATER, INSIDE_OF_A_BOTTLE, NEW_BRIDGE, MOUSY_INDIGO, ONANDO, THOUSAND_HERB, LIGHT_BLUE_SILK, 5788 KIMONO_STORAGE, BLACK_CHESTNUT_OAK, DARK_BLUE_DYE, LAPIS_LAZULI, DARK_BLUE_LAPIS_LAZULI, NAVY_BLUE_BELLFLOWER, 5789 SAFFLOWER, DARK_INDIGO}; 5790 /** 5791 * This array is loaded with the colors from the traditional Japanese Violet 5792 * Series found at the wikipedia site here: 5793 * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan 5794 */ 5795 public static SColor[] VIOLET_SERIES = { 5796 WISTERIA_PURPLE, TATARIAN_ASTER, BLUE_VIOLET_DYE, THIN_VIOLET, VIOLET_DYE, DARK_RED_DYE, RED_WISTERIA, 5797 DOVE_FEATHER_GREY, VINE_GRAPE, TREE_PEONY, FAKE_PURPLE, SAPPANWOOD, VANISHING_RED_MOUSE, BELLFLOWER, 5798 DISAPPEARING_PURPLE, DEEP_PURPLE, HALF_PURPLE, PURPLE_DYE, IRIS, RABBIT_EAR_IRIS, GRAPE_MOUSE, BURNT_BAMBOO, 5799 PLUM_PURPLE, PURPLE_KITE, MULBERRY}; 5800 /** 5801 * This array is loaded with the colors from the traditional Japanese 5802 * Achromatic Series found at the wikipedia site here: 5803 * http://en.wikipedia.org/wiki/Traditional_colors_of_Japan 5804 */ 5805 public static SColor[] ACHROMATIC_SERIES = { 5806 UNBLEACHED_SILK, SILVER_GREY, BROWN_RAT_GREY, BETEL_NUT_DYE, BLACK_DYE, WHITE_MOUSE, PLAIN_MOUSE, 5807 INDIGO_INK_BROWN, INK, INDIGO_WHITE}; 5808 /** 5809 * This array is loaded with all of the colors defined in SColor, in 5810 * arbitrary order. 5811 */ 5812 public static SColor[] FULL_PALETTE = {ALICE_BLUE, ALIZARIN, ALOEWOOD, ALOEWOOD_BROWN, AMARANTH, AMBER, 5813 AMBER_DYE, AMETHYST, AMUR_CORK_TREE, APRICOT, AQUA, AQUAMARINE, ARMY_GREEN, ASPARAGUS, ATOMIC_TANGERINE, 5814 AUBURN, AZUL, AZURE, BABY_BLUE, BAIKO_BROWN, BEIGE, BELLFLOWER, BENI_DYE, BETEL_NUT_DYE, BIRCH_BROWN, 5815 BISTRE, BLACK, BLACK_CHESTNUT_OAK, BLACK_DYE, BLACK_KITE, BLOOD, BLOOD_RED, BLUE, BLUE_BLACK_CRAYFISH, 5816 BLUE_GREEN, BLUE_GREEN_DYE, BLUE_VIOLET, BLUE_VIOLET_DYE, BOILED_RED_BEAN_BROWN, BONDI_BLUE, BRASS, 5817 BREWED_MUSTARD_BROWN, BRIGHT_GOLD_BROWN, BRIGHT_GOLDEN_YELLOW, BRIGHT_GREEN, BRIGHT_PINK, 5818 BRIGHT_TURQUOISE, BRILLIANT_ROSE, BRONZE, BROWN, BROWN_RAT_GREY, BROWNER, BRUSHWOOD_DYED, BUFF, 5819 BURGUNDY, BURNT_BAMBOO, BURNT_ORANGE, BURNT_SIENNA, BURNT_UMBER, CAMO_GREEN, CAPE_JASMINE, 5820 CAPUT_MORTUUM, CARDINAL, CARMINE, CARNATION_PINK, CAROLINA_BLUE, CARROT_ORANGE, CATTAIL, CELADON, 5821 CELADON_DYE, CERISE, CERULEAN, CERULEAN_BLUE, CHARTREUSE, CHARTREUSE_GREEN, CHERRY_BLOSSOM, 5822 CHERRY_BLOSSOM_DYE, CHERRY_BLOSSOM_MOUSE, CHESTNUT, CHESTNUT_LEATHER_BROWN, CHESTNUT_PLUM, 5823 CHINESE_TEA_BROWN, CHINESE_TEA_YELLOW, CHOCOLATE, CINNABAR, CINNAMON, CLOVE_BROWN, CLOVE_DYED, 5824 COARSE_WOOL, COBALT, COCHINEAL_RED, COLUMBIA_BLUE, COPPER, COPPER_ROSE, CORAL, CORAL_DYE, CORAL_RED, 5825 CORN, CORN_DYE, CORNFLOWER_BLUE, COSMIC_LATTE, CREAM, CRIMSON, CYAN, CYPRESS_BARK, CYPRESS_BARK_RED, 5826 DARK_BLUE, DARK_BLUE_DYE, DARK_BLUE_LAPIS_LAZULI, DARK_BROWN, DARK_CERULEAN, DARK_CHESTNUT, DARK_CORAL, 5827 DARK_GOLDENROD, DARK_GRAY, DARK_GREEN, DARK_INDIGO, DARK_KHAKI, DARK_PASTEL_GREEN, DARK_PINK, 5828 DARK_SCARLET, DARK_RED, DARK_RED_DYE, DARK_SALMON, DARK_SLATE_GRAY, DARK_SPRING_GREEN, DARK_TAN, 5829 DARK_TURQUOISE, DARK_VIOLET, DAWN, DAYLILY, DEAD_MANS_FINGERS_SEAWEED, DECAYING_LEAVES, DEEP_CERISE, 5830 DEEP_CHESTNUT, DEEP_FUCHSIA, DEEP_LILAC, DEEP_MAGENTA, DEEP_PEACH, DEEP_PINK, DEEP_PURPLE, DEEP_SCARLET, 5831 DENIM, DISAPPEARING_PURPLE, DISTANT_RIVER_BROWN, DODGER_BLUE, DOVE_FEATHER_GREY, DRIED_WEATHERED_BAMBOO, 5832 DULL_BLUE, EARTHEN_YELLOW, EARTHEN_YELLOW_RED_BROWN, ECRU, EDO_BROWN, EGG_DYE, EGGSHELL_PAPER, 5833 EGYPTIAN_BLUE, ELECTRIC_BLUE, ELECTRIC_GREEN, ELECTRIC_INDIGO, ELECTRIC_LIME, ELECTRIC_PURPLE, EMERALD, 5834 EGGPLANT, FADED_CHINESE_TEA_BROWN, FADED_SEN_NO_RIKYUS_TEA, FAKE_PURPLE, FALU_RED, FERN_GREEN, 5835 FINCH_BROWN, FIREBRICK, FLATTERY_BROWN, FLAX, FLIRTATIOUS_INDIGO_TEA, FLORAL_LEAF, FOREIGN_CRIMSON, 5836 FOREST_GREEN, FOX, FRAGILE_SEAWEED_BROWN, FRENCH_ROSE, FRESH_ONION, FUCSHIA_PINK, GAMBOGE, GAMBOGE_DYE, 5837 GLAZED_PERSIMMON, GOLD, GOLDEN, GOLDEN_BROWN, GOLDEN_BROWN_DYE, GOLDEN_FALLEN_LEAVES, GOLDEN_OAK, 5838 GOLDEN_YELLOW, GOLDENROD, GORYEO_STOREROOM, GRAPE_MOUSE, GRAY, GRAY_ASPARAGUS, GREEN, GREENFINCH, 5839 GREEN_BAMBOO, GREEN_TEA_DYE, GREEN_YELLOW, GREYISH_DARK_GREEN, HALF_PURPLE, HAN_PURPLE, HARBOR_RAT, 5840 HELIOTROPE, HOLLYWOOD_CERISE, HORSETAIL, HOT_MAGENTA, HOT_PINK, IBIS, IBIS_WING, INDIGO, INDIGO_DYE, 5841 INDIGO_INK_BROWN, INDIGO_WHITE, INK, INSECT_SCREEN, INSIDE_OF_A_BOTTLE, INTERNATIONAL_KLEIN_BLUE, 5842 INTERNATIONAL_ORANGE, IRIS, IRON, IRONHEAD_FLOWER, IRON_STORAGE, ISLAMIC_GREEN, IVORY, IWAI_BROWN, 5843 JADE, JAPANESE_INDIGO, JAPANESE_IRIS, JAPANESE_PALE_BLUE, JAPANESE_TRIANDRA_GRASS, KELLY_GREEN, KHAKI, 5844 KIMONO_STORAGE, LAPIS_LAZULI, LAVENDER_FLORAL, LAVENDER, LAVENDER_BLUE, LAVENDER_BLUSH, LAVENDER_GRAY, 5845 LAVENDER_MAGENTA, LAVENDER_PINK, LAVENDER_PURPLE, LAVENDER_ROSE, LAWN_GREEN, LEGAL_DYE, LEMON, 5846 LEMON_CHIFFON, LIGHT_BLUE, LIGHT_BLUE_DYE, LIGHT_BLUE_FLOWER, LIGHT_BLUE_SILK, LIGHT_GRAY, LIGHT_KHAKI, 5847 LIGHT_LIME, LIGHT_MAROON, LIGHT_PINK, LIGHT_VIOLET, LIGHT_YELLOW_DYE, LILAC, LIME, LIME_GREEN, LINEN, 5848 LONG_SPRING, LOQUAT_BROWN, LYE, MAGENTA_DYE, MAGIC_MINT, MAGNOLIA, MALACHITE, MAROON, MAGENTA, 5849 MAYA_BLUE, MAUVE, MAUVE_TAUPE, MEAT, MEDIUM_BLUE, MEDIUM_CARMINE, MEDIUM_CRIMSON, 5850 MEDIUM_LAVENDER_MAGENTA, MEDIUM_PURPLE, MEDIUM_SPRING_GREEN, MIDORI, MIDNIGHT_BLUE, MINT_GREEN, 5851 MISTY_ROSE, MOSS, MOSS_GREEN, MOUNTBATTEN_PINK, MOUSY_INDIGO, MOUSY_WISTERIA, MULBERRY, MULBERRY_DYED, 5852 MUSTARD, MYRTLE, NAVAJO_WHITE, NAVY_BLUE, NAVY_BLUE_BELLFLOWER, NAVY_BLUE_DYE, NEW_BRIDGE, NIGHTINGALE, 5853 NIGHTINGALE_BROWN, OCHRE, OLD_BAMBOO, OLD_GOLD, OLD_LACE, OLD_LAVENDER, OLD_ROSE, OLIVE, OLIVE_DRAB, 5854 OLIVINE, ONANDO, ONE_KIN_DYE, OPPOSITE_FLOWER, ORANGE, ORANGE_PEEL, ORANGE_RED, ORANGUTAN, ORCHID, 5855 OVERDYED_RED_BROWN, PALE_BLUE, PALE_BROWN, PALE_CARMINE, PALE_CHESTNUT, PALE_CORNFLOWER_BLUE, 5856 PALE_CRIMSON, PALE_FALLEN_LEAVES, PALE_GREEN_ONION, PALE_INCENSE, PALE_MAGENTA, PALE_OAK, PALE_PERSIMMON, 5857 PALE_PINK, PALE_RED_VIOLET, PALE_YOUNG_GREEN_ONION, PAPAYA_WHIP, PASTEL_GREEN, PASTEL_PINK, PATINA, 5858 PATRINIA_FLOWER, PEACH, PEACH_DYE, PEACH_ORANGE, PEACH_YELLOW, PEAR, PERIWINKLE, PERSIAN_BLUE, 5859 PERSIAN_GREEN, PERSIAN_INDIGO, PERSIAN_RED, PERSIAN_PINK, PERSIAN_ROSE, PERSIMMON, PERSIMMON_JUICE, 5860 PIGMENT_BLUE, PINE_GREEN, PINE_NEEDLE, PINK, PINK_ORANGE, PLAIN_MOUSE, PLATINUM, PLUM, 5861 PLUM_BLOSSOM_MOUSE, PLUM_DYED, PLUM_PURPLE, POLISHED_BROWN, POWDER_BLUE, PRUSSIAN_BLUE, 5862 PSYCHEDELIC_PURPLE, PUCE, PUMPKIN, PURE_CRIMSON, PURPLE, PURPLE_DYE, PURPLE_KITE, PURPLE_TAUPE, 5863 RABBIT_EAR_IRIS, RAPEBLOSSOM_BROWN, RAPESEED_OIL, RAW_UMBER, RAZZMATAZZ, RED, RED_BEAN, RED_BIRCH, 5864 RED_INCENSE, RED_DYE_TURMERIC, RED_KITE, RED_OCHRE, RED_PIGMENT, RED_PLUM, RED_VIOLET, RED_WISTERIA, 5865 RICH_CARMINE, RICH_GARDENIA, RINSED_OUT_RED, RIKAN_BROWN, ROBIN_EGG_BLUE, ROSE, ROSE_MADDER, ROSE_TAUPE, 5866 ROYAL_BLUE, ROYAL_PURPLE, RUBY, RUSSET, RUST, RUSTED_LIGHT_BLUE, RUSTY_CELADON, RUSTY_STORAGE, 5867 RUSTY_STOREROOM, SAFETY_ORANGE, SAFFLOWER, SAFFRON, SALMON, SANDY_BROWN, SANGRIA, SAPPHIRE, SAPPANWOOD, 5868 SAPPANWOOD_INCENSE, SAWTOOTH_OAK, SCARLET, SCHOOL_BUS_YELLOW, SCORTCHED_BROWN, SEA_GREEN, SEASHELL, 5869 SELECTIVE_YELLOW, SEN_NO_RIKYUS_TEA, SEPIA, SHAMROCK_GREEN, SHOCKING_PINK, SHRIMP_BROWN, 5870 SILK_CREPE_BROWN, SILVER, SILVER_GREY, SILVERED_RED, SIMMERED_SEAWEED, SISKIN_SPROUT_YELLOW, SKY, 5871 SKY_BLUE, SLATE_GRAY, SMALT, SOOTY_BAMBOO, SOOTY_WILLOW_BAMBOO, SPARROW_BROWN, SPRING_BUD, 5872 SPRING_GREEN, STAINED_RED, STEAMED_CHESTNUT, STEEL_BLUE, STOREROOM_BROWN, STYLISH_PERSIMMON, SUMAC, 5873 SUMAC_DYED, TAN, TANGERINE, TANGERINE_YELLOW, TATARIAN_ASTER, TAUPE, TAWNY, TEA_GARDEN_CONTEMPLATION, 5874 TEA_GREEN, TEA_ORANGE, TEA_ROSE, TEAL, TERRA_COTTA, THIN_VIOLET, THISTLE, THOUSAND_HERB, 5875 THOUSAND_YEAR_OLD_BROWN, THOUSAND_YEAR_OLD_GREEN, THRICE_DYED_CRIMSON, TOMATO, TREE_PEONY, TRUE_PINK, 5876 TRUE_RED, TURMERIC, TURQUOISE, TYRIAN_PURPLE, ULTRAMARINE, ULTRAMARINE_DYE, UNBLEACHED_SILK, 5877 UNDRIED_WALL, VANISHING_RED_MOUSE, VEGAS_GOLD, VELVET, VERMILION, VINE_GRAPE, VIOLET, VIOLET_DYE, 5878 VIRIDIAN, WALNUT, WASHED_OUT_CRIMSON, WASHED_OUT_PERSIMMON, WATER, WATER_PERSIMMON, WHEAT, WHITE, 5879 WHITE_MOUSE, WHITE_OAK, WHITE_TEA_DYE, WHITISH_GREEN, WILLOW_DYE, WILLOW_GREY, WILLOW_TEA, 5880 WILTED_LAWN_CLIPPINGS, WILLOW_LEAVES_UNDERSIDE, WISTERIA, WISTERIA_DYE, WISTERIA_PURPLE, YELLOW, 5881 YELLOW_GREEN, YELLOW_SEA_PINE_BROWN, YOUNG_BAMBOO, ZINNWALDITE}; 5882 /** 5883 * This array is loaded with all of the colors defined in SColor, in 5884 * arbitrary order. 5885 * 5886 * @deprecated Prefer FULL_PALETTE to this misspelled name; they are equivalent. 5887 */ 5888 public static SColor[] FULL_PALLET = FULL_PALETTE; 5889 5890 /** 5891 * Indexes into this palette can be used as a placeholder for modules that do not have access to SColor. 5892 * <br> 5893 * This palette has colors at these elements: 5894 * <ul> 5895 * <li>0: Black, also used for backgrounds if not specified</li> 5896 * <li>1: Off-white, used as the default foreground at times</li> 5897 * <li>2: Dark gray for walls</li> 5898 * <li>3: Silver gray for floors</li> 5899 * <li>4: Rust brown for doors</li> 5900 * <li>5: Gray-blue for water</li> 5901 * <li>6: Bright orange for traps</li> 5902 * <li>7: White</li> 5903 * <li>8: Light gray</li> 5904 * <li>9: Dark gray</li> 5905 * <li>10: Light red</li> 5906 * <li>11: Medium red</li> 5907 * <li>12: Dark red</li> 5908 * <li>13: Light orange</li> 5909 * <li>14: Medium orange</li> 5910 * <li>15: Dark orange</li> 5911 * <li>16: Light yellow</li> 5912 * <li>17: Medium yellow</li> 5913 * <li>18: Dark yellow</li> 5914 * <li>19: Light green</li> 5915 * <li>20: Medium green</li> 5916 * <li>21: Dark green</li> 5917 * <li>22: Light blue-green</li> 5918 * <li>23: Medium blue-green</li> 5919 * <li>24: Dark blue-green</li> 5920 * <li>25: Light blue</li> 5921 * <li>26: Medium blue</li> 5922 * <li>27: Dark blue</li> 5923 * <li>28: Light purple</li> 5924 * <li>29: Medium purple</li> 5925 * <li>30: Dark purple</li> 5926 * <li>31: Light pink</li> 5927 * <li>32: Medium pink</li> 5928 * <li>33: Dark pink</li> 5929 * <li>34: Light gray-brown</li> 5930 * <li>35: Medium gray-brown</li> 5931 * <li>36: Dark gray-brown</li> 5932 * <li>37: Light brown</li> 5933 * <li>38: Medium brown</li> 5934 * <li>39: Dark brown</li> 5935 * </ul> 5936 */ 5937 public static SColor[] LIMITED_PALETTE = { 5938 // 0 1 2 3 4 5 6 5939 PURE_DARK_GRAY, CREAM, FLATTERY_BROWN, SILVER_GREY, RUST, PALE_CORNFLOWER_BLUE, INTERNATIONAL_ORANGE, 5940 // 7 8 9 5941 WHITE, LIGHT_GRAY, DARK_GRAY, 5942 // 10 11 12 5943 RED_INCENSE, RED, COCHINEAL_RED, 5944 // 13 14 15 5945 PEACH_ORANGE, ORANGE_PEEL, TANGERINE, 5946 // 16 17 18 5947 LEMON_CHIFFON, CORN, GOLDEN_YELLOW, 5948 // 19 20 21 5949 MINT_GREEN, LIME_GREEN, GREEN_BAMBOO, 5950 // 22 23 24 5951 CYAN, OCEAN_BLUE, MIDORI, 5952 // 25 26 27 5953 COLUMBIA_BLUE, ROYAL_BLUE, PERSIAN_BLUE, 5954 // 28 29 30 5955 LAVENDER_BLUE, DARK_VIOLET, INDIGO, 5956 // 31 32 33 5957 CARNATION_PINK, HOT_MAGENTA, LIGHT_MAROON, 5958 // 34 35 36 5959 TAN, DARK_TAN, PALE_BROWN, 5960 // 37 38 39 5961 STEAMED_CHESTNUT, DARK_CHESTNUT, SAPPANWOOD_INCENSE 5962 }; 5963 /** 5964 * A constructor with no passed values. Builds a white (opaque all channels) 5965 * object. 5966 */ 5967 public SColor() { //builds white 5968 this(Color.rgb888(Color.WHITE)); 5969 } 5970 5971 /** 5972 * Creates a new color that's the same value as the passed in color. 5973 * 5974 * @param color 5975 */ 5976 public SColor(Color color) { 5977 this(Color.rgb888(color)); 5978 } 5979 5980 /** 5981 * Creates a new color that's the same value as the passed in color and 5982 * given the provided name. 5983 * 5984 * @param color 5985 * @param name 5986 */ 5987 public SColor(Color color, String name) { 5988 this(Color.rgb888(color)); 5989 this.name = name; 5990 } 5991 5992 /** 5993 * Creates a new color that has the given combined RGB value. 5994 * 5995 * @param colorValue 5996 */ 5997 public SColor(int colorValue) { 5998 super((colorValue << 8) | 255); 5999 name = super.toString(); 6000 } 6001 6002 /** 6003 * Creates a new color that has the given combined RGB value and the 6004 * provided name. 6005 * 6006 * @param colorValue 6007 * @param name 6008 */ 6009 public SColor(int colorValue, String name) { 6010 super((colorValue << 8) | 255); 6011 this.name = name; 6012 } 6013 6014 /** 6015 * Creates a new color that has the given RGB values. 6016 * 6017 * @param r 6018 * @param g 6019 * @param b 6020 */ 6021 public SColor(int r, int g, int b) { 6022 super(r / 255f, g / 255f, b / 255f, 1.0f); 6023 name = super.toString(); 6024 } 6025 6026 /** 6027 * Creates a new color that has the given ARGB values. 6028 * 6029 * @param r 6030 * @param g 6031 * @param b 6032 * @param a 6033 */ 6034 public SColor(int r, int g, int b, int a) { 6035 super(r / 255f, g / 255f, b / 255f, a / 255f); 6036 name = super.toString(); 6037 } 6038 6039 /** 6040 * Creates a new color that has the given RGB values and the provided name. 6041 * 6042 * @param r 6043 * @param g 6044 * @param b 6045 * @param name 6046 */ 6047 public SColor(int r, int g, int b, String name) { 6048 super(r / 255f, g / 255f, b / 255f, 1.0f); 6049 this.name = name; 6050 } 6051 6052 /** 6053 * Creates a new color that has the given ARGB values and the provided name. 6054 * 6055 * @param r 6056 * @param g 6057 * @param b 6058 * @param a 6059 * @param name 6060 */ 6061 public SColor(int r, int g, int b, int a, String name) { 6062 super(r / 255f, g / 255f, b / 255f, a / 255f); 6063 this.name = name; 6064 } 6065 6066 @Override 6067 public String toString() { 6068 return name + " " + super.toString(); 6069 } 6070 6071 public String getName() { 6072 return name; 6073 } 6074 6075 @Override 6076 public boolean equals(Object other) { 6077 return (other instanceof SColor || other instanceof Color) && toIntBits() == ((Color) other).toIntBits(); 6078 } 6079 6080 @Override 6081 public int hashCode() { 6082 int hash = 5; 6083 hash = 31 * hash + name.hashCode(); 6084 hash += 31 * hash + toIntBits(); 6085 return hash; 6086 } 6087}