kmandrup-colorist 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ *.sw?
2
+ .DS_Store
3
+ coverage
4
+ rdoc
5
+ pkg
data/.specification ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: slippyd-colorist
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.4
5
+ platform: ruby
6
+ authors:
7
+ - Michael Bleigh
8
+ - oleg dashevskii
9
+ - Slippy Douglas
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+
14
+ date: 2009-06-29 00:00:00 -07:00
15
+ default_executable:
16
+ dependencies: []
17
+
18
+ description: Colorist is a library built to handle the easy conversion and manipulation of colors with a special emphasis on W3C standards and CSS-style hex color notation.
19
+ email: michael@intridea.com
20
+ executables: []
21
+
22
+ extensions: []
23
+
24
+ extra_rdoc_files:
25
+ - MIT_LICENSE.rdoc
26
+ - README.rdoc
27
+ files:
28
+ - .gitignore
29
+ - CHANGELOG.rdoc
30
+ - MIT_LICENSE.rdoc
31
+ - README.rdoc
32
+ - Rakefile
33
+ - VERSION
34
+ - colorist.gemspec
35
+ - lib/colorist.rb
36
+ - lib/colorist/color.rb
37
+ - lib/colorist/core_extensions.rb
38
+ has_rdoc: false
39
+ homepage: http://github.com/slippyd/colorist
40
+ post_install_message:
41
+ rdoc_options:
42
+ - --main
43
+ - README.rdoc
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: "0"
51
+ version:
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: "0"
57
+ version:
58
+ requirements: []
59
+
60
+ rubyforge_project:
61
+ rubygems_version: 1.3.1
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: A library built to handle the easy conversion and simple manipulation of colors.
65
+ test_files: []
66
+
data/CHANGELOG.rdoc ADDED
@@ -0,0 +1,10 @@
1
+ = 0.0.3 - 2009-06-19 (by be9)
2
+
3
+ * Allow Colorist::Color subclassing
4
+ * Fix rounding in Colorist::Color.from_rgb(:percent=>true)
5
+ * Add Colorist::Color#adjust method
6
+ * Colorist::Color#invert is aliased as #opposite
7
+
8
+ = 0.0.2 - 2007-09-17
9
+
10
+ * Colorist::Color.from_string and String#to_color now work with capitalized colors as well as lowercase.
data/MIT_LICENSE.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2008 Michael Bleigh and Intridea, Inc.
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,43 @@
1
+ = Colorist
2
+
3
+ Colorist is a library built to handle the conversion, comparison, and
4
+ manipulation of colors in Ruby projects with an emphasis on W3C standards
5
+ and CSS-style hex notation. See the Color class for additional details
6
+ on the available methods.
7
+
8
+ == Example
9
+
10
+ require 'colorist'
11
+ include Colorist
12
+
13
+ gray = Color.new(0x333333)
14
+ gray + gray # => #<Color #666666>
15
+ gray - "#333" # => #<Color #000000>
16
+
17
+ gray.invert # => #<Color #cccccc>
18
+ gray.brightness # => 0.2
19
+
20
+ gray.contrast_with("#f00")
21
+
22
+ == Installation
23
+
24
+ First, make sure you have GemCutter set up:
25
+ gem install gemcutter
26
+ gem tumble
27
+
28
+ Then, grab the gem:
29
+ gem install slippyd-colorist
30
+
31
+ Last, add the requirement to your project and enjoy!
32
+ # in environment.rb, after "Rails::Initializer.run do |config|":
33
+ config.gem 'slippyd-colorist', :lib => false, :version => '0.0.5'
34
+
35
+ # in any class or module that you want to use Colorist:
36
+ include Colorist
37
+
38
+ == Resources
39
+
40
+ * GitHub Source: http://github.com/mbleigh/colorist
41
+ * Lighthouse (for bugs): http://mbleigh.lighthouseapp.com/projects/15686-colorist
42
+
43
+ Copyright (c) 2008 Michael Bleigh and Intridea, Inc. Released under the MIT open source license.
data/Rakefile ADDED
@@ -0,0 +1,61 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "kmandrup-colorist"
8
+ gem.summary = %Q{A library built to handle the easy conversion and simple manipulation of colors.}
9
+ gem.email = "kmandrup@gmail.com"
10
+ gem.homepage = "http://github.com/kristianmandrup/colorist"
11
+ gem.authors = ["Michael Bleigh", "oleg dashevskii", "Slippy Douglas", "Kristian Mandrup"]
12
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
13
+ gem.description = "Colorist is a library built to handle the easy conversion and manipulation of colors with a special emphasis on W3C standards and CSS-style hex color notation."
14
+ gem.has_rdoc = true
15
+ gem.rdoc_options = ["--main", "README.rdoc"]
16
+ gem.extra_rdoc_files = ["MIT_LICENSE.rdoc", "README.rdoc"]
17
+ end
18
+ Jeweler::GemcutterTasks.new
19
+ rescue LoadError
20
+ puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
21
+ end
22
+
23
+ =begin
24
+ require 'rake/testtask'
25
+ Rake::TestTask.new(:test) do |test|
26
+ test.libs << 'lib' << 'test'
27
+ test.pattern = 'test/**/*_test.rb'
28
+ test.verbose = true
29
+ end
30
+
31
+ begin
32
+ require 'rcov/rcovtask'
33
+ Rcov::RcovTask.new do |test|
34
+ test.libs << 'test'
35
+ test.pattern = 'test/**/*_test.rb'
36
+ test.verbose = true
37
+ end
38
+ rescue LoadError
39
+ task :rcov do
40
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
41
+ end
42
+ end
43
+
44
+
45
+ task :default => :test
46
+ =end
47
+
48
+ require 'rake/rdoctask'
49
+ Rake::RDocTask.new do |rdoc|
50
+ if File.exist?('VERSION.yml')
51
+ config = YAML.load(File.read('VERSION.yml'))
52
+ version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
53
+ else
54
+ version = ""
55
+ end
56
+
57
+ rdoc.rdoc_dir = 'rdoc'
58
+ rdoc.title = "colorist #{version}"
59
+ rdoc.rdoc_files.include('README*')
60
+ rdoc.rdoc_files.include('lib/**/*.rb')
61
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.2
@@ -0,0 +1,436 @@
1
+ # FROM http://www.december.com/html/spec/colorhex.html
2
+
3
+ html = %q{
4
+ <table cellspacing="2" cellpadding="1" border="1" style="border-collapse: collapse" width="100%" align="center">
5
+ <tr>
6
+ <th width="25%">black(Safe 16 SVG Hex3) #000000<td width="8%" bgcolor="#000000">
7
+ <br>&nbsp;
8
+ <th width="25%">midnightblue(Safe Hex3) #000033<td width="8%" bgcolor="#000033">
9
+ <th width="25%">navy(16 SVG) #000080<td width="8%" bgcolor="#000080">
10
+ <tr><th>darkblue(SVG) #00008B<td bgcolor="#00008B"><br>&nbsp;
11
+ <th>newmidnightblue #00009C<td bgcolor="#00009C">
12
+ <th>mediumblue(SVG) #0000CD<td bgcolor="#0000CD">
13
+ <tr><th>blue2(Hex3) #0000EE<td bgcolor="#0000EE"><br>&nbsp;<th>blue(Safe 16 SVG Hex3) #0000FF<td bgcolor="#0000FF"><th>pinegreen(Safe Hex3) #003300<td bgcolor="#003300">
14
+ <tr><th>cichlid #003EFF<td bgcolor="#003EFF"><br>&nbsp;<th>sign blue #003F87<td bgcolor="#003F87"><th>dumpster #004F00<td bgcolor="#004F00">
15
+ <tr><th>celtics #00611C<td bgcolor="#00611C"><br>&nbsp;<th>darkgreen(SVG) #006400<td bgcolor="#006400"><th>starbucks(Safe Hex3) #006633<td bgcolor="#006633">
16
+ <tr><th>deepskyblue4 #00688B<td bgcolor="#00688B"><br>&nbsp;<th>sign green #006B54<td bgcolor="#006B54"><th>slateblue #007FFF<td bgcolor="#007FFF">
17
+
18
+ <tr><th>green(16 SVG) #008000<td bgcolor="#008000"><br>&nbsp;<th>teal(16 SVG) #008080<td bgcolor="#008080"><th>turquoise4 #00868B<td bgcolor="#00868B">
19
+ <tr><th>green4 #008B00<td bgcolor="#008B00"><br>&nbsp;<th>springgreen4 #008B45<td bgcolor="#008B45"><th>darkcyan(SVG) #008B8B<td bgcolor="#008B8B">
20
+ <tr><th>irish flag(Safe Hex3) #009900<td bgcolor="#009900"><br>&nbsp;<th>skyblue5(Safe Hex3) #0099CC<td bgcolor="#0099CC"><th>deepskyblue3 #009ACD<td bgcolor="#009ACD">
21
+ <tr><th>truegreen #00AF33<td bgcolor="#00AF33"><br>&nbsp;<th>deepskyblue2 #00B2EE<td bgcolor="#00B2EE"><th>deepskyblue(SVG) #00BFFF<td bgcolor="#00BFFF">
22
+ <tr><th>turquoise3 #00C5CD<td bgcolor="#00C5CD"><br>&nbsp;<th>turquoiseblue #00C78C<td bgcolor="#00C78C"><th>emeraldgreen #00C957<td bgcolor="#00C957">
23
+
24
+ <tr><th>green3 #00CD00<td bgcolor="#00CD00"><br>&nbsp;<th>springgreen3 #00CD66<td bgcolor="#00CD66"><th>cyan3 #00CDCD<td bgcolor="#00CDCD">
25
+ <tr><th>darkturquoise(SVG) #00CED1<td bgcolor="#00CED1"><br>&nbsp;<th>turquoise2 #00E5EE<td bgcolor="#00E5EE"><th>green2(Hex3) #00EE00<td bgcolor="#00EE00">
26
+ <tr><th>springgreen2 #00EE76<td bgcolor="#00EE76"><br>&nbsp;<th>cyan2(Hex3) #00EEEE<td bgcolor="#00EEEE"><th>turquoise1 #00F5FF<td bgcolor="#00F5FF">
27
+ <tr><th>mediumspringgreen(SVG) #00FA9A<td bgcolor="#00FA9A"><br>&nbsp;<th>lime(Safe 16 SVG Hex3) #00FF00<td bgcolor="#00FF00"><th>springgreen(Safe Hex3) #00FF33<td bgcolor="#00FF33">
28
+ <tr><th>neonavocado(Safe Hex3) #00FF66<td bgcolor="#00FF66"><br>&nbsp;<th>springgreen(SVG) #00FF7F<td bgcolor="#00FF7F"><th>seagreen(Hex3) #00FFAA<td bgcolor="#00FFAA">
29
+
30
+ <tr><th>light teal(Safe Hex3) #00FFCC<td bgcolor="#00FFCC"><br>&nbsp;<th>aqua(Safe 16 SVG Hex3) #00FFFF<td bgcolor="#00FFFF"><th>cyan(Safe 16=aqua SVG Hex3) #00FFFF<td bgcolor="#00FFFF">
31
+ <tr><th>ty nant #0147FA<td bgcolor="#0147FA"><br>&nbsp;<th>topaz #0198E1<td bgcolor="#0198E1"><th>mouthwash #01C5BB<td bgcolor="#01C5BB">
32
+ <tr><th>picasso blue #0276FD<td bgcolor="#0276FD"><br>&nbsp;<th>gray1 #030303<td bgcolor="#030303"><th>manganeseblue #03A89E<td bgcolor="#03A89E">
33
+ <tr><th>gray2 #050505<td bgcolor="#050505"><br>&nbsp;<th>cerulean #05B8CC<td bgcolor="#05B8CC"><th>indiglo #05E9FF<td bgcolor="#05E9FF">
34
+ <tr><th>teal LED #05EDFF<td bgcolor="#05EDFF"><br>&nbsp;<th>sea green #068481<td bgcolor="#068481"><th>gray3 #080808<td bgcolor="#080808">
35
+
36
+ <tr><th>gray4 #0A0A0A<td bgcolor="#0A0A0A"><br>&nbsp;<th>permanentgreen #0AC92B<td bgcolor="#0AC92B"><th>police strobe #0BB5FF<td bgcolor="#0BB5FF">
37
+ <tr><th>gray5 #0D0D0D<td bgcolor="#0D0D0D"><br>&nbsp;<th>banker's lamp #0E8C3A<td bgcolor="#0E8C3A"><th>diamond blue #0EBFE9<td bgcolor="#0EBFE9">
38
+ <tr><th>gray6 #0F0F0F<td bgcolor="#0F0F0F"><br>&nbsp;<th>turquoise #0FDDAF<td bgcolor="#0FDDAF"><th>dodgerblue4 #104E8B<td bgcolor="#104E8B">
39
+ <tr><th>malachite #108070<td bgcolor="#108070"><br>&nbsp;<th>ultramarine #120A8F<td bgcolor="#120A8F"><th>gray7 #121212<td bgcolor="#121212">
40
+ <tr><th>garden hose #138F6A<td bgcolor="#138F6A"><br>&nbsp;<th>gray8 #141414<td bgcolor="#141414"><th>ulysses butterfly #1464F4<td bgcolor="#1464F4">
41
+
42
+ <tr><th>gray9 #171717<td bgcolor="#171717"><br>&nbsp;<th>masters jacket #174038<td bgcolor="#174038"><th>dodgerblue3 #1874CD<td bgcolor="#1874CD">
43
+ <tr><th>midnightblue(SVG) #191970<td bgcolor="#191970"><br>&nbsp;<th>gray10 #1A1A1A<td bgcolor="#1A1A1A"><th>alaska sky #1B3F8B<td bgcolor="#1B3F8B">
44
+ <tr><th>6 ball #1B6453<td bgcolor="#1B6453"><br>&nbsp;<th>gray11 #1C1C1C<td bgcolor="#1C1C1C"><th>dodgerblue2 #1C86EE<td bgcolor="#1C86EE">
45
+ <tr><th>peafowl #1D7CF2<td bgcolor="#1D7CF2"><br>&nbsp;<th>bottle green #1DA237<td bgcolor="#1DA237"><th>dodgerblue(SVG) #1E90FF<td bgcolor="#1E90FF">
46
+ <tr><th>gray12 #1F1F1F<td bgcolor="#1F1F1F"><br>&nbsp;<th>lightseagreen(SVG) #20B2AA<td bgcolor="#20B2AA"><th>emerald city #20BF9F<td bgcolor="#20BF9F">
47
+
48
+ <tr><th>gray13 #212121<td bgcolor="#212121"><br>&nbsp;<th>packer green #213D30<td bgcolor="#213D30"><th>huntergreen #215E21<td bgcolor="#215E21">
49
+ <tr><th>indigo2 #218868<td bgcolor="#218868"><br>&nbsp;<th>delft #22316C<td bgcolor="#22316C"><th>forestgreen(SVG) #228B22<td bgcolor="#228B22">
50
+ <tr><th>navyblue #23238E<td bgcolor="#23238E"><br>&nbsp;<th>steelblue #236B8E<td bgcolor="#236B8E"><th>seagreen #238E68<td bgcolor="#238E68">
51
+ <tr><th>gray14 #242424<td bgcolor="#242424"><br>&nbsp;<th>gray15 #262626<td bgcolor="#262626"><th>blue spider #26466D<td bgcolor="#26466D">
52
+ <tr><th>royalblue4 #27408B<td bgcolor="#27408B"><br>&nbsp;<th>pabst blue #283A90<td bgcolor="#283A90"><th>cooler #284942<td bgcolor="#284942">
53
+
54
+ <tr><th>emeraldgreen2 #28AE7B<td bgcolor="#28AE7B"><br>&nbsp;<th>ivoryblack #292421<td bgcolor="#292421"><th>gray16 #292929<td bgcolor="#292929">
55
+ <tr><th>atlantic green #2A8E82<td bgcolor="#2A8E82"><br>&nbsp;<th>gray17 #2B2B2B<td bgcolor="#2B2B2B"><th>blue angels #2B4F81<td bgcolor="#2B4F81">
56
+ <tr><th>st louis blues #2C5197<td bgcolor="#2C5197"><br>&nbsp;<th>cucumber #2C5D3F<td bgcolor="#2C5D3F"><th>indigo #2E0854<td bgcolor="#2E0854">
57
+ <tr><th>gray18 #2E2E2E<td bgcolor="#2E2E2E"><br>&nbsp;<th>stained glass #2E37FE<td bgcolor="#2E37FE"><th>lampblack #2E473B<td bgcolor="#2E473B">
58
+ <tr><th>park bench #2E6444<td bgcolor="#2E6444"><br>&nbsp;<th>seagreen(SVG) #2E8B57<td bgcolor="#2E8B57"><th>midnightblue #2F2F4F<td bgcolor="#2F2F4F">
59
+
60
+ <tr><th>darkgreen #2F4F2F<td bgcolor="#2F4F2F"><br>&nbsp;<th>darkslategray(SVG) #2F4F4F<td bgcolor="#2F4F4F"><th>darkslategrey(SVG) #2F4F4F<td bgcolor="#2F4F4F">
61
+ <tr><th>aquarium #2FAA96<td bgcolor="#2FAA96"><br>&nbsp;<th>presidential blue #302B54<td bgcolor="#302B54"><th>gray19 #303030<td bgcolor="#303030">
62
+ <tr><th>mailbox #3063A5<td bgcolor="#3063A5"><br>&nbsp;<th>sapgreen #308014<td bgcolor="#308014"><th>pool table #31B94D<td bgcolor="#31B94D">
63
+ <tr><th>mediumblue #3232CC<td bgcolor="#3232CC"><br>&nbsp;<th>mediumblue #3232CD<td bgcolor="#3232CD"><th>limerind #324F17<td bgcolor="#324F17">
64
+ <tr><th>liz eyes #325C74<td bgcolor="#325C74"><br>&nbsp;<th>green line #329555<td bgcolor="#329555"><th>skyblue6 #3299CC<td bgcolor="#3299CC">
65
+
66
+ <tr><th>mediumaquamarine2 #32CC99<td bgcolor="#32CC99"><br>&nbsp;<th>limegreen(SVG) #32CD32<td bgcolor="#32CD32"><th>mediumaquamarine3 #32CD99<td bgcolor="#32CD99">
67
+ <tr><th>darkcherryred(Safe Hex3) #330000<td bgcolor="#330000"><br>&nbsp;<th>cornflower(Safe Hex3) #3300FF<td bgcolor="#3300FF"><th>gray20(Safe Hex3) #333333<td bgcolor="#333333">
68
+ <tr><th>royalblue(Safe Hex3) #3333FF<td bgcolor="#3333FF"><br>&nbsp;<th>old money #337147<td bgcolor="#337147"><th>peacock #33A1C9<td bgcolor="#33A1C9">
69
+ <tr><th>blue line #33A1DE<td bgcolor="#33A1DE"><br>&nbsp;<th>parrotgreen(Safe Hex3) #33FF33<td bgcolor="#33FF33"><th>blue corn #344152<td bgcolor="#344152">
70
+ <tr><th>octopus #34925E<td bgcolor="#34925E"><br>&nbsp;<th>army uniform #353F3E<td bgcolor="#353F3E"><th>pacific blue #35586C<td bgcolor="#35586C">
71
+
72
+ <tr><th>parrot #3579DC<td bgcolor="#3579DC"><br>&nbsp;<th>gray21 #363636<td bgcolor="#363636"><th>steelblue4 #36648B<td bgcolor="#36648B">
73
+ <tr><th>pacific green #36DBCA<td bgcolor="#36DBCA"><br>&nbsp;<th>aquaman #37BC61<td bgcolor="#37BC61"><th>metallic mint #37FDFC<td bgcolor="#37FDFC">
74
+ <tr><th>blue deep #380474<td bgcolor="#380474"><br>&nbsp;<th>gray22 #383838<td bgcolor="#383838"><th>terreverte #385E0F<td bgcolor="#385E0F">
75
+ <tr><th>sgiteal #388E8E<td bgcolor="#388E8E"><br>&nbsp;<th>summersky #38B0DE<td bgcolor="#38B0DE"><th>green pepper #397D02<td bgcolor="#397D02">
76
+ <tr><th>nypd blue #39B7CD<td bgcolor="#39B7CD"><br>&nbsp;<th>blue train #3A5894<td bgcolor="#3A5894"><th>royalblue3 #3A5FCD<td bgcolor="#3A5FCD">
77
+
78
+ <tr><th>circuit board #3A6629<td bgcolor="#3A6629"><br>&nbsp;<th>big blue bus #3A66A7<td bgcolor="#3A66A7"><th>dress blue #3B3178<td bgcolor="#3B3178">
79
+ <tr><th>gray23 #3B3B3B<td bgcolor="#3B3B3B"><br>&nbsp;<th>blue grapes #3B4990<td bgcolor="#3B4990"><th>romaine lettuce #3B5323<td bgcolor="#3B5323">
80
+ <tr><th>olive3b #3B5E2B<td bgcolor="#3B5E2B"><br>&nbsp;<th>greek roof #3B6AA0<td bgcolor="#3B6AA0"><th>blue green algae #3B8471<td bgcolor="#3B8471">
81
+ <tr><th>mediumseagreen(SVG) #3CB371<td bgcolor="#3CB371"><br>&nbsp;<th>gray24 #3D3D3D<td bgcolor="#3D3D3D"><th>wet moss #3D5229<td bgcolor="#3D5229">
82
+ <tr><th>cobalt #3D59AB<td bgcolor="#3D59AB"><br>&nbsp;<th>obsidian #3D5B43<td bgcolor="#3D5B43"><th>green lantern #3D8B37<td bgcolor="#3D8B37">
83
+
84
+ <tr><th>cobaltgreen #3D9140<td bgcolor="#3D9140"><br>&nbsp;<th>green party #3E6B4F<td bgcolor="#3E6B4F"><th>mediterranean #3E766D<td bgcolor="#3E766D">
85
+ <tr><th>green gables #3E766D<td bgcolor="#3E766D"><br>&nbsp;<th>ooze #3E7A5E<td bgcolor="#3E7A5E"><th>clover #3EA055<td bgcolor="#3EA055"></table></div><div class="wrapper"><table cellspacing="2" cellpadding="1" border="1" style="border-collapse: collapse" width="100%" align="center">
86
+ <tr><th width="25%">douglas fir #3F602B<td width="8%" bgcolor="#3F602B"><br>&nbsp;<th width="25%">green taxi #3F9E4D<td width="8%" bgcolor="#3F9E4D"><th width="25%">gray25 #404040<td width="8%" bgcolor="#404040">
87
+ <tr><th>shamrock #40664D<td bgcolor="#40664D"><br>&nbsp;<th>turquoise(SVG) #40E0D0<td bgcolor="#40E0D0"><th>royalblue(SVG) #4169E1<td bgcolor="#4169E1">
88
+ <tr><th>gray26 #424242<td bgcolor="#424242"><br>&nbsp;<th>cornflowerblue #42426F<td bgcolor="#42426F"><th>blue jeans #42526C<td bgcolor="#42526C">
89
+
90
+ <tr><th>isle royale greenstone #426352<td bgcolor="#426352"><br>&nbsp;<th>blue whale #42647F<td bgcolor="#42647F"><th>mediumseagreen #426F42<td bgcolor="#426F42">
91
+ <tr><th>caribbean #42C0FB<td bgcolor="#42C0FB"><br>&nbsp;<th>spinach #435D36<td bgcolor="#435D36"><th>royalblue2 #436EEE<td bgcolor="#436EEE">
92
+ <tr><th>denim #4372AA<td bgcolor="#4372AA"><br>&nbsp;<th>seagreen3 #43CD80<td bgcolor="#43CD80"><th>go #43D58C<td bgcolor="#43D58C">
93
+ <tr><th>gray27 #454545<td bgcolor="#454545"><br>&nbsp;<th>green agate #457371<td bgcolor="#457371"><th>chartreuse4 #458B00<td bgcolor="#458B00">
94
+ <tr><th>aquamarine4 #458B74<td bgcolor="#458B74"><br>&nbsp;<th>natural turquoise #45C3B8<td bgcolor="#45C3B8"><th>od green #46523C<td bgcolor="#46523C">
95
+
96
+ <tr><th>steelblue(SVG) #4682B4<td bgcolor="#4682B4"><br>&nbsp;<th>slateblue4 #473C8B<td bgcolor="#473C8B"><th>gray28 #474747<td bgcolor="#474747">
97
+ <tr><th>noble fir #476A34<td bgcolor="#476A34"><br>&nbsp;<th>darkslateblue(SVG) #483D8B<td bgcolor="#483D8B"><th>park ranger #484D46<td bgcolor="#484D46">
98
+ <tr><th>scotland pound #487153<td bgcolor="#487153"><br>&nbsp;<th>royalblue1 #4876FF<td bgcolor="#4876FF"><th>holly #488214<td bgcolor="#488214">
99
+ <tr><th>mediumturquoise(SVG) #48D1CC<td bgcolor="#48D1CC"><br>&nbsp;<th>blue bird #4973AB<td bgcolor="#4973AB"><th>blue ridge mtns #4981CE<td bgcolor="#4981CE">
100
+ <tr><th>blue bucket #499DF5<td bgcolor="#499DF5"><br>&nbsp;<th>Nerf green #49E20E<td bgcolor="#49E20E"><th>electric turquoise #49E9BD<td bgcolor="#49E9BD">
101
+
102
+ <tr><th>gray29 #4A4A4A<td bgcolor="#4A4A4A"><br>&nbsp;<th>kakapo #4A7023<td bgcolor="#4A7023"><th>skyblue4 #4A708B<td bgcolor="#4A708B">
103
+ <tr><th>darkgreencopper #4A766E<td bgcolor="#4A766E"><br>&nbsp;<th>fenway monster #4A777A<td bgcolor="#4A777A"><th>wales #4AC948<td bgcolor="#4AC948">
104
+ <tr><th>indigo(SVG) #4B0082<td bgcolor="#4B0082"><br>&nbsp;<th>green M&M #4BB74C<td bgcolor="#4BB74C"><th>bluegrass #4C7064<td bgcolor="#4C7064">
105
+ <tr><th>blue lagoon #4CB7A5<td bgcolor="#4CB7A5"><br>&nbsp;<th>kelly #4CBB17<td bgcolor="#4CBB17"><th>gray30 #4D4D4D<td bgcolor="#4D4D4D">
106
+
107
+ <tr><th>neonblue #4D4DFF<td bgcolor="#4D4DFF"><br>&nbsp;<th>fraser fir #4D6B50<td bgcolor="#4D6B50"><th>pollock blue #4D6FAC<td bgcolor="#4D6FAC">
108
+ <tr><th>lake ontario #4D71A3<td bgcolor="#4D71A3"><br>&nbsp;<th>green visor #4D7865<td bgcolor="#4D7865"><th>grass #4DBD33<td bgcolor="#4DBD33">
109
+ <tr><th>aquamarine #4E78A0<td bgcolor="#4E78A0"><br>&nbsp;<th>seagreen2 #4EEE94<td bgcolor="#4EEE94"><th>violet #4F2F4F<td bgcolor="#4F2F4F">
110
+ <tr><th>darkolivegreen #4F4F2F<td bgcolor="#4F4F2F"><br>&nbsp;<th>gray31 #4F4F4F<td bgcolor="#4F4F4F"><th>green scrubs #4F8E83<td bgcolor="#4F8E83">
111
+ <tr><th>steelblue3 #4F94CD<td bgcolor="#4F94CD"><br>&nbsp;<th>lake superior #506987<td bgcolor="#506987"><th>blue stone #50729F<td bgcolor="#50729F">
112
+
113
+ <tr><th>LCD dark #507786<td bgcolor="#507786"><br>&nbsp;<th><a href="http://www.december.com/places/chi/images/lakemi.jpg" title="Lake Michigan water off Chicago, Illinois">lake michigan</a> #50A6C2<td bgcolor="#50A6C2"><th>malta blue #517693<td bgcolor="#517693">
114
+ <tr><th>blue pill #5190ED<td bgcolor="#5190ED"><br>&nbsp;<th>gray32 #525252<td bgcolor="#525252"><th>blue dog #525C65<td bgcolor="#525C65">
115
+ <tr><th>fenway grass #526F35<td bgcolor="#526F35"><br>&nbsp;<th>greencopper #527F76<td bgcolor="#527F76"><th>darkslategray4 #528B8B<td bgcolor="#528B8B">
116
+ <tr><th>cadetblue4 #53868B<td bgcolor="#53868B"><br>&nbsp;<th>carolina blue #539DC2<td bgcolor="#539DC2"><th>grape #543948<td bgcolor="#543948">
117
+
118
+ <tr><th>palegreen4 #548B54<td bgcolor="#548B54"><br>&nbsp;<th>seagreen1 #54FF9F<td bgcolor="#54FF9F"><th>burntsienna #551011<td bgcolor="#551011">
119
+ <tr><th>deeppurple #551033<td bgcolor="#551033"><br>&nbsp;<th>purple4 #551A8B<td bgcolor="#551A8B"><th>gray33(Hex3) #555555<td bgcolor="#555555">
120
+ <tr><th>darkolivegreen(SVG) #556B2F<td bgcolor="#556B2F"><br>&nbsp;<th>leaf #55AE3A<td bgcolor="#55AE3A"><th>forestgreen2 #567E3A<td bgcolor="#567E3A">
121
+ <tr><th>gray34 #575757<td bgcolor="#575757"><br>&nbsp;<th>blue corn chips #584E56<td bgcolor="#584E56"><th>broccoli #586949<td bgcolor="#586949">
122
+ <tr><th>gray35 #595959<td bgcolor="#595959"><br>&nbsp;<th>richblue #5959AB<td bgcolor="#5959AB"><th>snake #596C56<td bgcolor="#596C56">
123
+
124
+ <tr><th>green bark #597368<td bgcolor="#597368"><br>&nbsp;<th>chemical suit #5993E5<td bgcolor="#5993E5"><th>lizard #5A6351<td bgcolor="#5A6351">
125
+ <tr><th>curacao #5B59BA<td bgcolor="#5B59BA"><br>&nbsp;<th>natural gas #5B90F6<td bgcolor="#5B90F6"><th>emerald #5B9C64<td bgcolor="#5B9C64">
126
+ <tr><th>ultramarineviolet #5C246E<td bgcolor="#5C246E"><br>&nbsp;<th>bakerschocolate #5C3317<td bgcolor="#5C3317"><th>verydarkbrown #5C4033<td bgcolor="#5C4033">
127
+ <tr><th>gray36 #5C5C5C<td bgcolor="#5C5C5C"><br>&nbsp;<th>steelblue2 #5CACEE<td bgcolor="#5CACEE"><th>mediumpurple4 #5D478B<td bgcolor="#5D478B">
128
+ <tr><th>lake huron #5D7B93<td bgcolor="#5D7B93"><br>&nbsp;<th>greenstamp #5D9160<td bgcolor="#5D9160"><th>blue sponge #5D92B1<td bgcolor="#5D92B1">
129
+
130
+ <tr><th>green LED #5DFC0A<td bgcolor="#5DFC0A"><br>&nbsp;<th>vandykebrown #5E2605<td bgcolor="#5E2605"><th>sepia #5E2612<td bgcolor="#5E2612">
131
+ <tr><th>gray37 #5E5E5E<td bgcolor="#5E5E5E"><br>&nbsp;<th>fresh green #5EDA9E<td bgcolor="#5EDA9E"><th>tea leaves #5F755E<td bgcolor="#5F755E">
132
+ <tr><th>cadetblue(SVG) #5F9EA0<td bgcolor="#5F9EA0"><br>&nbsp;<th>cadetblue #5F9F9F<td bgcolor="#5F9F9F"><th>sign brown #603311<td bgcolor="#603311">
133
+ <tr><th>lightskyblue4 #607B8B<td bgcolor="#607B8B"><br>&nbsp;<th>fisherman's float #607C6E<td bgcolor="#607C6E"><th>palm #608341<td bgcolor="#608341">
134
+ <tr><th>la maison bleue #60AFFE<td bgcolor="#60AFFE"><br>&nbsp;<th>tank #615E3F<td bgcolor="#615E3F"><th>gray38 #616161<td bgcolor="#616161">
135
+
136
+ <tr><th>lake erie #6183A6<td bgcolor="#6183A6"><br>&nbsp;<th>cinnabargreen #61B329<td bgcolor="#61B329"><th>green apple #629632<td bgcolor="#629632">
137
+ <tr><th>tropical blue #62B1F6<td bgcolor="#62B1F6"><br>&nbsp;<th>gray39 #636363<td bgcolor="#636363"><th>cactus #636F57<td bgcolor="#636F57">
138
+ <tr><th>green algae #63AB62<td bgcolor="#63AB62"><br>&nbsp;<th>steelblue1 #63B8FF<td bgcolor="#63B8FF"><th>surf #63D1F4<td bgcolor="#63D1F4">
139
+ <tr><th>seaweed #646F5E<td bgcolor="#646F5E"><br>&nbsp;<th>cornflowerblue(SVG) #6495ED<td bgcolor="#6495ED"><th>lindsay eyes #65909A<td bgcolor="#65909A">
140
+ <tr><th>tree moss #659D32<td bgcolor="#659D32"><br>&nbsp;<th>bloodred(Safe Hex3) #660000<td bgcolor="#660000"><th>blue safe(Safe Hex3) #6600FF<td bgcolor="#6600FF">
141
+
142
+ <tr><th>concord grape #660198<td bgcolor="#660198"><br>&nbsp;<th>gray40(Safe Hex3) #666666<td bgcolor="#666666"><th>cobalt(Safe Hex3) #6666FF<td bgcolor="#6666FF">
143
+ <tr><th>chromeoxidegreen #668014<td bgcolor="#668014"><br>&nbsp;<th>paleturquoise4 #668B8B<td bgcolor="#668B8B"><th>green ash #668E86<td bgcolor="#668E86">
144
+ <tr><th>aqua(Safe Hex3) #66CCCC<td bgcolor="#66CCCC"><br>&nbsp;<th>chartreuse3 #66CD00<td bgcolor="#66CD00"><th>mediumaquamarine(SVG) #66CDAA<td bgcolor="#66CDAA">
145
+ <tr><th>wasabi(Safe Hex3) #66FF66<td bgcolor="#66FF66"><br>&nbsp;<th>neon blue #67C8FF<td bgcolor="#67C8FF"><th>swimming pool #67E6EC<td bgcolor="#67E6EC">
146
+ <tr><th>darkorchid4 #68228B<td bgcolor="#68228B"><br>&nbsp;<th>sea urchin #683A5E<td bgcolor="#683A5E"><th>blue tuna #687C97<td bgcolor="#687C97">
147
+
148
+ <tr><th>pond scum #687E5A<td bgcolor="#687E5A"><br>&nbsp;<th>lightblue4 #68838B<td bgcolor="#68838B"><th>england pound #688571<td bgcolor="#688571">
149
+ <tr><th>maroon5 #691F01<td bgcolor="#691F01"><br>&nbsp;<th>purple rain #694489<td bgcolor="#694489"><th>slateblue3 #6959CD<td bgcolor="#6959CD">
150
+ <tr><th>dimgrey(SVG) #696969<td bgcolor="#696969"><br>&nbsp;<th>dimgray(SVG) #696969<td bgcolor="#696969"><th>olivedrab4 #698B22<td bgcolor="#698B22">
151
+ <tr><th>darkseagreen4 #698B69<td bgcolor="#698B69"><br>&nbsp;<th>blue shark #6996AD<td bgcolor="#6996AD"><th>putting #699864<td bgcolor="#699864">
152
+ <tr><th>slateblue(SVG) #6A5ACD<td bgcolor="#6A5ACD"><br>&nbsp;<th>green hornet #6A8455<td bgcolor="#6A8455"><th>darkslateblue #6B238E<td bgcolor="#6B238E">
153
+
154
+ <tr><th>semisweet chocolate1 #6B4226<td bgcolor="#6B4226"><br>&nbsp;<th>gray42 #6B6B6B<td bgcolor="#6B6B6B"><th>olivedrab(SVG) #6B8E23<td bgcolor="#6B8E23">
155
+ <tr><th>slategray4 #6C7B8B<td bgcolor="#6C7B8B"><br>&nbsp;<th>skyblue3 #6CA6CD<td bgcolor="#6CA6CD"><th>neptune #6D9BF1<td bgcolor="#6D9BF1">
156
+ <tr><th>gray43 #6E6E6E<td bgcolor="#6E6E6E"><br>&nbsp;<th>lightsteelblue4 #6E7B8B<td bgcolor="#6E7B8B"><th>darkolivegreen4 #6E8B3D<td bgcolor="#6E8B3D">
157
+ <tr><th>viridianlight #6EFF70<td bgcolor="#6EFF70"><br>&nbsp;<th>salmon5 #6F4242<td bgcolor="#6F4242"><th>dolphin #6F7285<td bgcolor="#6F7285">
158
+ <tr><th>gray44 #707070<td bgcolor="#707070"><br>&nbsp;<th>slategrey(SVG) #708090<td bgcolor="#708090"><th>slategray(SVG) #708090<td bgcolor="#708090">
159
+
160
+ <tr><th>darkturquoise #7093DB<td bgcolor="#7093DB"><br>&nbsp;<th>aquamarine #70DB93<td bgcolor="#70DB93"><th>mediumturquoise #70DBDB<td bgcolor="#70DBDB">
161
+ <tr><th>garden plum #71637D<td bgcolor="#71637D"><br>&nbsp;<th>sgislate blue #7171C6<td bgcolor="#7171C6"><th>sgichartreuse #71C671<td bgcolor="#71C671">
162
+ <tr><th>indigo tile #72587F<td bgcolor="#72587F"><br>&nbsp;<th>deepochre #733D1A<td bgcolor="#733D1A"><th>rawumber #734A12<td bgcolor="#734A12"></table></div><div class="wrapper"><table cellspacing="2" cellpadding="1" border="1" style="border-collapse: collapse" width="100%" align="center">
163
+ <tr><th width="25%">gray45 #737373<td width="8%" bgcolor="#737373"><br>&nbsp;<th width="25%">seurat blue #739AC5<td width="8%" bgcolor="#739AC5"><th width="25%">old copper #73B1B7<td width="8%" bgcolor="#73B1B7">
164
+ <tr><th>seaweed roll #748269<td bgcolor="#748269"><br>&nbsp;<th>blue ice #74BBFB<td bgcolor="#74BBFB"><th>lavender field #754C78<td bgcolor="#754C78">
165
+
166
+ <tr><th>gray46 #757575<td bgcolor="#757575"><br>&nbsp;<th>blue fern #759B84<td bgcolor="#759B84"><th>blueberry #75A1D0<td bgcolor="#75A1D0">
167
+ <tr><th>chartreuse2 #76EE00<td bgcolor="#76EE00"><br>&nbsp;<th>aquamarine2 #76EEC6<td bgcolor="#76EEC6"><th>ganegreen(Hex3) #777733<td bgcolor="#777733">
168
+ <tr><th>lightslategray(SVG Hex3) #778899<td bgcolor="#778899"><br>&nbsp;<th>lightslategrey(SVG Hex3) #778899<td bgcolor="#778899"><th>green goo #77896C<td bgcolor="#77896C">
169
+ <tr><th>gray47 #787878<td bgcolor="#787878"><br>&nbsp;<th>pumice #78A489<td bgcolor="#78A489"><th>pea #78AB46<td bgcolor="#78AB46">
170
+ <tr><th>pea #79973F<td bgcolor="#79973F"><br>&nbsp;<th>Coke bottle #79A888<td bgcolor="#79A888"><th>darkslategray3 #79CDCD<td bgcolor="#79CDCD">
171
+
172
+ <tr><th>mediumorchid4 #7A378B<td bgcolor="#7A378B"><br>&nbsp;<th>slateblue2 #7A67EE<td bgcolor="#7A67EE"><th>gray48 #7A7A7A<td bgcolor="#7A7A7A">
173
+ <tr><th>lightcyan4 #7A8B8B<td bgcolor="#7A8B8B"><br>&nbsp;<th>cat eye #7AA9DD<td bgcolor="#7AA9DD"><th>cadetblue3 #7AC5CD<td bgcolor="#7AC5CD">
174
+ <tr><th>cinnamon #7B3F00<td bgcolor="#7B3F00"><br>&nbsp;<th>mediumslateblue(SVG) #7B68EE<td bgcolor="#7B68EE"><th>green moth #7BBF6A<td bgcolor="#7BBF6A">
175
+ <tr><th>night vision #7BCC70<td bgcolor="#7BCC70"><br>&nbsp;<th>palegreen3 #7CCD7C<td bgcolor="#7CCD7C"><th>lawngreen(SVG) #7CFC00<td bgcolor="#7CFC00">
176
+ <tr><th>purple3 #7D26CD<td bgcolor="#7D26CD"><br>&nbsp;<th>gray49 #7D7D7D<td bgcolor="#7D7D7D"><th>blue nile #7D7F94<td bgcolor="#7D7F94">
177
+
178
+ <tr><th>sgilightblue #7D9EC0<td bgcolor="#7D9EC0"><br>&nbsp;<th>forget me nots #7EB6FF<td bgcolor="#7EB6FF"><th>skyblue2 #7EC0EE<td bgcolor="#7EC0EE">
179
+ <tr><th>mediumslateblue2 #7F00FF<td bgcolor="#7F00FF"><br>&nbsp;<th>gray50 #7F7F7F<td bgcolor="#7F7F7F"><th>flight jacket #7F8778<td bgcolor="#7F8778">
180
+ <tr><th>kiwi #7F9A65<td bgcolor="#7F9A65"><br>&nbsp;<th>chartreuse(SVG) #7FFF00<td bgcolor="#7FFF00"><th>aquamarine(SVG) #7FFFD4<td bgcolor="#7FFFD4">
181
+ <tr><th>maroon(16 SVG) #800000<td bgcolor="#800000"><br>&nbsp;<th>purple(16 SVG) #800080<td bgcolor="#800080"><th>brown #802A2A<td bgcolor="#802A2A">
182
+ <tr><th>olive(16 SVG) #808000<td bgcolor="#808000"><br>&nbsp;<th>warmgrey #808069<td bgcolor="#808069"><th>grey(16 SVG) #808080<td bgcolor="#808080">
183
+
184
+ <tr><th>gray(16 SVG) #808080<td bgcolor="#808080"><br>&nbsp;<th>coldgrey #808A87<td bgcolor="#808A87"><th>eggplant #816687<td bgcolor="#816687">
185
+ <tr><th>wild violet #820BBB<td bgcolor="#820BBB"><br>&nbsp;<th>gray51 #828282<td bgcolor="#828282"><th>blue mist #82CFFD<td bgcolor="#82CFFD">
186
+ <tr><th>slateblue1 #836FFF<td bgcolor="#836FFF"><br>&nbsp;<th>honeydew4 #838B83<td bgcolor="#838B83"><th>azure4 #838B8B<td bgcolor="#838B8B">
187
+ <tr><th>nikko blue #838EDE<td bgcolor="#838EDE"><br>&nbsp;<th>neon green #83F52C<td bgcolor="#83F52C"><th>lightslateblue #8470FF<td bgcolor="#8470FF">
188
+ <tr><th>frog #84BE6A<td bgcolor="#84BE6A"><br>&nbsp;<th>darkwood #855E42<td bgcolor="#855E42"><th>dustyrose #856363<td bgcolor="#856363">
189
+
190
+ <tr><th>gray52 #858585<td bgcolor="#858585"><br>&nbsp;<th>plum pudding #862A51<td bgcolor="#862A51"><th>100 euro #86C67C<td bgcolor="#86C67C">
191
+ <tr><th>darkpurple #871F78<td bgcolor="#871F78"><br>&nbsp;<th>raspberry #872657<td bgcolor="#872657"><th>brownochre #87421F<td bgcolor="#87421F">
192
+ <tr><th>gray53 #878787<td bgcolor="#878787"><br>&nbsp;<th>skyblue(SVG) #87CEEB<td bgcolor="#87CEEB"><th>lightskyblue(SVG) #87CEFA<td bgcolor="#87CEFA">
193
+ <tr><th>skyblue1 #87CEFF<td bgcolor="#87CEFF"><br>&nbsp;<th>blue cow #88ACE0<td bgcolor="#88ACE0"><th>mediumpurple3 #8968CD<td bgcolor="#8968CD">
194
+ <tr><th>blueviolet(SVG) #8A2BE2<td bgcolor="#8A2BE2"><br>&nbsp;<th>burntumber #8A3324<td bgcolor="#8A3324"><th>burntsienna #8A360F<td bgcolor="#8A360F">
195
+
196
+ <tr><th>gray54 #8A8A8A<td bgcolor="#8A8A8A"><br>&nbsp;<th>green quartz #8AA37B<td bgcolor="#8AA37B"><th>darkred(SVG) #8B0000<td bgcolor="#8B0000">
197
+ <tr><th>darkmagenta(SVG) #8B008B<td bgcolor="#8B008B"><br>&nbsp;<th>deeppink4 #8B0A50<td bgcolor="#8B0A50"><th>firebrick4 #8B1A1A<td bgcolor="#8B1A1A">
198
+ <tr><th>maroon4 #8B1C62<td bgcolor="#8B1C62"><br>&nbsp;<th>violetred4 #8B2252<td bgcolor="#8B2252"><th>brown4 #8B2323<td bgcolor="#8B2323">
199
+ <tr><th>orangered4 #8B2500<td bgcolor="#8B2500"><br>&nbsp;<th>tomato4 #8B3626<td bgcolor="#8B3626"><th>indianred4 #8B3A3A<td bgcolor="#8B3A3A">
200
+ <tr><th>hotpink4 #8B3A62<td bgcolor="#8B3A62"><br>&nbsp;<th>coral4 #8B3E2F<td bgcolor="#8B3E2F"><th>darkorange4 #8B4500<td bgcolor="#8B4500">
201
+
202
+ <tr><th>saddlebrown(SVG) #8B4513<td bgcolor="#8B4513"><br>&nbsp;<th>sienna4 #8B4726<td bgcolor="#8B4726"><th>palevioletred4 #8B475D<td bgcolor="#8B475D">
203
+ <tr><th>orchid4 #8B4789<td bgcolor="#8B4789"><br>&nbsp;<th>salmon4 #8B4C39<td bgcolor="#8B4C39"><th>lightsalmon4 #8B5742<td bgcolor="#8B5742">
204
+ <tr><th>orange4 #8B5A00<td bgcolor="#8B5A00"><br>&nbsp;<th>tan4 #8B5A2B<td bgcolor="#8B5A2B"><th>lightpink4 #8B5F65<td bgcolor="#8B5F65">
205
+ <tr><th>pink4 #8B636C<td bgcolor="#8B636C"><br>&nbsp;<th>darkgoldenrod4 #8B6508<td bgcolor="#8B6508"><th>plum4 #8B668B<td bgcolor="#8B668B">
206
+ <tr><th>goldenrod4 #8B6914<td bgcolor="#8B6914"><br>&nbsp;<th>rosybrown4 #8B6969<td bgcolor="#8B6969"><th>burlywood4 #8B7355<td bgcolor="#8B7355">
207
+
208
+ <tr><th>gold4 #8B7500<td bgcolor="#8B7500"><br>&nbsp;<th>peachpuff4 #8B7765<td bgcolor="#8B7765"><th>navajowhite4 #8B795E<td bgcolor="#8B795E">
209
+ <tr><th>thistle4 #8B7B8B<td bgcolor="#8B7B8B"><br>&nbsp;<th>bisque4 #8B7D6B<td bgcolor="#8B7D6B"><th>mistyrose4 #8B7D7B<td bgcolor="#8B7D7B">
210
+ <tr><th>wheat4 #8B7E66<td bgcolor="#8B7E66"><br>&nbsp;<th>light goldenrod4 #8B814C<td bgcolor="#8B814C"><th>antiquewhite4 #8B8378<td bgcolor="#8B8378">
211
+ <tr><th>lavenderblush4 #8B8386<td bgcolor="#8B8386"><br>&nbsp;<th>khaki4 #8B864E<td bgcolor="#8B864E"><th>seashell4 #8B8682<td bgcolor="#8B8682">
212
+ <tr><th>cornsilk4 #8B8878<td bgcolor="#8B8878"><br>&nbsp;<th>lemonchiffon4 #8B8970<td bgcolor="#8B8970"><th>snow4 #8B8989<td bgcolor="#8B8989">
213
+
214
+ <tr><th>yellow4 #8B8B00<td bgcolor="#8B8B00"><br>&nbsp;<th>lightyellow4 #8B8B7A<td bgcolor="#8B8B7A"><th>ivory4 #8B8B83<td bgcolor="#8B8B83">
215
+ <tr><th>martini olive #8BA446<td bgcolor="#8BA446"><br>&nbsp;<th>soylent green #8BA870<td bgcolor="#8BA870"><th>scarlet #8C1717<td bgcolor="#8C1717">
216
+ <tr><th>bronze #8C7853<td bgcolor="#8C7853"><br>&nbsp;<th>gray55 #8C8C8C<td bgcolor="#8C8C8C"><th>green soap #8CDD81<td bgcolor="#8CDD81">
217
+ <tr><th>lightskyblue3 #8DB6CD<td bgcolor="#8DB6CD"><br>&nbsp;<th>darkslategray2 #8DEEEE<td bgcolor="#8DEEEE"><th>firebrick5 #8E2323<td bgcolor="#8E2323">
218
+ <tr><th>maroon6 #8E236B<td bgcolor="#8E236B"><br>&nbsp;<th>sgibeet #8E388E<td bgcolor="#8E388E"><th>sienna #8E6B23<td bgcolor="#8E6B23">
219
+
220
+ <tr><th>sgiolivedrab #8E8E38<td bgcolor="#8E8E38"><br>&nbsp;<th>cadetblue2 #8EE5EE<td bgcolor="#8EE5EE"><th>violet #8F5E99<td bgcolor="#8F5E99">
221
+ <tr><th>gray56 #8F8F8F<td bgcolor="#8F8F8F"><br>&nbsp;<th>lightsteelblue #8F8FBC<td bgcolor="#8F8FBC"><th>green cheese #8FA880<td bgcolor="#8FA880">
222
+ <tr><th>darkseagreen(SVG) #8FBC8F<td bgcolor="#8FBC8F"><br>&nbsp;<th>lightblue #8FD8D8<td bgcolor="#8FD8D8"><th>lightgreen(SVG) #90EE90<td bgcolor="#90EE90">
223
+ <tr><th>cool mint #90FEFB<td bgcolor="#90FEFB"><br>&nbsp;<th>cobaltvioletdeep #91219E<td bgcolor="#91219E"><th>purple2 #912CEE<td bgcolor="#912CEE">
224
+ <tr><th>gray57 #919191<td bgcolor="#919191"><br>&nbsp;<th>LCD back #91B49C<td bgcolor="#91B49C"><th>pastel green #92CCA6<td bgcolor="#92CCA6">
225
+
226
+ <tr><th>mediumpurple(SVG) #9370DB<td bgcolor="#9370DB"><br>&nbsp;<th>greenyellow #93DB70<td bgcolor="#93DB70"><th>darkviolet(SVG) #9400D3<td bgcolor="#9400D3">
227
+ <tr><th>gray58 #949494<td bgcolor="#949494"><br>&nbsp;<th>marsorange #964514<td bgcolor="#964514"><th>gray59 #969696<td bgcolor="#969696">
228
+ <tr><th><a href="http://www.etoncollege.com/eton.asp?di=1838" title="Eaton College color">eton blue</a> #96C8A2<td bgcolor="#96C8A2"><br>&nbsp;<th>paleturquoise3 #96CDCD<td bgcolor="#96CDCD"><th>darktan #97694F<td bgcolor="#97694F">
229
+ <tr><th>darkslategray1 #97FFFF<td bgcolor="#97FFFF"><br>&nbsp;<th>avocado #98A148<td bgcolor="#98A148"><th>cadetblue1 #98F5FF<td bgcolor="#98F5FF">
230
+
231
+ <tr><th>palegreen(SVG) #98FB98<td bgcolor="#98FB98"><br>&nbsp;<th>truepurple(Safe Hex3) #990099<td bgcolor="#990099"><th>bordeaux #99182C<td bgcolor="#99182C">
232
+ <tr><th>darkorchid(SVG) #9932CC<td bgcolor="#9932CC"><br>&nbsp;<th>darkorchid #9932CD<td bgcolor="#9932CD"><th>chocolate(Safe Hex3) #993300<td bgcolor="#993300">
233
+ <tr><th>gray60(Safe Hex3) #999999<td bgcolor="#999999"><br>&nbsp;<th>yellowgreen2 #99CC32<td bgcolor="#99CC32"><th>wavecrest #99CDC9<td bgcolor="#99CDC9">
234
+ <tr><th>darkorchid3 #9A32CD<td bgcolor="#9A32CD"><br>&nbsp;<th>lightblue3 #9AC0CD<td bgcolor="#9AC0CD"><th>yellowgreen(SVG) #9ACD32<td bgcolor="#9ACD32">
235
+ <tr><th>palegreen1 #9AFF9A<td bgcolor="#9AFF9A"><br>&nbsp;<th>purple1 #9B30FF<td bgcolor="#9B30FF"><th><a href="http://www.pantone.com/aboutus/aboutus.asp?idArticle=65&amp;idPressRelease=52" title="Pantone's official color of the millennium; the color of the sky on a serene, crystal clear day">cerulean blue</a> #9BC4E2<td bgcolor="#9BC4E2">
236
+
237
+ <tr><th>darkseagreen3 #9BCD9B<td bgcolor="#9BCD9B"><br>&nbsp;<th>brick #9C661F<td bgcolor="#9C661F"><th>purple ink #9C6B98<td bgcolor="#9C6B98">
238
+ <tr><th>gray61 #9C9C9C<td bgcolor="#9C9C9C"><br>&nbsp;<th>cantaloupe #9CA998<td bgcolor="#9CA998"><th>jolly green #9CCB19<td bgcolor="#9CCB19">
239
+ <tr><th>amethyst #9D6B84<td bgcolor="#9D6B84"><br>&nbsp;<th>canvas #9D8851<td bgcolor="#9D8851"><th>camo3 #9DB68C<td bgcolor="#9DB68C"></table></div><div class="wrapper"><table cellspacing="2" cellpadding="1" border="1" style="border-collapse: collapse" width="100%" align="center">
240
+ <tr><th width="25%">burgundy #9E0508<td width="8%" bgcolor="#9E0508"><br>&nbsp;<th width="25%">gray62 #9E9E9E<td width="8%" bgcolor="#9E9E9E"><th width="25%">blueviolet #9F5F9F<td width="8%" bgcolor="#9F5F9F">
241
+ <tr><th>mediumpurple2 #9F79EE<td bgcolor="#9F79EE"><br>&nbsp;<th>khaki #9F9F5F<td bgcolor="#9F9F5F"><th>slategray3 #9FB6CD<td bgcolor="#9FB6CD">
242
+
243
+ <tr><th>purple #A020F0<td bgcolor="#A020F0"><br>&nbsp;<th>sienna(SVG) #A0522D<td bgcolor="#A0522D"><th>gray63 #A1A1A1<td bgcolor="#A1A1A1">
244
+ <tr><th>smyrna purple #A2627A<td bgcolor="#A2627A"><br>&nbsp;<th>lightsteelblue3 #A2B5CD<td bgcolor="#A2B5CD"><th>kermit #A2BC13<td bgcolor="#A2BC13">
245
+ <tr><th>avacado #A2C257<td bgcolor="#A2C257"><br>&nbsp;<th>sweet potato vine #A2C93A<td bgcolor="#A2C93A"><th>darkolivegreen3 #A2CD5A<td bgcolor="#A2CD5A">
246
+ <tr><th>beige dark #A39480<td bgcolor="#A39480"><br>&nbsp;<th>gray64 #A3A3A3<td bgcolor="#A3A3A3"><th>20 pound #A46582<td bgcolor="#A46582">
247
+ <tr><th>lightskyblue2 #A4D3EE<td bgcolor="#A4D3EE"><br>&nbsp;<th>liberty #A4DCD1<td bgcolor="#A4DCD1"><th>brown(SVG) #A52A2A<td bgcolor="#A52A2A">
248
+
249
+ <tr><th>bunny eye #A5435C<td bgcolor="#A5435C"><br>&nbsp;<th>brown #A62A2A<td bgcolor="#A62A2A"><th>bronzeii #A67D3D<td bgcolor="#A67D3D">
250
+ <tr><th>mediumwood #A68064<td bgcolor="#A68064"><br>&nbsp;<th>gray65 #A6A6A6<td bgcolor="#A6A6A6"><th>guacamole #A6D785<td bgcolor="#A6D785">
251
+ <tr><th>turnip #A74CAB<td bgcolor="#A74CAB"><br>&nbsp;<th>sandstone #A78D84<td bgcolor="#A78D84"><th>gray66 #A8A8A8<td bgcolor="#A8A8A8">
252
+ <tr><th>darkgray(SVG) #A9A9A9<td bgcolor="#A9A9A9"><br>&nbsp;<th>darkgrey(SVG) #A9A9A9<td bgcolor="#A9A9A9"><th>aluminum #A9ACB6<td bgcolor="#A9ACB6">
253
+ <tr><th>camo2 #A9C9A4<td bgcolor="#A9C9A4"><br>&nbsp;<th>purple6(Hex3) #AA00FF<td bgcolor="#AA00FF"><th>coffee #AA5303<td bgcolor="#AA5303">
254
+
255
+ <tr><th>cinnamon(Hex3) #AA6600<td bgcolor="#AA6600"><br>&nbsp;<th>sgilightgray(Hex3) #AAAAAA<td bgcolor="#AAAAAA"><th>periwinkle(Hex3) #AAAAFF<td bgcolor="#AAAAFF">
256
+ <tr><th>goldgreen(Hex3) #AADD00<td bgcolor="#AADD00"><br>&nbsp;<th>mediumpurple1 #AB82FF<td bgcolor="#AB82FF"><th>gray67 #ABABAB<td bgcolor="#ABABAB">
257
+ <tr><th>organic tea #AC7F24<td bgcolor="#AC7F24"><br>&nbsp;<th>gray68 #ADADAD<td bgcolor="#ADADAD"><th>lightblue(SVG) #ADD8E6<td bgcolor="#ADD8E6">
258
+ <tr><th>turquoise #ADEAEA<td bgcolor="#ADEAEA"><br>&nbsp;<th>greenyellow(SVG) #ADFF2F<td bgcolor="#ADFF2F"><th>wasabi sauce #AEBB51<td bgcolor="#AEBB51">
259
+ <tr><th>paleturquoise2 #AEEEEE<td bgcolor="#AEEEEE"><br>&nbsp;<th>sign red #AF1E2D<td bgcolor="#AF1E2D"><th>cola #AF4035<td bgcolor="#AF4035">
260
+
261
+ <tr><th>paleturquoise(SVG) #AFEEEE<td bgcolor="#AFEEEE"><br>&nbsp;<th>indianred #B0171F<td bgcolor="#B0171F"><th>maroonb0 #B03060<td bgcolor="#B03060">
262
+ <tr><th>gray69 #B0B0B0<td bgcolor="#B0B0B0"><br>&nbsp;<th>lightsteelblue(SVG) #B0C4DE<td bgcolor="#B0C4DE"><th>powderblue(SVG) #B0E0E6<td bgcolor="#B0E0E6">
263
+ <tr><th>lightskyblue1 #B0E2FF<td bgcolor="#B0E2FF"><br>&nbsp;<th>kidney bean #B13E0F<td bgcolor="#B13E0F"><th>firebrick(SVG) #B22222<td bgcolor="#B22222">
264
+ <tr><th>darkorchid2 #B23AEE<td bgcolor="#B23AEE"><br>&nbsp;<th>purple fish #B272A6<td bgcolor="#B272A6"><th>shamrock shake #B2D0B4<td bgcolor="#B2D0B4">
265
+ <tr><th>lightblue2 #B2DFEE<td bgcolor="#B2DFEE"><br>&nbsp;<th>gray70 #B3B3B3<td bgcolor="#B3B3B3"><th>key lime pie #B3C95A<td bgcolor="#B3C95A">
266
+
267
+ <tr><th>olivedrab2 #B3EE3A<td bgcolor="#B3EE3A"><br>&nbsp;<th>mediumorchid3 #B452CD<td bgcolor="#B452CD"><th>lightcyan3 #B4CDCD<td bgcolor="#B4CDCD">
268
+ <tr><th>vanilla mint #B4D7BF<td bgcolor="#B4D7BF"><br>&nbsp;<th>darkseagreen2 #B4EEB4<td bgcolor="#B4EEB4"><th>thistle #B5509C<td bgcolor="#B5509C">
269
+ <tr><th>brass #B5A642<td bgcolor="#B5A642"><br>&nbsp;<th>gray71 #B5B5B5<td bgcolor="#B5B5B5"><th>harold's crayon #B62084<td bgcolor="#B62084">
270
+ <tr><th>cranberry #B6316C<td bgcolor="#B6316C"><br>&nbsp;<th>titanium #B6AFA9<td bgcolor="#B6AFA9"><th>brushed aluminum #B6C5BE<td bgcolor="#B6C5BE">
271
+ <tr><th>heather blue #B7C3D0<td bgcolor="#B7C3D0"><br>&nbsp;<th>new $20 #B7C8B6<td bgcolor="#B7C8B6"><th>copper #B87333<td bgcolor="#B87333">
272
+
273
+ <tr><th>darkgoldenrod(SVG) #B8860B<td bgcolor="#B8860B"><br>&nbsp;<th>gray72 #B8B8B8<td bgcolor="#B8B8B8"><th>slategray2 #B9D3EE<td bgcolor="#B9D3EE">
274
+ <tr><th>mediumorchid(SVG) #BA55D3<td bgcolor="#BA55D3"><br>&nbsp;<th>gray73 #BABABA<td bgcolor="#BABABA"><th>paleturquoise1(Hex3) #BBFFFF<td bgcolor="#BBFFFF">
275
+ <tr><th>rosybrown(SVG) #BC8F8F<td bgcolor="#BC8F8F"><br>&nbsp;<th>lightsteelblue2 #BCD2EE<td bgcolor="#BCD2EE"><th>chartreuse verte #BCE937<td bgcolor="#BCE937">
276
+ <tr><th>green mist #BCED91<td bgcolor="#BCED91"><br>&nbsp;<th>darkolivegreen2 #BCEE68<td bgcolor="#BCEE68"><th>darkkhaki(SVG) #BDB76B<td bgcolor="#BDB76B">
277
+ <tr><th>gray74 #BDBDBD<td bgcolor="#BDBDBD"><br>&nbsp;<th>mint green #BDFCC9<td bgcolor="#BDFCC9"><th>gray #BEBEBE<td bgcolor="#BEBEBE">
278
+
279
+ <tr><th>cat eye #BEE554<td bgcolor="#BEE554"><br>&nbsp;<th>darkorchid1 #BF3EFF<td bgcolor="#BF3EFF"><th>violet flower #BF5FFF<td bgcolor="#BF5FFF">
280
+ <tr><th>gray75 #BFBFBF<td bgcolor="#BFBFBF"><br>&nbsp;<th>lightblue1 #BFEFFF<td bgcolor="#BFEFFF"><th>silver(16 SVG) #C0C0C0<td bgcolor="#C0C0C0">
281
+ <tr><th>lichen #C0D9AF<td bgcolor="#C0D9AF"><br>&nbsp;<th>lightblue #C0D9D9<td bgcolor="#C0D9D9"><th>olivedrab1 #C0FF3E<td bgcolor="#C0FF3E">
282
+ <tr><th>honeydew3 #C1CDC1<td bgcolor="#C1CDC1"><br>&nbsp;<th>azure3 #C1CDCD<td bgcolor="#C1CDCD"><th>pastel blue #C1F0F6<td bgcolor="#C1F0F6">
283
+ <tr><th>darkseagreen1 #C1FFC1<td bgcolor="#C1FFC1"><br>&nbsp;<th>gray76 #C2C2C2<td bgcolor="#C2C2C2"><th>robin's egg #C3E4ED<td bgcolor="#C3E4ED">
284
+
285
+ <tr><th>gray77 #C4C4C4<td bgcolor="#C4C4C4"><br>&nbsp;<th>sgibrightgray #C5C1AA<td bgcolor="#C5C1AA"><th>mint ice cream #C5E3BF<td bgcolor="#C5E3BF">
286
+ <tr><th>sgisalmon #C67171<td bgcolor="#C67171"><br>&nbsp;<th>ash #C6C3B5<td bgcolor="#C6C3B5"><th>slategray1 #C6E2FF<td bgcolor="#C6E2FF">
287
+ <tr><th>mediumvioletred(SVG) #C71585<td bgcolor="#C71585"><br>&nbsp;<th>chili powder #C73F17<td bgcolor="#C73F17"><th>rawsienna #C76114<td bgcolor="#C76114">
288
+ <tr><th>goldochre #C77826<td bgcolor="#C77826"><br>&nbsp;<th>gray78 #C7C7C7<td bgcolor="#C7C7C7"><th>ruby red #C82536<td bgcolor="#C82536">
289
+ <tr><th>safety vest #C8F526<td bgcolor="#C8F526"><br>&nbsp;<th>gray79 #C9C9C9<td bgcolor="#C9C9C9"><th>lightsteelblue1 #CAE1FF<td bgcolor="#CAE1FF">
290
+
291
+ <tr><th>darkolivegreen1 #CAFF70<td bgcolor="#CAFF70"><br>&nbsp;<th>fog #CBCAB6<td bgcolor="#CBCAB6"><th>grape(Safe Hex3) #CC00FF<td bgcolor="#CC00FF">
292
+ <tr><th>bloodorange(Hex3) #CC1100<td bgcolor="#CC1100"><br>&nbsp;<th>orange #CC3232<td bgcolor="#CC3232"><th>violetred #CC3299<td bgcolor="#CC3299">
293
+ <tr><th>apple #CC4E5C<td bgcolor="#CC4E5C"><br>&nbsp;<th>ochre(Hex3) #CC7722<td bgcolor="#CC7722"><th>gold5 #CC7F32<td bgcolor="#CC7F32">
294
+ <tr><th>lavender(Safe Hex3) #CC99CC<td bgcolor="#CC99CC"><br>&nbsp;<th>ralphyellow(Safe Hex3) #CCCC00<td bgcolor="#CCCC00"><th>gray80(Safe Hex3) #CCCCCC<td bgcolor="#CCCCCC">
295
+ <tr><th>offwhiteblue(Safe Hex3) #CCCCFF<td bgcolor="#CCCCFF"><br>&nbsp;<th>offwhitegreen(Safe Hex3) #CCFFCC<td bgcolor="#CCFFCC"><th>red3 #CD0000<td bgcolor="#CD0000">
296
+
297
+ <tr><th>magenta3 #CD00CD<td bgcolor="#CD00CD"><br>&nbsp;<th>deeppink3 #CD1076<td bgcolor="#CD1076"><th>firebrick3 #CD2626<td bgcolor="#CD2626">
298
+ <tr><th>maroon3 #CD2990<td bgcolor="#CD2990"><br>&nbsp;<th>violetred3 #CD3278<td bgcolor="#CD3278"><th>brown3 #CD3333<td bgcolor="#CD3333">
299
+ <tr><th>orangered3 #CD3700<td bgcolor="#CD3700"><br>&nbsp;<th>tomato3 #CD4F39<td bgcolor="#CD4F39"><th>indianred3 #CD5555<td bgcolor="#CD5555">
300
+ <tr><th>coral3 #CD5B45<td bgcolor="#CD5B45"><br>&nbsp;<th>indianred(SVG) #CD5C5C<td bgcolor="#CD5C5C"><th>hotpink3 #CD6090<td bgcolor="#CD6090">
301
+ <tr><th>darkorange3 #CD6600<td bgcolor="#CD6600"><br>&nbsp;<th>chocolate3 #CD661D<td bgcolor="#CD661D"><th>sienna3 #CD6839<td bgcolor="#CD6839">
302
+
303
+ <tr><th>palevioletred3 #CD6889<td bgcolor="#CD6889"><br>&nbsp;<th>orchid3 #CD69C9<td bgcolor="#CD69C9"><th>salmon3 #CD7054<td bgcolor="#CD7054">
304
+ <tr><th>gold6 #CD7F32<td bgcolor="#CD7F32"><br>&nbsp;<th>lightsalmon3 #CD8162<td bgcolor="#CD8162"><th>orange3 #CD8500<td bgcolor="#CD8500">
305
+ <tr><th>peru(SVG) #CD853F<td bgcolor="#CD853F"><br>&nbsp;<th>lightpink3 #CD8C95<td bgcolor="#CD8C95"><th>pink3 #CD919E<td bgcolor="#CD919E">
306
+ <tr><th>darkgoldenrod3 #CD950C<td bgcolor="#CD950C"><br>&nbsp;<th>plum3 #CD96CD<td bgcolor="#CD96CD"><th>goldenrod3 #CD9B1D<td bgcolor="#CD9B1D">
307
+ <tr><th>rosybrown3 #CD9B9B<td bgcolor="#CD9B9B"><br>&nbsp;<th>burlywood3 #CDAA7D<td bgcolor="#CDAA7D"><th>gold3 #CDAD00<td bgcolor="#CDAD00">
308
+
309
+ <tr><th>peachpuff3 #CDAF95<td bgcolor="#CDAF95"><br>&nbsp;<th>navajowhite3 #CDB38B<td bgcolor="#CDB38B"><th>thistle3 #CDB5CD<td bgcolor="#CDB5CD">
310
+ <tr><th>bisque3 #CDB79E<td bgcolor="#CDB79E"><br>&nbsp;<th>mistyrose3 #CDB7B5<td bgcolor="#CDB7B5"><th>wheat3 #CDBA96<td bgcolor="#CDBA96">
311
+ <tr><th>light goldenrod3 #CDBE70<td bgcolor="#CDBE70"><br>&nbsp;<th>antiquewhite3 #CDC0B0<td bgcolor="#CDC0B0"><th>lavenderblush3 #CDC1C5<td bgcolor="#CDC1C5">
312
+ <tr><th>seashell3 #CDC5BF<td bgcolor="#CDC5BF"><br>&nbsp;<th>khaki3 #CDC673<td bgcolor="#CDC673"><th>cornsilk3 #CDC8B1<td bgcolor="#CDC8B1">
313
+ <tr><th>lemonchiffon3 #CDC9A5<td bgcolor="#CDC9A5"><br>&nbsp;<th>snow3 #CDC9C9<td bgcolor="#CDC9C9"><th>yellow3 #CDCD00<td bgcolor="#CDCD00">
314
+
315
+ <tr><th>lightyellow3 #CDCDB4<td bgcolor="#CDCDB4"><br>&nbsp;<th>ivory3 #CDCDC1<td bgcolor="#CDCDC1"><th>verylightgrey #CDCDCD<td bgcolor="#CDCDCD">
316
+ <tr><th>fire truck green #CDD704<td bgcolor="#CDD704"><br>&nbsp;<th>iceberg lettuce #CDE472<td bgcolor="#CDE472"><th>green grape #CECC15<td bgcolor="#CECC15"></table></div><div class="wrapper"><table cellspacing="2" cellpadding="1" border="1" style="border-collapse: collapse" width="100%" align="center">
317
+ <tr><th width="25%">oldgold #CFB53B<td width="8%" bgcolor="#CFB53B"><br>&nbsp;<th width="25%">gray81 #CFCFCF<td width="8%" bgcolor="#CFCFCF"><th width="25%">celery #CFD784<td width="8%" bgcolor="#CFD784">
318
+ <tr><th>camo1 #CFDBC5<td bgcolor="#CFDBC5"><br>&nbsp;<th>violetred #D02090<td bgcolor="#D02090"><th>conch #D0A9AA<td bgcolor="#D0A9AA">
319
+ <tr><th>battleship #D0D2C4<td bgcolor="#D0D2C4"><br>&nbsp;<th>mediumorchid2 #D15FEE<td bgcolor="#D15FEE"><th>feldspar #D19275<td bgcolor="#D19275">
320
+
321
+ <tr><th>gray82 #D1D1D1<td bgcolor="#D1D1D1"><br>&nbsp;<th>pear #D1E231<td bgcolor="#D1E231"><th>lightcyan2 #D1EEEE<td bgcolor="#D1EEEE">
322
+ <tr><th>chocolate(SVG) #D2691E<td bgcolor="#D2691E"><br>&nbsp;<th>tan(SVG) #D2B48C<td bgcolor="#D2B48C"><th>pink glass #D3BECF<td bgcolor="#D3BECF">
323
+ <tr><th>lightgray(SVG) #D3D3D3<td bgcolor="#D3D3D3"><br>&nbsp;<th>lightgrey(SVG) #D3D3D3<td bgcolor="#D3D3D3"><th>venetianred #D41A1F<td bgcolor="#D41A1F">
324
+ <tr><th>barney #D4318C<td bgcolor="#D4318C"><br>&nbsp;<th>englishred #D43D1A<td bgcolor="#D43D1A"><th>chili #D44942<td bgcolor="#D44942">
325
+ <tr><th>gray83 #D4D4D4<td bgcolor="#D4D4D4"><br>&nbsp;<th>limepulp #D4ED91<td bgcolor="#D4ED91"><th>gray84 #D6D6D6<td bgcolor="#D6D6D6">
326
+
327
+ <tr><th>thistle(SVG) #D8BFD8<td bgcolor="#D8BFD8"><br>&nbsp;<th>wheat #D8D8BF<td bgcolor="#D8D8BF"><th>cool copper #D98719<td bgcolor="#D98719">
328
+ <tr><th>brightgold #D9D919<td bgcolor="#D9D919"><br>&nbsp;<th>gray85 #D9D9D9<td bgcolor="#D9D9D9"><th>quartz #D9D9F3<td bgcolor="#D9D9F3">
329
+ <tr><th>orchid(SVG) #DA70D6<td bgcolor="#DA70D6"><br>&nbsp;<th>goldenrod(SVG) #DAA520<td bgcolor="#DAA520"><th>blue ice #DAF4F0<td bgcolor="#DAF4F0">
330
+ <tr><th>permanent redviolet #DB2645<td bgcolor="#DB2645"><br>&nbsp;<th>brownmadder #DB2929<td bgcolor="#DB2929"><th>palevioletred(SVG) #DB7093<td bgcolor="#DB7093">
331
+ <tr><th>orchid #DB70DB<td bgcolor="#DB70DB"><br>&nbsp;<th>tan #DB9370<td bgcolor="#DB9370"><th>ham #DB9EA6<td bgcolor="#DB9EA6">
332
+
333
+ <tr><th>goldenrod #DBDB70<td bgcolor="#DBDB70"><br>&nbsp;<th>gray86 #DBDBDB<td bgcolor="#DBDBDB"><th>moon #DBE6E0<td bgcolor="#DBE6E0">
334
+ <tr><th>mint blue #DBFEF8<td bgcolor="#DBFEF8"><br>&nbsp;<th>crimson(SVG) #DC143C<td bgcolor="#DC143C"><th>gainsboro(SVG) #DCDCDC<td bgcolor="#DCDCDC">
335
+ <tr><th>sign orange #DD7500<td bgcolor="#DD7500"><br>&nbsp;<th>plum(SVG) #DDA0DD<td bgcolor="#DDA0DD"><th>carnation #DE85B1<td bgcolor="#DE85B1">
336
+ <tr><th>burlywood(SVG) #DEB887<td bgcolor="#DEB887"><br>&nbsp;<th>gray87 #DEDEDE<td bgcolor="#DEDEDE"><th>melonrindgreen #DFFFA5<td bgcolor="#DFFFA5">
337
+ <tr><th>pink jeep #E0427F<td bgcolor="#E0427F"><br>&nbsp;<th>mediumorchid1 #E066FF<td bgcolor="#E066FF"><th>stainless steel #E0DFDB<td bgcolor="#E0DFDB">
338
+
339
+ <tr><th>gray88 #E0E0E0<td bgcolor="#E0E0E0"><br>&nbsp;<th>honeydew2 #E0EEE0<td bgcolor="#E0EEE0"><th>azure2 #E0EEEE<td bgcolor="#E0EEEE">
340
+ <tr><th>lightcyan(SVG) #E0FFFF<td bgcolor="#E0FFFF"><br>&nbsp;<th><a href="http://www.december.com/places/mke/images/blatz.jpg" title="Building brick from Milwaukee, Wisconsin">cream city brick</a> #E2DDB5<td bgcolor="#E2DDB5"><th>geraniumlake #E31230<td bgcolor="#E31230">
341
+ <tr><th>cadmiumreddeep #E3170D<td bgcolor="#E3170D"><br>&nbsp;<th>alizarincrimson #E32636<td bgcolor="#E32636"><th>madderlakedeep #E32E30<td bgcolor="#E32E30">
342
+ <tr><th>rosemadder #E33638<td bgcolor="#E33638"><br>&nbsp;<th>hematite #E35152<td bgcolor="#E35152"><th>marsyellow #E3701A<td bgcolor="#E3701A">
343
+
344
+ <tr><th>yellowochre #E38217<td bgcolor="#E38217"><br>&nbsp;<th>melon #E3A869<td bgcolor="#E3A869"><th>banana #E3CF57<td bgcolor="#E3CF57">
345
+ <tr><th>gray89 #E3E3E3<td bgcolor="#E3E3E3"><br>&nbsp;<th>mandarianorange #E47833<td bgcolor="#E47833"><th>gray90 #E5E5E5<td bgcolor="#E5E5E5">
346
+ <tr><th>semisweet chocolate2 #E6B426<td bgcolor="#E6B426"><br>&nbsp;<th>lavender(SVG) #E6E6FA<td bgcolor="#E6E6FA"><th>silver #E6E8FA<td bgcolor="#E6E8FA">
347
+ <tr><th>tongue #E79EA9<td bgcolor="#E79EA9"><br>&nbsp;<th>espresso #E7C6A5<td bgcolor="#E7C6A5"><th>dark wheat #E8C782<td bgcolor="#E8C782">
348
+ <tr><th>gray91 #E8E8E8<td bgcolor="#E8E8E8"><br>&nbsp;<th>chrome #E8F1D4<td bgcolor="#E8F1D4"><th>darksalmon(SVG) #E9967A<td bgcolor="#E9967A">
349
+
350
+ <tr><th>lightwood #E9C2A6<td bgcolor="#E9C2A6"><br>&nbsp;<th>plum2 #EAADEA<td bgcolor="#EAADEA"><th>mediumgoldenrod #EAEAAE<td bgcolor="#EAEAAE">
351
+ <tr><th>cherry #EB5E66<td bgcolor="#EB5E66"><br>&nbsp;<th>newtan #EBC79E<td bgcolor="#EBC79E"><th>gray92 #EBEBEB<td bgcolor="#EBEBEB">
352
+ <tr><th>piglet snout #ECC3BF<td bgcolor="#ECC3BF"><br>&nbsp;<th>corfu pink #ECC8EC<td bgcolor="#ECC8EC"><th>carrot #ED9121<td bgcolor="#ED9121">
353
+ <tr><th>light copper #EDC393<td bgcolor="#EDC393"><br>&nbsp;<th>gray93 #EDEDED<td bgcolor="#EDEDED"><th>red2(Hex3) #EE0000<td bgcolor="#EE0000">
354
+ <tr><th>magenta2(Hex3) #EE00EE<td bgcolor="#EE00EE"><br>&nbsp;<th>deeppink2 #EE1289<td bgcolor="#EE1289"><th>firebrick2 #EE2C2C<td bgcolor="#EE2C2C">
355
+
356
+ <tr><th>maroon2 #EE30A7<td bgcolor="#EE30A7"><br>&nbsp;<th>violetred2 #EE3A8C<td bgcolor="#EE3A8C"><th>brown2 #EE3B3B<td bgcolor="#EE3B3B">
357
+ <tr><th>orangered2 #EE4000<td bgcolor="#EE4000"><br>&nbsp;<th>tomato2 #EE5C42<td bgcolor="#EE5C42"><th>indianred2 #EE6363<td bgcolor="#EE6363">
358
+ <tr><th>coral2 #EE6A50<td bgcolor="#EE6A50"><br>&nbsp;<th>hotpink2 #EE6AA7<td bgcolor="#EE6AA7"><th>darkorange2 #EE7600<td bgcolor="#EE7600">
359
+ <tr><th>chocolate2 #EE7621<td bgcolor="#EE7621"><br>&nbsp;<th>sienna2 #EE7942<td bgcolor="#EE7942"><th>palevioletred2 #EE799F<td bgcolor="#EE799F">
360
+ <tr><th>orchid2 #EE7AE9<td bgcolor="#EE7AE9"><br>&nbsp;<th>salmon2 #EE8262<td bgcolor="#EE8262"><th>violet(SVG) #EE82EE<td bgcolor="#EE82EE">
361
+
362
+ <tr><th>tan(Hex3) #EE8833<td bgcolor="#EE8833"><br>&nbsp;<th>lightsalmon2 #EE9572<td bgcolor="#EE9572"><th>orange2 #EE9A00<td bgcolor="#EE9A00">
363
+ <tr><th>tan2 #EE9A49<td bgcolor="#EE9A49"><br>&nbsp;<th>lightpink2 #EEA2AD<td bgcolor="#EEA2AD"><th>pink2 #EEA9B8<td bgcolor="#EEA9B8">
364
+ <tr><th>darkgoldenrod2 #EEAD0E<td bgcolor="#EEAD0E"><br>&nbsp;<th>plum2 #EEAEEE<td bgcolor="#EEAEEE"><th>goldenrod2 #EEB422<td bgcolor="#EEB422">
365
+ <tr><th>rosybrown2 #EEB4B4<td bgcolor="#EEB4B4"><br>&nbsp;<th>burlywood2 #EEC591<td bgcolor="#EEC591"><th>gold2 #EEC900<td bgcolor="#EEC900">
366
+ <tr><th>peachpuff2 #EECBAD<td bgcolor="#EECBAD"><br>&nbsp;<th>navajowhite2 #EECFA1<td bgcolor="#EECFA1"><th>thistle2 #EED2EE<td bgcolor="#EED2EE">
367
+
368
+ <tr><th>bisque2 #EED5B7<td bgcolor="#EED5B7"><br>&nbsp;<th>mistyrose2 #EED5D2<td bgcolor="#EED5D2"><th>beach sand #EED6AF<td bgcolor="#EED6AF">
369
+ <tr><th>wheat2 #EED8AE<td bgcolor="#EED8AE"><br>&nbsp;<th>lightgoldenrod2 #EEDC82<td bgcolor="#EEDC82"><th>lightgoldenrod #EEDD82<td bgcolor="#EEDD82">
370
+ <tr><th>antiquewhite2 #EEDFCC<td bgcolor="#EEDFCC"><br>&nbsp;<th>lavenderblush2 #EEE0E5<td bgcolor="#EEE0E5"><th>seashell2 #EEE5DE<td bgcolor="#EEE5DE">
371
+ <tr><th>khaki2 #EEE685<td bgcolor="#EEE685"><br>&nbsp;<th>palegoldenrod(SVG) #EEE8AA<td bgcolor="#EEE8AA"><th>cornsilk2 #EEE8CD<td bgcolor="#EEE8CD">
372
+ <tr><th>lemonchiffon2 #EEE9BF<td bgcolor="#EEE9BF"><br>&nbsp;<th>snow2 #EEE9E9<td bgcolor="#EEE9E9"><th>yellow2(Hex3) #EEEE00<td bgcolor="#EEEE00">
373
+
374
+ <tr><th>lightyellow2 #EEEED1<td bgcolor="#EEEED1"><br>&nbsp;<th>ivory2 #EEEEE0<td bgcolor="#EEEEE0"><th>lightcoral(SVG) #F08080<td bgcolor="#F08080">
375
+ <tr><th>pyridiumorange #F0A804<td bgcolor="#F0A804"><br>&nbsp;<th>khaki(SVG) #F0E68C<td bgcolor="#F0E68C"><th>gray94 #F0F0F0<td bgcolor="#F0F0F0">
376
+ <tr><th>aliceblue(SVG) #F0F8FF<td bgcolor="#F0F8FF"><br>&nbsp;<th>honeydew(SVG) #F0FFF0<td bgcolor="#F0FFF0"><th>azure(SVG) #F0FFFF<td bgcolor="#F0FFFF">
377
+ <tr><th>gray95 #F2F2F2<td bgcolor="#F2F2F2"><br>&nbsp;<th>grapefruit #F3E88E<td bgcolor="#F3E88E"><th>sandybrown(SVG) #F4A460<td bgcolor="#F4A460">
378
+ <tr><th>cranberry jello #F54D70<td bgcolor="#F54D70"><br>&nbsp;<th>wheat(SVG) #F5DEB3<td bgcolor="#F5DEB3"><th>beige(SVG) #F5F5DC<td bgcolor="#F5F5DC">
379
+
380
+ <tr><th>whitesmoke(SVG) #F5F5F5<td bgcolor="#F5F5F5"><br>&nbsp;<th>mintcream(SVG) #F5FFFA<td bgcolor="#F5FFFA"><th>dog tongue #F6A4D5<td bgcolor="#F6A4D5">
381
+ <tr><th>pink cloud #F6A8B6<td bgcolor="#F6A8B6"><br>&nbsp;<th>bermuda sand #F6C9CC<td bgcolor="#F6C9CC"><th>pink shell #F6CCDA<td bgcolor="#F6CCDA">
382
+ <tr><th>cotton candy #F7B3DA<td bgcolor="#F7B3DA"><br>&nbsp;<th>gray97 #F7F7F7<td bgcolor="#F7F7F7"><th>ghostwhite(SVG) #F8F8FF<td bgcolor="#F8F8FF">
383
+ <tr><th>salmon(SVG) #FA8072<td bgcolor="#FA8072"><br>&nbsp;<th>antiquewhite(SVG) #FAEBD7<td bgcolor="#FAEBD7"><th>linen(SVG) #FAF0E6<td bgcolor="#FAF0E6">
384
+ <tr><th>lightgoldenrodyellow(SVG) #FAFAD2<td bgcolor="#FAFAD2"><br>&nbsp;<th>gray98 #FAFAFA<td bgcolor="#FAFAFA"><th>apricot #FBA16C<td bgcolor="#FBA16C">
385
+
386
+ <tr><th>corn #FBEC5D<td bgcolor="#FBEC5D"><br>&nbsp;<th>packer gold #FCB514<td bgcolor="#FCB514"><th>sign yellow #FCD116<td bgcolor="#FCD116">
387
+ <tr><th>bread #FCD59C<td bgcolor="#FCD59C"><br>&nbsp;<th>eggshell #FCE6C9<td bgcolor="#FCE6C9"><th>gray99 #FCFCFC<td bgcolor="#FCFCFC">
388
+ <tr><th>titaniumwhite #FCFFF0<td bgcolor="#FCFFF0"><br>&nbsp;<th>oldlace(SVG) #FDF5E6<td bgcolor="#FDF5E6"><th>zincwhite #FDF8FF<td bgcolor="#FDF8FF">
389
+ <tr><th>honey #FEE5AC<td bgcolor="#FEE5AC"><br>&nbsp;<th>desert sand #FEE8D6<td bgcolor="#FEE8D6"><th>peach #FEF0DB<td bgcolor="#FEF0DB">
390
+ <tr><th>buttermilk #FEF1B5<td bgcolor="#FEF1B5"><br>&nbsp;<th>red(Safe 16 SVG Hex3) #FF0000<td bgcolor="#FF0000"><th>bright red(Safe Hex3) #FF0033<td bgcolor="#FF0033">
391
+
392
+ <tr><th>broadwaypink(Safe Hex3) #FF0066<td bgcolor="#FF0066"><br>&nbsp;<th>orangered #FF007F<td bgcolor="#FF007F"><th>fuchsia2(Hex3) #FF00AA<td bgcolor="#FF00AA">
393
+ <tr><th>rose(Safe Hex3) #FF00CC<td bgcolor="#FF00CC"><br>&nbsp;<th>magenta(Safe 16=fuchsia SVG Hex3) #FF00FF<td bgcolor="#FF00FF"><th>fuchsia(Safe 16 SVG Hex3) #FF00FF<td bgcolor="#FF00FF"></table></div><div class="wrapper"><table cellspacing="2" cellpadding="1" border="1" style="border-collapse: collapse" width="100%" align="center">
394
+ <tr><th width="25%">cadmiumredlight #FF030D<td width="8%" bgcolor="#FF030D"><br>&nbsp;<th width="25%">deeppink(SVG) #FF1493<td width="8%" bgcolor="#FF1493"><th width="25%">spicypink #FF1CAE<td width="8%" bgcolor="#FF1CAE">
395
+ <tr><th>orangered #FF2400<td bgcolor="#FF2400"><br>&nbsp;<th>firebrick1 #FF3030<td bgcolor="#FF3030"><th>nectarine(Safe Hex3) #FF3300<td bgcolor="#FF3300">
396
+ <tr><th>novascotia salmon(Safe Hex3) #FF3333<td bgcolor="#FF3333"><br>&nbsp;<th>maroon1 #FF34B3<td bgcolor="#FF34B3"><th>greenishumber #FF3D0D<td bgcolor="#FF3D0D">
397
+
398
+ <tr><th>violetred1 #FF3E96<td bgcolor="#FF3E96"><br>&nbsp;<th>brown1 #FF4040<td bgcolor="#FF4040"><th>orangered(SVG) #FF4500<td bgcolor="#FF4500">
399
+ <tr><th>safety cone #FF5333<td bgcolor="#FF5333"><br>&nbsp;<th>fleshochre #FF5721<td bgcolor="#FF5721"><th>cadmiumorange #FF6103<td bgcolor="#FF6103">
400
+ <tr><th>tomato(SVG) #FF6347<td bgcolor="#FF6347"><br>&nbsp;<th>orange(Safe Hex3) #FF6600<td bgcolor="#FF6600"><th>seattle salmon(Safe Hex3) #FF6666<td bgcolor="#FF6666">
401
+ <tr><th>hotpink(SVG) #FF69B4<td bgcolor="#FF69B4"><br>&nbsp;<th>indianred1 #FF6A6A<td bgcolor="#FF6A6A"><th>hotpink1 #FF6EB4<td bgcolor="#FF6EB4">
402
+ <tr><th>neonpink #FF6EC7<td bgcolor="#FF6EC7"><br>&nbsp;<th>coral1 #FF7256<td bgcolor="#FF7256"><th>oregon salmon(Hex3) #FF7722<td bgcolor="#FF7722">
403
+
404
+ <tr><th>orange5 #FF7D40<td bgcolor="#FF7D40"><br>&nbsp;<th>darkorange1 #FF7F00<td bgcolor="#FF7F00"><th>chocolate1 #FF7F24<td bgcolor="#FF7F24">
405
+ <tr><th>coral(SVG) #FF7F50<td bgcolor="#FF7F50"><br>&nbsp;<th>orange #FF8000<td bgcolor="#FF8000"><th>sienna1 #FF8247<td bgcolor="#FF8247">
406
+ <tr><th>palevioletred1 #FF82AB<td bgcolor="#FF82AB"><br>&nbsp;<th>orchid1 #FF83FA<td bgcolor="#FF83FA"><th>darkorange5 #FF8600<td bgcolor="#FF8600">
407
+ <tr><th>darkorange(SVG) #FF8C00<td bgcolor="#FF8C00"><br>&nbsp;<th>salmon1 #FF8C69<td bgcolor="#FF8C69"><th>bubble gum #FF92BB<td bgcolor="#FF92BB">
408
+ <tr><th>cadmiumyellow #FF9912<td bgcolor="#FF9912"><br>&nbsp;<th>peach(Hex3) #FF9955<td bgcolor="#FF9955"><th>lightsalmon(SVG) #FFA07A<td bgcolor="#FFA07A">
409
+
410
+ <tr><th>orange(SVG) #FFA500<td bgcolor="#FFA500"><br>&nbsp;<th>tan1 #FFA54F<td bgcolor="#FFA54F"><th>naplesyellowdeep #FFA812<td bgcolor="#FFA812">
411
+ <tr><th>aureolineyellow #FFA824<td bgcolor="#FFA824"><br>&nbsp;<th>gold7(Hex3) #FFAA00<td bgcolor="#FFAA00"><th>peachpuff #FFADB9<td bgcolor="#FFADB9">
412
+ <tr><th>lightpink1 #FFAEB9<td bgcolor="#FFAEB9"><br>&nbsp;<th>cadmium yellowlight #FFB00F<td bgcolor="#FFB00F"><th>pink1 #FFB5C5<td bgcolor="#FFB5C5">
413
+ <tr><th>lightpink(SVG) #FFB6C1<td bgcolor="#FFB6C1"><br>&nbsp;<th>darkgoldenrod1 #FFB90F<td bgcolor="#FFB90F"><th>plum1(Hex3) #FFBBFF<td bgcolor="#FFBBFF">
414
+ <tr><th>pink(SVG) #FFC0CB<td bgcolor="#FFC0CB"><br>&nbsp;<th>goldenrod1 #FFC125<td bgcolor="#FFC125"><th>rosybrown1 #FFC1C1<td bgcolor="#FFC1C1">
415
+
416
+ <tr><th>cheddar #FFC469<td bgcolor="#FFC469"><br>&nbsp;<th>mustard(Hex3) #FFCC11<td bgcolor="#FFCC11"><th>sand(Safe Hex3) #FFCC99<td bgcolor="#FFCC99">
417
+ <tr><th>flatpink(Safe Hex3) #FFCCCC<td bgcolor="#FFCCCC"><br>&nbsp;<th>burlywood1 #FFD39B<td bgcolor="#FFD39B"><th>gold(SVG) #FFD700<td bgcolor="#FFD700">
418
+ <tr><th>peachpuff(SVG) #FFDAB9<td bgcolor="#FFDAB9"><br>&nbsp;<th>navajowhite(SVG) #FFDEAD<td bgcolor="#FFDEAD"><th>thistle1 #FFE1FF<td bgcolor="#FFE1FF">
419
+ <tr><th>cadmiumlemon #FFE303<td bgcolor="#FFE303"><br>&nbsp;<th>moccasin(SVG) #FFE4B5<td bgcolor="#FFE4B5"><th>bisque(SVG) #FFE4C4<td bgcolor="#FFE4C4">
420
+ <tr><th>mistyrose(SVG) #FFE4E1<td bgcolor="#FFE4E1"><br>&nbsp;<th>yolk #FFE600<td bgcolor="#FFE600"><th>wheat1 #FFE7BA<td bgcolor="#FFE7BA">
421
+
422
+ <tr><th>blanchedalmond(SVG) #FFEBCD<td bgcolor="#FFEBCD"><br>&nbsp;<th>light goldenrod1 #FFEC8B<td bgcolor="#FFEC8B"><th>papayawhip(SVG) #FFEFD5<td bgcolor="#FFEFD5">
423
+ <tr><th>antiquewhite1 #FFEFDB<td bgcolor="#FFEFDB"><br>&nbsp;<th>lavenderblush(SVG) #FFF0F5<td bgcolor="#FFF0F5"><th>seashell(SVG) #FFF5EE<td bgcolor="#FFF5EE">
424
+ <tr><th>khaki1 #FFF68F<td bgcolor="#FFF68F"><br>&nbsp;<th>cornsilk(SVG) #FFF8DC<td bgcolor="#FFF8DC"><th>lemonchiffon(SVG) #FFFACD<td bgcolor="#FFFACD">
425
+ <tr><th>floralwhite(SVG) #FFFAF0<td bgcolor="#FFFAF0"><br>&nbsp;<th>snow(SVG) #FFFAFA<td bgcolor="#FFFAFA"><th>coconut #FFFCCF<td bgcolor="#FFFCCF">
426
+ <tr><th>yellow(Safe 16 SVG Hex3) #FFFF00<td bgcolor="#FFFF00"><br>&nbsp;<th>papaya #FFFF7E<td bgcolor="#FFFF7E"><th>popcornyellow(Hex3) #FFFFAA<td bgcolor="#FFFFAA">
427
+
428
+ <tr><th>bone(Safe Hex3) #FFFFCC<td bgcolor="#FFFFCC"><br>&nbsp;<th>lightyellow(SVG) #FFFFE0<td bgcolor="#FFFFE0"><th>ivory(SVG) #FFFFF0<td bgcolor="#FFFFF0">
429
+ <tr><th>white(Safe 16 SVG Hex3) #FFFFFF<td bgcolor="#FFFFFF"><br>&nbsp;<th><th>&nbsp;<th><th>&nbsp;</table>}
430
+
431
+ colors = []
432
+ matches = html.scan /<th.*>(.*?)(\(|#).*bgcolor="(.*?)"/ do |m|
433
+ colors << "'#{m[0].strip}' => '#{m[2].strip}'" if m[0]
434
+ end
435
+
436
+ puts "colors = {\n" + colors.join(",\n") + "\n}"