cairo 1.16.2 → 1.16.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eac6096f7ad06e67fb313f0b9afdfcca2fbfe9fe4f8a3d7ae4e3de5d0d539ce6
4
- data.tar.gz: 432ee21e533650fc59bb9ef65de42710b66f7493beedd2e0623ed65c1ab8f513
3
+ metadata.gz: 1092a9e815c9ca80088e0510376c96f12afa69d8262d2aa45b8728806533982f
4
+ data.tar.gz: c5c8e094a7b71f88e7eb8cc8d2f313d97716b89a244fddbbfcdeee70ec2ac934
5
5
  SHA512:
6
- metadata.gz: 3cbf91510b8febca95349591625e8f462c24492bf4f4f23be909a261d249d4ae582abda2f178098194a5d7bc14001318b0c322c7ddad02caffd3ba801f16fc5a
7
- data.tar.gz: 8e867e4a005d7fce79a0a9604e6b9e2e614b5ac3d16a944ae188c79965af2da0522fbd7115bf32952c3cc9e6b8327417e778b156f056264833f17569a32158e3
6
+ metadata.gz: fb2ee47dca5f0596e5caff413752c78c4762463019014d9d60f5df6cb58945cf9c3c7b91ecce9ade3b30e531b08688218f79ec8c9ff2be469a146fcf08729e30
7
+ data.tar.gz: 887e2986b4ea7a737c7f327ef16c8341ba1882ef7eca8ee645fc319d093893a1710048b60f8eb2205a1d3848ff9f55452d8ac9ed1b812fd9ac2ad9f45a50db60
data/NEWS CHANGED
@@ -1,3 +1,30 @@
1
+ Release 1.16.3 (2019-03-09) Kouhei Sutou <kou@cozmixng.org>
2
+ ============================================================
3
+
4
+ Improvements
5
+ ------------
6
+
7
+ * Improved Cairo::Poinst#distance performance.
8
+ [GitHub#53][Patch by scivola]
9
+
10
+ * Added support for building with cairo and GLib 2.60 installed by
11
+ Homebrew.
12
+
13
+ * Updated colors. There are some backward incompatibility. Sorry.
14
+
15
+ Fixes
16
+ -----
17
+
18
+ * Fixed Cairo::Color::RGB#to_s.
19
+ [GitHub#55][Patch by spoolkitamura]
20
+
21
+ Thanks
22
+ ------
23
+
24
+ * scivola
25
+
26
+ * spoolkitamura.
27
+
1
28
  Release 1.16.2 (2018-10-31) Kouhei Sutou <kou@cozmixng.org>
2
29
  ============================================================
3
30
 
@@ -22,21 +22,11 @@ package = "cairo"
22
22
  module_name = "cairo"
23
23
  major, minor, micro = 1, 2, 0
24
24
 
25
- base_dir = Pathname(__FILE__).dirname.parent.parent
26
- checking_for(checking_message("Win32 OS")) do
27
- case RUBY_PLATFORM
28
- when /mingw|mswin32/
29
- $defs << "-DRUBY_CAIRO_PLATFORM_WIN32"
30
- import_library_name = "libruby-#{module_name}.a"
31
- $DLDFLAGS << " -Wl,--out-implib=#{import_library_name}"
32
- $cleanfiles << import_library_name
33
- binary_base_dir = base_dir + "vendor" + "local"
34
- if with_config('vendor-override', binary_base_dir.exist?)
35
- $CFLAGS += " -I#{binary_base_dir}/include"
36
- pkg_config_dir = binary_base_dir + "lib" + "pkgconfig"
37
- PKGConfig.add_path(pkg_config_dir.to_s)
38
- PKGConfig.set_override_variable("prefix", binary_base_dir.to_s)
39
- end
25
+ checking_for(checking_message("Homebrew")) do
26
+ platform = NativePackageInstaller::Platform.detect
27
+ if platform.is_a?(NativePackageInstaller::Platform::Homebrew)
28
+ libffi_prefix = `brew --prefix libffi`.chomp
29
+ PKGConfig.add_path("#{libffi_prefix}/lib/pkgconfig")
40
30
  true
41
31
  else
42
32
  false
@@ -68,7 +58,7 @@ end
68
58
 
69
59
  PKGConfig.have_package("cairo-ft")
70
60
 
71
- checking_for(checking_message("Mac OS X")) do
61
+ checking_for(checking_message("macOS")) do
72
62
  case RUBY_PLATFORM
73
63
  when /darwin/
74
64
  if have_macro("CAIRO_HAS_QUARTZ_SURFACE", ["cairo.h"])
@@ -73,7 +73,7 @@ RB_CAIRO_BEGIN_DECLS
73
73
 
74
74
  #define RB_CAIRO_VERSION_MAJOR 1
75
75
  #define RB_CAIRO_VERSION_MINOR 16
76
- #define RB_CAIRO_VERSION_MICRO 2
76
+ #define RB_CAIRO_VERSION_MICRO 3
77
77
 
78
78
  RB_CAIRO_VAR VALUE rb_mCairo;
79
79
  RB_CAIRO_VAR VALUE rb_cCairo_Context;
@@ -5,7 +5,7 @@
5
5
  * $Author: kou $
6
6
  * $Date: 2008-09-26 13:52:08 $
7
7
  *
8
- * Copyright 2005-2018 Kouhei Sutou <kou@cozmixng.org>
8
+ * Copyright 2005-2019 Kouhei Sutou <kou@cozmixng.org>
9
9
  * Copyright 2005 Øyvind Kolås <pippin@freedesktop.org>
10
10
  * Copyright 2004-2005 MenTaLguY <mental@rydia.com>
11
11
  *
@@ -351,7 +351,7 @@ cr_set_source_rgb (int argc, VALUE *argv, VALUE self)
351
351
  if (n == 1 && rb_cairo__is_kind_of (red, rb_cArray))
352
352
  {
353
353
  VALUE ary = red;
354
- n = RARRAY_LEN (ary);
354
+ n = (int) RARRAY_LEN (ary);
355
355
  red = rb_ary_entry (ary, 0);
356
356
  green = rb_ary_entry (ary, 1);
357
357
  blue = rb_ary_entry (ary, 2);
@@ -388,7 +388,7 @@ cr_set_source_rgba (int argc, VALUE *argv, VALUE self)
388
388
  if (n == 1 && rb_cairo__is_kind_of (red, rb_cArray))
389
389
  {
390
390
  VALUE ary = red;
391
- n = RARRAY_LEN (ary);
391
+ n = (int) RARRAY_LEN (ary);
392
392
  red = rb_ary_entry (ary, 0);
393
393
  green = rb_ary_entry (ary, 1);
394
394
  blue = rb_ary_entry (ary, 2);
@@ -567,7 +567,7 @@ cr_set_dash (int argc, VALUE *argv, VALUE self)
567
567
  {
568
568
  int i, length;
569
569
  double *values;
570
- length = RARRAY_LEN (dash_array);
570
+ length = (int) RARRAY_LEN (dash_array);
571
571
  values = ALLOCA_N (double, length);
572
572
  if (!values)
573
573
  {
@@ -1323,7 +1323,7 @@ cr_show_text_glyphs (VALUE self, VALUE rb_utf8, VALUE rb_glyphs,
1323
1323
 
1324
1324
  cr = _SELF;
1325
1325
  utf8 = RSTRING_PTR (rb_utf8);
1326
- utf8_len = RSTRING_LEN (rb_utf8);
1326
+ utf8_len = (int) RSTRING_LEN (rb_utf8);
1327
1327
  rb_cairo__glyphs_from_ruby_object (rb_glyphs, &glyphs, &num_glyphs);
1328
1328
  rb_cairo__text_clusters_from_ruby_object (rb_clusters,
1329
1329
  &clusters, &num_clusters);
@@ -2,7 +2,7 @@
2
2
  /*
3
3
  * Ruby Cairo Binding
4
4
  *
5
- * Copyright 2010-2012 Kouhei Sutou <kou@cozmixng.org>
5
+ * Copyright 2010-2019 Kouhei Sutou <kou@cozmixng.org>
6
6
  *
7
7
  * This file is made available under the same terms as Ruby
8
8
  *
@@ -343,7 +343,7 @@ cr_script_device_write_comment (VALUE self, VALUE comment)
343
343
  device = _SELF;
344
344
  cairo_script_write_comment (device,
345
345
  StringValuePtr (comment),
346
- RSTRING_LEN (comment));
346
+ (int) RSTRING_LEN (comment));
347
347
  cr_device_check_status (device);
348
348
  return Qnil;
349
349
  }
@@ -2,7 +2,7 @@
2
2
  /*
3
3
  * Ruby Cairo Binding
4
4
  *
5
- * Copyright 2005-2010 Kouhei Sutou <kou@cozmixng.org>
5
+ * Copyright 2005-2019 Kouhei Sutou <kou@cozmixng.org>
6
6
  *
7
7
  * This file is made available under the same terms as Ruby
8
8
  *
@@ -70,7 +70,7 @@ rb_cairo__io_write_func_invoke (VALUE write_closure)
70
70
  VALUE output, data;
71
71
  long written_bytes;
72
72
  rb_cairo__io_callback_closure_t *closure;
73
- unsigned int length;
73
+ long length;
74
74
 
75
75
  closure = (rb_cairo__io_callback_closure_t *)write_closure;
76
76
 
@@ -118,7 +118,7 @@ rb_cairo__io_read_func_invoke (VALUE read_closure)
118
118
  {
119
119
  VALUE input, result;
120
120
  rb_cairo__io_callback_closure_t *closure;
121
- unsigned int length, rest;
121
+ long length, rest;
122
122
 
123
123
  closure = (rb_cairo__io_callback_closure_t *)read_closure;
124
124
  input = closure->target;
@@ -133,7 +133,7 @@ rb_cairo__io_read_func_invoke (VALUE read_closure)
133
133
  rb_cairo__io_id_read, 1, INT2NUM (rest)));
134
134
  }
135
135
 
136
- memcpy ((void *)closure->data, (const void *)StringValuePtr (result), length);
136
+ memcpy ((void *)closure->data, (const void *) StringValuePtr (result), length);
137
137
 
138
138
  return Qnil;
139
139
  }
@@ -5,7 +5,7 @@
5
5
  * $Author: kou $
6
6
  * $Date: 2008-06-12 10:59:54 $
7
7
  *
8
- * Copyright 2012 Kouhei Sutou <kou@cozmixng.org>
8
+ * Copyright 2012-2019 Kouhei Sutou <kou@cozmixng.org>
9
9
  * Copyright 2005 Øyvind Kolås <pippin@freedesktop.org>
10
10
  * Copyright 2004-2005 MenTaLguY <mental@rydia.com>
11
11
  *
@@ -208,7 +208,7 @@ cr_solid_pattern_initialize (int argc, VALUE *argv, VALUE self)
208
208
  (RARRAY_LEN (red) == 3 || RARRAY_LEN (red) == 4))
209
209
  {
210
210
  VALUE ary = red;
211
- n = RARRAY_LEN (ary);
211
+ n = (int) RARRAY_LEN (ary);
212
212
 
213
213
  red = rb_ary_entry (ary, 0);
214
214
  green = rb_ary_entry (ary, 1);
@@ -315,7 +315,7 @@ cr_gradient_pattern_add_color_stop_generic (int argc, VALUE *argv, VALUE self)
315
315
  if (n == 2 && rb_cairo__is_kind_of (red, rb_cArray))
316
316
  {
317
317
  VALUE ary = red;
318
- n = RARRAY_LEN (ary) + 1;
318
+ n = (int) RARRAY_LEN (ary) + 1;
319
319
 
320
320
  red = rb_ary_entry (ary, 0);
321
321
  green = rb_ary_entry (ary, 1);
@@ -5,7 +5,7 @@
5
5
  * $Author: kou $
6
6
  * $Date: 2008-08-17 07:21:42 $
7
7
  *
8
- * Copyright 2005-2014 Kouhei Sutou <kou@cozmixng.org>
8
+ * Copyright 2005-2019 Kouhei Sutou <kou@cozmixng.org>
9
9
  *
10
10
  * This file is made available under the same terms as Ruby
11
11
  *
@@ -160,7 +160,7 @@ rb_cairo__glyphs_from_ruby_object (VALUE rb_glyphs,
160
160
  return;
161
161
  }
162
162
 
163
- len = RARRAY_LEN (rb_glyphs);
163
+ len = (int) RARRAY_LEN (rb_glyphs);
164
164
  if (*num_glyphs < len)
165
165
  *glyphs = cairo_glyph_allocate (len);
166
166
  *num_glyphs = len;
@@ -202,7 +202,7 @@ rb_cairo__text_clusters_from_ruby_object (VALUE rb_clusters,
202
202
  return;
203
203
  }
204
204
 
205
- len = RARRAY_LEN (rb_clusters);
205
+ len = (int) RARRAY_LEN (rb_clusters);
206
206
  if (*num_clusters < len)
207
207
  *clusters = cairo_text_cluster_allocate (len);
208
208
  *num_clusters = len;
@@ -5,7 +5,7 @@
5
5
  * $Author: kou $
6
6
  * $Date: 2008-08-17 07:21:42 $
7
7
  *
8
- * Copyright 2005-2018 Kouhei Sutou <kou@cozmixng.org>
8
+ * Copyright 2005-2019 Kouhei Sutou <kou@cozmixng.org>
9
9
  *
10
10
  * This file is made available under the same terms as Ruby
11
11
  *
@@ -78,7 +78,7 @@ extern void Init_cairo_text_cluster (void);
78
78
  do \
79
79
  { \
80
80
  Check_Type (rb_array, T_ARRAY); \
81
- length = RARRAY_LEN (rb_array); \
81
+ length = (int) RARRAY_LEN (rb_array); \
82
82
  glyphs = ALLOCA_N (cairo_glyph_t, length); \
83
83
  \
84
84
  if (!glyphs) \
@@ -5,7 +5,7 @@
5
5
  * $Author: kou $
6
6
  * $Date: 2008-09-19 12:56:27 $
7
7
  *
8
- * Copyright 2005-2008 Kouhei Sutou <kou@cozmixng.org>
8
+ * Copyright 2005-2019 Kouhei Sutou <kou@cozmixng.org>
9
9
  *
10
10
  * This file is made available under the same terms as Ruby
11
11
  *
@@ -132,7 +132,7 @@ cr_scaled_font_text_to_glyphs (VALUE self, VALUE rb_x, VALUE rb_y, VALUE rb_utf8
132
132
  x = NUM2DBL (rb_x);
133
133
  y = NUM2DBL (rb_y);
134
134
  utf8 = RSTRING_PTR (rb_utf8);
135
- utf8_len = RSTRING_LEN (rb_utf8);
135
+ utf8_len = (int) RSTRING_LEN (rb_utf8);
136
136
 
137
137
  status = cairo_scaled_font_text_to_glyphs (_SELF (self),
138
138
  x, y, utf8, utf8_len,
@@ -14,7 +14,7 @@ module Cairo
14
14
  _, *value = value if [:rgb, :rgba].include?(value.first)
15
15
  RGB.new(*value)
16
16
  end
17
- when /\A#/ #
17
+ when /\A\#/
18
18
  parse_hex_color(value)
19
19
  when String, Symbol
20
20
  name = Cairo.normalize_const_name(value)
@@ -34,16 +34,16 @@ module Cairo
34
34
  HEX_RE = "(?i:[a-f\\d])"
35
35
  def parse_hex_color(value)
36
36
  case value
37
- when /\A#((?:#{HEX_RE}){3,4})\z/ #
37
+ when /\A\#((?:#{HEX_RE}){3,4})\z/
38
38
  RGB.new(*$1.scan(/./).collect {|part| part.hex / 15.0})
39
- when /\A#((?:#{HEX_RE}{2,2}){3,4})\z/ #
39
+ when /\A\#((?:#{HEX_RE}{2,2}){3,4})\z/
40
40
  RGB.new(*$1.scan(/.{2,2}/).collect {|part| part.hex / 255.0})
41
- when /\A#((?:#{HEX_RE}{4,4}){3,4})\z/ #
41
+ when /\A\#((?:#{HEX_RE}{4,4}){3,4})\z/
42
42
  RGB.new(*$1.scan(/.{4,4}/).collect {|part| part.hex / 65535.0})
43
43
  else
44
44
  message = "invalid hex color format: #{value} should be "
45
- message << "#RGB, #RGBA, #RRGGBB, #RRGGBBAA, #RRRRGGGGBBBB "
46
- message << "or #RRRRGGGGBBBBAAAA"
45
+ message << "\#RGB, \#RGBA, \#RRGGBB, \#RRGGBBAA, \#RRRRGGGGBBBB "
46
+ message << "or \#RRRRGGGGBBBBAAAA"
47
47
  raise ArgumentError, message
48
48
  end
49
49
  end
@@ -106,7 +106,7 @@ module Cairo
106
106
  alias_method :to_ary, :to_a
107
107
 
108
108
  def to_s
109
- "#%02X%02X%02X%02X" % to_a.collect {|v| (v * 255).ceil}
109
+ "#%02X%02X%02X%02X" % to_a.collect {|v| (v * 255).round(1)}
110
110
  end
111
111
 
112
112
  def to_rgb
@@ -1,656 +1,3342 @@
1
- require 'cairo/color'
1
+ require "cairo/color"
2
2
 
3
3
  module Cairo
4
4
  module Color
5
- # Alice Blue: #F0F8FF
6
- ALICE_BLUE = RGB.new(0.941176470588235, 0.972549019607843, 1.0)
7
- # Alizarin Crimson: #E32636
8
- ALIZARIN_CRIMSON = RGB.new(0.890196078431372, 0.149019607843137, 0.211764705882353)
9
- # Amaranth: #E52B50
10
- AMARANTH = RGB.new(0.898039215686275, 0.168627450980392, 0.313725490196078)
11
- # Amber: #FFBF00
12
- AMBER = RGB.new(1.0, 0.749019607843137, 0.0)
13
- # Amethyst: #9966CC
5
+ # Absolute Zero: #0048BA: (0, 72, 186)
6
+ ABSOLUTE_ZERO = RGB.new(0.0, 0.2823529411764706, 0.7294117647058823)
7
+ # Acid green: #B0BF1A: (176, 191, 26)
8
+ ACID_GREEN = RGB.new(0.6901960784313725, 0.7490196078431373, 0.10196078431372549)
9
+ # Aero: #7CB9E8: (124, 185, 232)
10
+ AERO = RGB.new(0.48627450980392156, 0.7254901960784313, 0.9098039215686274)
11
+ # Aero blue: #C9FFE5: (201, 255, 229)
12
+ AERO_BLUE = RGB.new(0.788235294117647, 1.0, 0.8980392156862745)
13
+ # African violet: #B284BE: (178, 132, 190)
14
+ AFRICAN_VIOLET = RGB.new(0.6980392156862745, 0.5176470588235295, 0.7450980392156863)
15
+ # Alabama crimson: #AF002A: (175, 0, 42)
16
+ ALABAMA_CRIMSON = RGB.new(0.6862745098039216, 0.0, 0.16470588235294117)
17
+ # Alabaster: #F2F0E6: (242, 240, 230)
18
+ ALABASTER = RGB.new(0.9490196078431372, 0.9411764705882353, 0.9019607843137255)
19
+ # Alice blue: #F0F8FF: (240, 248, 255)
20
+ ALICE_BLUE = RGB.new(0.9411764705882353, 0.9725490196078431, 1.0)
21
+ # Alien Armpit: #84DE02: (132, 222, 2)
22
+ ALIEN_ARMPIT = RGB.new(0.5176470588235295, 0.8705882352941177, 0.00784313725490196)
23
+ # Alloy orange: #C46210: (196, 98, 16)
24
+ ALLOY_ORANGE = RGB.new(0.7686274509803922, 0.3843137254901961, 0.06274509803921569)
25
+ # Almond: #EFDECD: (239, 222, 205)
26
+ ALMOND = RGB.new(0.9372549019607843, 0.8705882352941177, 0.803921568627451)
27
+ # Amaranth: #E52B50: (229, 43, 80)
28
+ AMARANTH = RGB.new(0.8980392156862745, 0.16862745098039217, 0.3137254901960784)
29
+ # Amaranth deep purple: #9F2B68: (159, 43, 104)
30
+ AMARANTH_DEEP_PURPLE = RGB.new(0.6235294117647059, 0.16862745098039217, 0.40784313725490196)
31
+ # Amaranth pink: #F19CBB: (241, 156, 187)
32
+ AMARANTH_PINK = RGB.new(0.9450980392156862, 0.611764705882353, 0.7333333333333333)
33
+ # Amaranth purple: #AB274F: (171, 39, 79)
34
+ AMARANTH_PURPLE = RGB.new(0.6705882352941176, 0.15294117647058825, 0.30980392156862746)
35
+ # Amaranth red: #D3212D: (211, 33, 45)
36
+ AMARANTH_RED = RGB.new(0.8274509803921568, 0.12941176470588237, 0.17647058823529413)
37
+ # Amazon: #3B7A57: (59, 122, 87)
38
+ AMAZON = RGB.new(0.23137254901960785, 0.47843137254901963, 0.3411764705882353)
39
+ # Amber: #FFBF00: (255, 191, 0)
40
+ AMBER = RGB.new(1.0, 0.7490196078431373, 0.0)
41
+ # Amber (SAE/ECE): #FF7E00: (255, 126, 0)
42
+ AMBER_SAE_ECE = RGB.new(1.0, 0.49411764705882355, 0.0)
43
+ # Amethyst: #9966CC: (153, 102, 204)
14
44
  AMETHYST = RGB.new(0.6, 0.4, 0.8)
15
- # Apricot: #FBCEB1
16
- APRICOT = RGB.new(0.984313725490196, 0.807843137254902, 0.694117647058824)
17
- # Aqua: #00FFFF
45
+ # Android green: #A4C639: (164, 198, 57)
46
+ ANDROID_GREEN = RGB.new(0.6431372549019608, 0.7764705882352941, 0.2235294117647059)
47
+ # Anti-flash white: #F2F3F4: (242, 243, 244)
48
+ ANTI_FLASH_WHITE = RGB.new(0.9490196078431372, 0.9529411764705882, 0.9568627450980393)
49
+ # Antique brass: #CD9575: (205, 149, 117)
50
+ ANTIQUE_BRASS = RGB.new(0.803921568627451, 0.5843137254901961, 0.4588235294117647)
51
+ # Antique bronze: #665D1E: (102, 93, 30)
52
+ ANTIQUE_BRONZE = RGB.new(0.4, 0.36470588235294116, 0.11764705882352941)
53
+ # Antique fuchsia: #915C83: (145, 92, 131)
54
+ ANTIQUE_FUCHSIA = RGB.new(0.5686274509803921, 0.3607843137254902, 0.5137254901960784)
55
+ # Antique ruby: #841B2D: (132, 27, 45)
56
+ ANTIQUE_RUBY = RGB.new(0.5176470588235295, 0.10588235294117647, 0.17647058823529413)
57
+ # Antique white: #FAEBD7: (250, 235, 215)
58
+ ANTIQUE_WHITE = RGB.new(0.9803921568627451, 0.9215686274509803, 0.8431372549019608)
59
+ # Ao (English): #008000: (0, 128, 0)
60
+ AO_ENGLISH = RGB.new(0.0, 0.5019607843137255, 0.0)
61
+ # Apple: #66B447: (102, 180, 71)
62
+ APPLE = RGB.new(0.4, 0.7058823529411765, 0.2784313725490196)
63
+ # Apple green: #8DB600: (141, 182, 0)
64
+ APPLE_GREEN = RGB.new(0.5529411764705883, 0.7137254901960784, 0.0)
65
+ # Apricot: #FBCEB1: (251, 206, 177)
66
+ APRICOT = RGB.new(0.984313725490196, 0.807843137254902, 0.6941176470588235)
67
+ # Aqua: #00FFFF: (0, 255, 255)
18
68
  AQUA = RGB.new(0.0, 1.0, 1.0)
19
- # Aquamarine: #7FFFD4
20
- AQUAMARINE = RGB.new(0.498039215686275, 1.0, 0.831372549019608)
21
- # Asparagus: #7BA05B
22
- ASPARAGUS = RGB.new(0.482352941176471, 0.627450980392157, 0.356862745098039)
23
- # Azure: #007FFF
24
- AZURE = RGB.new(0.0, 0.498039215686275, 1.0)
25
- # Beige: #F5F5DC
26
- BEIGE = RGB.new(0.96078431372549, 0.96078431372549, 0.862745098039216)
27
- # Bistre: #3D2B1F
28
- BISTRE = RGB.new(0.23921568627451, 0.168627450980392, 0.12156862745098)
29
- # Black: #000000
69
+ # Aquamarine: #7FFFD4: (127, 255, 212)
70
+ AQUAMARINE = RGB.new(0.4980392156862745, 1.0, 0.8313725490196079)
71
+ # Arctic lime: #D0FF14: (208, 255, 20)
72
+ ARCTIC_LIME = RGB.new(0.8156862745098039, 1.0, 0.0784313725490196)
73
+ # Army green: #4B5320: (75, 83, 32)
74
+ ARMY_GREEN = RGB.new(0.29411764705882354, 0.3254901960784314, 0.12549019607843137)
75
+ # Artichoke: #8F9779: (143, 151, 121)
76
+ ARTICHOKE = RGB.new(0.5607843137254902, 0.592156862745098, 0.4745098039215686)
77
+ # Arylide yellow: #E9D66B: (233, 214, 107)
78
+ ARYLIDE_YELLOW = RGB.new(0.9137254901960784, 0.8392156862745098, 0.4196078431372549)
79
+ # Ash grey: #B2BEB5: (178, 190, 181)
80
+ ASH_GREY = RGB.new(0.6980392156862745, 0.7450980392156863, 0.7098039215686275)
81
+ # Asparagus: #87A96B: (135, 169, 107)
82
+ ASPARAGUS = RGB.new(0.5294117647058824, 0.6627450980392157, 0.4196078431372549)
83
+ # Atomic tangerine: #FF9966: (255, 153, 102)
84
+ ATOMIC_TANGERINE = RGB.new(1.0, 0.6, 0.4)
85
+ # Auburn: #A52A2A: (165, 42, 42)
86
+ AUBURN = RGB.new(0.6470588235294118, 0.16470588235294117, 0.16470588235294117)
87
+ # Aureolin: #FDEE00: (253, 238, 0)
88
+ AUREOLIN = RGB.new(0.9921568627450981, 0.9333333333333333, 0.0)
89
+ # AuroMetalSaurus: #6E7F80: (110, 127, 128)
90
+ AUROMETALSAURUS = RGB.new(0.43137254901960786, 0.4980392156862745, 0.5019607843137255)
91
+ # Avocado: #568203: (86, 130, 3)
92
+ AVOCADO = RGB.new(0.33725490196078434, 0.5098039215686274, 0.011764705882352941)
93
+ # Awesome: #FF2052: (255, 32, 82)
94
+ AWESOME = RGB.new(1.0, 0.12549019607843137, 0.3215686274509804)
95
+ # Axolotl: #63775B: (99, 119, 91)
96
+ AXOLOTL = RGB.new(0.38823529411764707, 0.4666666666666667, 0.3568627450980392)
97
+ # Azure: #007FFF: (0, 127, 255)
98
+ AZURE = RGB.new(0.0, 0.4980392156862745, 1.0)
99
+ # Azure mist: #F0FFFF: (240, 255, 255)
100
+ AZURE_MIST = RGB.new(0.9411764705882353, 1.0, 1.0)
101
+ # B'dazzled blue: #2E5894: (46, 88, 149)
102
+ BDAZZLED_BLUE = RGB.new(0.1803921568627451, 0.34509803921568627, 0.5843137254901961)
103
+ # Baby blue: #89CFF0: (137, 207, 240)
104
+ BABY_BLUE = RGB.new(0.5372549019607843, 0.8117647058823529, 0.9411764705882353)
105
+ # Baby blue eyes: #A1CAF1: (161, 202, 241)
106
+ BABY_BLUE_EYES = RGB.new(0.6313725490196078, 0.792156862745098, 0.9450980392156862)
107
+ # Baby pink: #F4C2C2: (244, 194, 194)
108
+ BABY_PINK = RGB.new(0.9568627450980393, 0.7607843137254902, 0.7607843137254902)
109
+ # Baby powder: #FEFEFA: (254, 254, 250)
110
+ BABY_POWDER = RGB.new(0.996078431372549, 0.996078431372549, 0.9803921568627451)
111
+ # Baker-Miller pink: #FF91AF: (255, 145, 175)
112
+ BAKER_MILLER_PINK = RGB.new(1.0, 0.5686274509803921, 0.6862745098039216)
113
+ # Ball blue: #21ABCD: (33, 171, 205)
114
+ BALL_BLUE = RGB.new(0.12941176470588237, 0.6705882352941176, 0.803921568627451)
115
+ # Banana Mania: #FAE7B5: (250, 231, 181)
116
+ BANANA_MANIA = RGB.new(0.9803921568627451, 0.9058823529411765, 0.7098039215686275)
117
+ # Banana yellow: #FFE135: (255, 225, 53)
118
+ BANANA_YELLOW = RGB.new(1.0, 0.8823529411764706, 0.20784313725490197)
119
+ # Bangladesh green: #006A4E: (0, 106, 78)
120
+ BANGLADESH_GREEN = RGB.new(0.0, 0.41568627450980394, 0.3058823529411765)
121
+ # Barbie pink: #E0218A: (224, 33, 138)
122
+ BARBIE_PINK = RGB.new(0.8784313725490196, 0.12941176470588237, 0.5411764705882353)
123
+ # Barn red: #7C0A02: (124, 10, 2)
124
+ BARN_RED = RGB.new(0.48627450980392156, 0.0392156862745098, 0.00784313725490196)
125
+ # Battery charged blue: #1DACD6: (29, 172, 214)
126
+ BATTERY_CHARGED_BLUE = RGB.new(0.11372549019607843, 0.6745098039215687, 0.8392156862745098)
127
+ # Battleship grey: #848482: (132, 132, 130)
128
+ BATTLESHIP_GREY = RGB.new(0.5176470588235295, 0.5176470588235295, 0.5098039215686274)
129
+ # Bayside: #5FC9BF: (95, 201, 191)
130
+ BAYSIDE = RGB.new(0.37254901960784315, 0.788235294117647, 0.7490196078431373)
131
+ # Bazaar: #98777B: (152, 119, 123)
132
+ BAZAAR = RGB.new(0.596078431372549, 0.4666666666666667, 0.4823529411764706)
133
+ # Beau blue: #BCD4E6: (188, 212, 230)
134
+ BEAU_BLUE = RGB.new(0.7372549019607844, 0.8313725490196079, 0.9019607843137255)
135
+ # Begonia: #FA6E79: (250, 110, 121)
136
+ BEGONIA = RGB.new(0.9803921568627451, 0.43137254901960786, 0.4745098039215686)
137
+ # Beaver: #9F8170: (159, 129, 112)
138
+ BEAVER = RGB.new(0.6235294117647059, 0.5058823529411764, 0.4392156862745098)
139
+ # Beer: #F28E1C: (242, 142, 28)
140
+ BEER = RGB.new(0.9490196078431372, 0.5568627450980392, 0.10980392156862745)
141
+ # Beige: #F5F5DC: (245, 245, 220)
142
+ BEIGE = RGB.new(0.9607843137254902, 0.9607843137254902, 0.8627450980392157)
143
+ # Big dip o’ruby: #9C2542: (156, 37, 66)
144
+ BIG_DIP_O’RUBY = RGB.new(0.611764705882353, 0.1450980392156863, 0.25882352941176473)
145
+ # Big Foot Feet: #E88E5A: (232, 142, 90)
146
+ BIG_FOOT_FEET = RGB.new(0.9098039215686274, 0.5568627450980392, 0.35294117647058826)
147
+ # Bisque: #FFE4C4: (255, 228, 196)
148
+ BISQUE = RGB.new(1.0, 0.8941176470588236, 0.7686274509803922)
149
+ # Bistre: #3D2B1F: (61, 43, 31)
150
+ BISTRE = RGB.new(0.23921568627450981, 0.16862745098039217, 0.12156862745098039)
151
+ # Bistre brown: #967117: (150, 113, 23)
152
+ BISTRE_BROWN = RGB.new(0.5882352941176471, 0.44313725490196076, 0.09019607843137255)
153
+ # Bitter lemon: #CAE00D: (202, 224, 13)
154
+ BITTER_LEMON = RGB.new(0.792156862745098, 0.8784313725490196, 0.050980392156862744)
155
+ # Bitter lime: #BFFF00: (191, 255, 0)
156
+ BITTER_LIME = RGB.new(0.7490196078431373, 1.0, 0.0)
157
+ # Bittersweet: #FE6F5E: (254, 111, 94)
158
+ BITTERSWEET = RGB.new(0.996078431372549, 0.43529411764705883, 0.3686274509803922)
159
+ # Bittersweet shimmer: #BF4F51: (191, 79, 81)
160
+ BITTERSWEET_SHIMMER = RGB.new(0.7490196078431373, 0.30980392156862746, 0.3176470588235294)
161
+ # Black: #000000: (0, 0, 0)
30
162
  BLACK = RGB.new(0.0, 0.0, 0.0)
31
- # Blue: #0000FF
163
+ # Black bean: #3D0C02: (61, 12, 2)
164
+ BLACK_BEAN = RGB.new(0.23921568627450981, 0.047058823529411764, 0.00784313725490196)
165
+ # Black chocolate: #1B1811: (27, 24, 17)
166
+ BLACK_CHOCOLATE = RGB.new(0.10588235294117647, 0.09411764705882353, 0.06666666666666667)
167
+ # Black coffee: #3B2F2F: (59, 47, 47)
168
+ BLACK_COFFEE = RGB.new(0.23137254901960785, 0.1843137254901961, 0.1843137254901961)
169
+ # Black coral: #54626F: (84, 98, 111)
170
+ BLACK_CORAL = RGB.new(0.32941176470588235, 0.3843137254901961, 0.43529411764705883)
171
+ # Black leather jacket: #253529: (37, 53, 41)
172
+ BLACK_LEATHER_JACKET = RGB.new(0.1450980392156863, 0.20784313725490197, 0.1607843137254902)
173
+ # Black olive: #3B3C36: (59, 60, 54)
174
+ BLACK_OLIVE = RGB.new(0.23137254901960785, 0.23529411764705882, 0.21176470588235294)
175
+ # Blackberry: #8F5973: (143, 89, 115)
176
+ BLACKBERRY = RGB.new(0.5607843137254902, 0.34901960784313724, 0.45098039215686275)
177
+ # Black Shadows: #BFAFB2: (191, 175, 178)
178
+ BLACK_SHADOWS = RGB.new(0.7490196078431373, 0.6862745098039216, 0.6980392156862745)
179
+ # Blanched almond: #FFEBCD: (255, 235, 205)
180
+ BLANCHED_ALMOND = RGB.new(1.0, 0.9215686274509803, 0.803921568627451)
181
+ # Blast-off bronze: #A57164: (165, 113, 100)
182
+ BLAST_OFF_BRONZE = RGB.new(0.6470588235294118, 0.44313725490196076, 0.39215686274509803)
183
+ # Bleu de France: #318CE7: (49, 140, 231)
184
+ BLEU_DE_FRANCE = RGB.new(0.19215686274509805, 0.5490196078431373, 0.9058823529411765)
185
+ # Blizzard blue: #ACE5EE: (172, 229, 238)
186
+ BLIZZARD_BLUE = RGB.new(0.6745098039215687, 0.8980392156862745, 0.9333333333333333)
187
+ # Blond: #FAF0BE: (250, 240, 190)
188
+ BLOND = RGB.new(0.9803921568627451, 0.9411764705882353, 0.7450980392156863)
189
+ # Blood: #8A0303: (138, 3, 3)
190
+ BLOOD = RGB.new(0.5411764705882353, 0.011764705882352941, 0.011764705882352941)
191
+ # Blood orange: #D1001C: (210, 0, 27)
192
+ BLOOD_ORANGE = RGB.new(0.8235294117647058, 0.0, 0.10588235294117647)
193
+ # Blood red: #660000: (102, 0, 0)
194
+ BLOOD_RED = RGB.new(0.4, 0.0, 0.0)
195
+ # Blood (Animal): #A41313: (164, 19, 19)
196
+ BLOOD_ANIMAL = RGB.new(0.6431372549019608, 0.07450980392156863, 0.07450980392156863)
197
+ # Blood (organ): #630F0F: (99, 15, 15)
198
+ BLOOD_ORGAN = RGB.new(0.38823529411764707, 0.058823529411764705, 0.058823529411764705)
199
+ # Blue: #0000FF: (0, 0, 255)
32
200
  BLUE = RGB.new(0.0, 0.0, 1.0)
33
- # Bondi Blue: #0095B6
34
- BONDI_BLUE = RGB.new(0.0, 0.584313725490196, 0.713725490196078)
35
- # Bright green: #66FF00
201
+ # Blue (Crayola): #1F75FE: (31, 117, 254)
202
+ BLUE_CRAYOLA = RGB.new(0.12156862745098039, 0.4588235294117647, 0.996078431372549)
203
+ # Blue (Munsell): #0093AF: (0, 147, 175)
204
+ BLUE_MUNSELL = RGB.new(0.0, 0.5764705882352941, 0.6862745098039216)
205
+ # Blue (NCS): #0087BD: (0, 135, 189)
206
+ BLUE_NCS = RGB.new(0.0, 0.5294117647058824, 0.7411764705882353)
207
+ # Blue (Pantone): #0018A8: (0, 24, 168)
208
+ BLUE_PANTONE = RGB.new(0.0, 0.09411764705882353, 0.6588235294117647)
209
+ # Blue (pigment): #333399: (51, 51, 153)
210
+ BLUE_PIGMENT = RGB.new(0.2, 0.2, 0.6)
211
+ # Blue (RYB): #0247FE: (2, 71, 254)
212
+ BLUE_RYB = RGB.new(0.00784313725490196, 0.2784313725490196, 0.996078431372549)
213
+ # Blue bell: #A2A2D0: (162, 162, 208)
214
+ BLUE_BELL = RGB.new(0.6352941176470588, 0.6352941176470588, 0.8156862745098039)
215
+ # Blue bolt: #00B9FB: (0, 185, 251)
216
+ BLUE_BOLT = RGB.new(0.0, 0.7254901960784313, 0.984313725490196)
217
+ # Blue cola: #0088DC: (0, 136, 220)
218
+ BLUE_COLA = RGB.new(0.0, 0.5333333333333333, 0.8627450980392157)
219
+ # Blue-gray: #6699CC: (102, 153, 204)
220
+ BLUE_GRAY = RGB.new(0.4, 0.6, 0.8)
221
+ # Blue-green: #0D98BA: (13, 152, 186)
222
+ BLUE_GREEN = RGB.new(0.050980392156862744, 0.596078431372549, 0.7294117647058823)
223
+ # Blue-green (color wheel): #064E40: (6, 78, 64)
224
+ BLUE_GREEN_COLOR_WHEEL = RGB.new(0.023529411764705882, 0.3058823529411765, 0.25098039215686274)
225
+ # Blue jeans: #5DADEC: (93, 173, 236)
226
+ BLUE_JEANS = RGB.new(0.36470588235294116, 0.6784313725490196, 0.9254901960784314)
227
+ # Blue lagoon: #ACE5EE: (172, 229, 238)
228
+ BLUE_LAGOON = RGB.new(0.6745098039215687, 0.8980392156862745, 0.9333333333333333)
229
+ # Blue-magenta violet: #553592: (85, 53, 146)
230
+ BLUE_MAGENTA_VIOLET = RGB.new(0.3333333333333333, 0.20784313725490197, 0.5725490196078431)
231
+ # Blue raspberry: #0CBFE9: (12, 191, 233)
232
+ BLUE_RASPBERRY = RGB.new(0.047058823529411764, 0.7490196078431373, 0.9137254901960784)
233
+ # Blue sapphire: #126180: (18, 97, 128)
234
+ BLUE_SAPPHIRE = RGB.new(0.07058823529411765, 0.3803921568627451, 0.5019607843137255)
235
+ # Blue-violet: #8A2BE2: (138, 43, 226)
236
+ BLUE_VIOLET = RGB.new(0.5411764705882353, 0.16862745098039217, 0.8862745098039215)
237
+ # Blue-violet (Crayola): #7366BD: (115, 102, 189)
238
+ BLUE_VIOLET_CRAYOLA = RGB.new(0.45098039215686275, 0.4, 0.7411764705882353)
239
+ # Blue-violet (color wheel): #4D1A7F: (77, 26, 127)
240
+ BLUE_VIOLET_COLOR_WHEEL = RGB.new(0.30196078431372547, 0.10196078431372549, 0.4980392156862745)
241
+ # Blue yonder: #5072A7: (80, 114, 167)
242
+ BLUE_YONDER = RGB.new(0.3137254901960784, 0.4470588235294118, 0.6549019607843137)
243
+ # Blueberry: #4F86F7: (79, 134, 247)
244
+ BLUEBERRY = RGB.new(0.30980392156862746, 0.5254901960784314, 0.9686274509803922)
245
+ # Bluebonnet: #1C1CF0: (28, 28, 240)
246
+ BLUEBONNET = RGB.new(0.10980392156862745, 0.10980392156862745, 0.9411764705882353)
247
+ # Blush: #DE5D83: (222, 93, 131)
248
+ BLUSH = RGB.new(0.8705882352941177, 0.36470588235294116, 0.5137254901960784)
249
+ # Bole: #79443B: (121, 68, 59)
250
+ BOLE = RGB.new(0.4745098039215686, 0.26666666666666666, 0.23137254901960785)
251
+ # Bondi blue: #0095B6: (0, 149, 182)
252
+ BONDI_BLUE = RGB.new(0.0, 0.5843137254901961, 0.7137254901960784)
253
+ # Bone: #E3DAC9: (227, 218, 201)
254
+ BONE = RGB.new(0.8901960784313725, 0.8549019607843137, 0.788235294117647)
255
+ # Booger Buster: #DDE26A: (221, 226, 106)
256
+ BOOGER_BUSTER = RGB.new(0.8666666666666667, 0.8862745098039215, 0.41568627450980394)
257
+ # Boston University red: #CC0000: (204, 0, 0)
258
+ BOSTON_UNIVERSITY_RED = RGB.new(0.8, 0.0, 0.0)
259
+ # Bottle green: #006A4E: (0, 106, 78)
260
+ BOTTLE_GREEN = RGB.new(0.0, 0.41568627450980394, 0.3058823529411765)
261
+ # Boysenberry: #873260: (135, 50, 96)
262
+ BOYSENBERRY = RGB.new(0.5294117647058824, 0.19607843137254902, 0.3764705882352941)
263
+ # Brandeis blue: #0070FF: (0, 112, 255)
264
+ BRANDEIS_BLUE = RGB.new(0.0, 0.4392156862745098, 1.0)
265
+ # Brandy: #87413F: (135, 65, 63)
266
+ BRANDY = RGB.new(0.5294117647058824, 0.2549019607843137, 0.24705882352941178)
267
+ # Brave orange: #FF631C: (255, 99, 28)
268
+ BRAVE_ORANGE = RGB.new(1.0, 0.38823529411764707, 0.10980392156862745)
269
+ # Brick red: #CB4154: (203, 65, 84)
270
+ BRICK_RED = RGB.new(0.796078431372549, 0.2549019607843137, 0.32941176470588235)
271
+ # Bright cerulean: #1DACD6: (29, 172, 214)
272
+ BRIGHT_CERULEAN = RGB.new(0.11372549019607843, 0.6745098039215687, 0.8392156862745098)
273
+ # Bright gray: #EBECF0: (235, 236, 240)
274
+ BRIGHT_GRAY = RGB.new(0.9215686274509803, 0.9254901960784314, 0.9411764705882353)
275
+ # Bright green: #66FF00: (102, 255, 0)
36
276
  BRIGHT_GREEN = RGB.new(0.4, 1.0, 0.0)
37
- # Bright turquoise: #08E8DE
38
- BRIGHT_TURQUOISE = RGB.new(0.0313725490196078, 0.909803921568627, 0.870588235294118)
39
- # Brown: #964B00
40
- BROWN = RGB.new(0.588235294117647, 0.294117647058824, 0.0)
41
- # Buff: #F0DC82
42
- BUFF = RGB.new(0.941176470588235, 0.862745098039216, 0.509803921568627)
43
- # Burgundy: #900020
44
- BURGUNDY = RGB.new(0.501960784313725, 0.0, 0.125490196078431)
45
- # Burnt Orange: #CC5500
46
- BURNT_ORANGE = RGB.new(0.8, 0.333333333333333, 0.0)
47
- # Burnt Sienna: #E97451
48
- BURNT_SIENNA = RGB.new(0.913725490196078, 0.454901960784314, 0.317647058823529)
49
- # Burnt umber: #8A3324
50
- BURNT_UMBER = RGB.new(0.541176470588235, 0.2, 0.141176470588235)
51
- # Camouflage green: #78866B
52
- CAMOUFLAGE_GREEN = RGB.new(0.470588235294118, 0.525490196078431, 0.419607843137255)
53
- # Cardinal: #C41E3A
54
- CARDINAL = RGB.new(0.768627450980392, 0.117647058823529, 0.227450980392157)
55
- # Carmine: #960018
56
- CARMINE = RGB.new(0.588235294117647, 0.0, 0.0941176470588235)
57
- # Carnation: #F95A61
58
- CARNATION = RGB.new(0.976470588235294, 0.352941176470588, 0.380392156862745)
59
- # Carrot orange: #ED9121
60
- CARROT_ORANGE = RGB.new(0.929411764705882, 0.568627450980392, 0.129411764705882)
61
- # Celadon: #ACE1AF
62
- CELADON = RGB.new(0.674509803921569, 0.882352941176471, 0.686274509803922)
63
- # Cerise: #DE3163
64
- CERISE = RGB.new(0.870588235294118, 0.192156862745098, 0.388235294117647)
65
- # Cerulean: #007BA7
66
- CERULEAN = RGB.new(0.0, 0.482352941176471, 0.654901960784314)
67
- # Cerulean blue: #2A52BE
68
- CERULEAN_BLUE = RGB.new(0.164705882352941, 0.32156862745098, 0.745098039215686)
69
- # Chartreuse: #7FFF00
70
- CHARTREUSE = RGB.new(0.498039215686275, 1.0, 0.0)
71
- # Chartreuse yellow: #DFFF00
72
- CHARTREUSE_YELLOW = RGB.new(0.874509803921569, 1.0, 0.0)
73
- # Chestnut: #CD5C5C
74
- CHESTNUT = RGB.new(0.803921568627451, 0.36078431372549, 0.36078431372549)
75
- # Chocolate: #D2691E
76
- CHOCOLATE = RGB.new(0.823529411764706, 0.411764705882353, 0.117647058823529)
77
- # Cinnamon: #7B3F00
78
- CINNAMON = RGB.new(0.482352941176471, 0.247058823529412, 0.0)
79
- # Cobalt: #0047AB
80
- COBALT = RGB.new(0.0, 0.27843137254902, 0.670588235294118)
81
- # Copper: #B87333
82
- COPPER = RGB.new(0.72156862745098, 0.450980392156863, 0.2)
83
- # Copper rose: #996666
277
+ # Briquette: #E0475C: (224, 71, 92)
278
+ BRIQUETTE = RGB.new(0.8784313725490196, 0.2784313725490196, 0.3607843137254902)
279
+ # Bright lavender: #BF94E4: (191, 148, 228)
280
+ BRIGHT_LAVENDER = RGB.new(0.7490196078431373, 0.5803921568627451, 0.8941176470588236)
281
+ # Bright lilac: #D891EF: (216, 145, 239)
282
+ BRIGHT_LILAC = RGB.new(0.8470588235294118, 0.5686274509803921, 0.9372549019607843)
283
+ # Bright maroon: #C32148: (195, 33, 72)
284
+ BRIGHT_MAROON = RGB.new(0.7647058823529411, 0.12941176470588237, 0.2823529411764706)
285
+ # Bright navy blue: #1974D2: (25, 116, 210)
286
+ BRIGHT_NAVY_BLUE = RGB.new(0.09803921568627451, 0.4549019607843137, 0.8235294117647058)
287
+ # Bright pink: #FF007F: (255, 0, 127)
288
+ BRIGHT_PINK = RGB.new(1.0, 0.0, 0.4980392156862745)
289
+ # Bright turquoise: #08E8DE: (8, 232, 222)
290
+ BRIGHT_TURQUOISE = RGB.new(0.03137254901960784, 0.9098039215686274, 0.8705882352941177)
291
+ # Bright ube: #D19FE8: (209, 159, 232)
292
+ BRIGHT_UBE = RGB.new(0.8196078431372549, 0.6235294117647059, 0.9098039215686274)
293
+ # Bright yellow (Crayola): #FFAA1D: (255, 170, 29)
294
+ BRIGHT_YELLOW_CRAYOLA = RGB.new(1.0, 0.6666666666666666, 0.11372549019607843)
295
+ # Brilliant azure: #3399FF: (51, 153, 255)
296
+ BRILLIANT_AZURE = RGB.new(0.2, 0.6, 1.0)
297
+ # Brilliant lavender: #F4BBFF: (244, 187, 255)
298
+ BRILLIANT_LAVENDER = RGB.new(0.9568627450980393, 0.7333333333333333, 1.0)
299
+ # Brilliant rose: #FF55A3: (255, 85, 163)
300
+ BRILLIANT_ROSE = RGB.new(1.0, 0.3333333333333333, 0.6392156862745098)
301
+ # Brink pink: #FB607F: (251, 96, 127)
302
+ BRINK_PINK = RGB.new(0.984313725490196, 0.3764705882352941, 0.4980392156862745)
303
+ # British racing green: #004225: (0, 66, 37)
304
+ BRITISH_RACING_GREEN = RGB.new(0.0, 0.25882352941176473, 0.1450980392156863)
305
+ # Bronze: #88540B: (136, 84, 11)
306
+ BRONZE = RGB.new(0.5333333333333333, 0.32941176470588235, 0.043137254901960784)
307
+ # Bronze (metallic): #B08D57: (176, 140, 86)
308
+ BRONZE_METALLIC = RGB.new(0.6901960784313725, 0.5490196078431373, 0.33725490196078434)
309
+ # Bronze yellow: #737000: (115, 112, 0)
310
+ BRONZE_YELLOW = RGB.new(0.45098039215686275, 0.4392156862745098, 0.0)
311
+ # Brown: #993300: (153, 51, 0)
312
+ BROWN = RGB.new(0.6, 0.2, 0.0)
313
+ # Brown (Crayola): #AF593E: (175, 89, 62)
314
+ BROWN_CRAYOLA = RGB.new(0.6862745098039216, 0.34901960784313724, 0.24313725490196078)
315
+ # Brown (traditional): #964B00: (150, 75, 0)
316
+ BROWN_TRADITIONAL = RGB.new(0.5882352941176471, 0.29411764705882354, 0.0)
317
+ # Brown (web): #A52A2A: (165, 42, 42)
318
+ BROWN_WEB = RGB.new(0.6470588235294118, 0.16470588235294117, 0.16470588235294117)
319
+ # Brown-nose: #6B4423: (107, 68, 35)
320
+ BROWN_NOSE = RGB.new(0.4196078431372549, 0.26666666666666666, 0.13725490196078433)
321
+ # Brown sugar: #AF6E4D: (175, 110, 77)
322
+ BROWN_SUGAR = RGB.new(0.6862745098039216, 0.43137254901960786, 0.30196078431372547)
323
+ # Brunswick green: #1B4D3E: (27, 77, 62)
324
+ BRUNSWICK_GREEN = RGB.new(0.10588235294117647, 0.30196078431372547, 0.24313725490196078)
325
+ # Bubble gum: #FFC1CC: (255, 193, 204)
326
+ BUBBLE_GUM = RGB.new(1.0, 0.7568627450980392, 0.8)
327
+ # Bubbles: #E7FEFF: (231, 254, 255)
328
+ BUBBLES = RGB.new(0.9058823529411765, 0.996078431372549, 1.0)
329
+ # Bud green: #7BB661: (123, 182, 97)
330
+ BUD_GREEN = RGB.new(0.4823529411764706, 0.7137254901960784, 0.3803921568627451)
331
+ # Buff: #F0DC82: (240, 220, 130)
332
+ BUFF = RGB.new(0.9411764705882353, 0.8627450980392157, 0.5098039215686274)
333
+ # Bulgarian rose: #480607: (72, 6, 7)
334
+ BULGARIAN_ROSE = RGB.new(0.2823529411764706, 0.023529411764705882, 0.027450980392156862)
335
+ # Burgundy: #800020: (128, 0, 32)
336
+ BURGUNDY = RGB.new(0.5019607843137255, 0.0, 0.12549019607843137)
337
+ # Burlywood: #DEB887: (222, 184, 135)
338
+ BURLYWOOD = RGB.new(0.8705882352941177, 0.7215686274509804, 0.5294117647058824)
339
+ # Burnished brown: #A17A74: (161, 122, 116)
340
+ BURNISHED_BROWN = RGB.new(0.6313725490196078, 0.47843137254901963, 0.4549019607843137)
341
+ # Burnt orange: #CC5500: (204, 85, 0)
342
+ BURNT_ORANGE = RGB.new(0.8, 0.3333333333333333, 0.0)
343
+ # Burnt sienna: #E97451: (233, 116, 81)
344
+ BURNT_SIENNA = RGB.new(0.9137254901960784, 0.4549019607843137, 0.3176470588235294)
345
+ # Burnt umber: #8A3324: (138, 51, 36)
346
+ BURNT_UMBER = RGB.new(0.5411764705882353, 0.2, 0.1411764705882353)
347
+ # Button blue: #24A0ED: (36, 160, 237)
348
+ BUTTON_BLUE = RGB.new(0.1411764705882353, 0.6274509803921569, 0.9294117647058824)
349
+ # Byzantine: #BD33A4: (189, 51, 164)
350
+ BYZANTINE = RGB.new(0.7411764705882353, 0.2, 0.6431372549019608)
351
+ # Byzantium: #702963: (112, 41, 99)
352
+ BYZANTIUM = RGB.new(0.4392156862745098, 0.1607843137254902, 0.38823529411764707)
353
+ # Cadet: #536872: (83, 104, 114)
354
+ CADET = RGB.new(0.3254901960784314, 0.40784313725490196, 0.4470588235294118)
355
+ # Cadet blue: #5F9EA0: (95, 158, 160)
356
+ CADET_BLUE = RGB.new(0.37254901960784315, 0.6196078431372549, 0.6274509803921569)
357
+ # Cadet blue (Crayola): #A9B2C3: (169, 178, 195)
358
+ CADET_BLUE_CRAYOLA = RGB.new(0.6627450980392157, 0.6980392156862745, 0.7647058823529411)
359
+ # Cadet grey: #91A3B0: (145, 163, 176)
360
+ CADET_GREY = RGB.new(0.5686274509803921, 0.6392156862745098, 0.6901960784313725)
361
+ # Cadmium blue: #0A1195: (10, 17, 146)
362
+ CADMIUM_BLUE = RGB.new(0.0392156862745098, 0.06666666666666667, 0.5725490196078431)
363
+ # Cadmium green: #006B3C: (0, 107, 60)
364
+ CADMIUM_GREEN = RGB.new(0.0, 0.4196078431372549, 0.23529411764705882)
365
+ # Cadmium orange: #ED872D: (237, 135, 45)
366
+ CADMIUM_ORANGE = RGB.new(0.9294117647058824, 0.5294117647058824, 0.17647058823529413)
367
+ # Cadmium purple: #B60C26: (182, 12, 38)
368
+ CADMIUM_PURPLE = RGB.new(0.7137254901960784, 0.047058823529411764, 0.14901960784313725)
369
+ # Cadmium red: #E30022: (227, 0, 34)
370
+ CADMIUM_RED = RGB.new(0.8901960784313725, 0.0, 0.13333333333333333)
371
+ # Cadmium yellow: #FFF600: (255, 246, 0)
372
+ CADMIUM_YELLOW = RGB.new(1.0, 0.9647058823529412, 0.0)
373
+ # Cadmium violet: #7F3E98: (127, 62, 152)
374
+ CADMIUM_VIOLET = RGB.new(0.4980392156862745, 0.24313725490196078, 0.596078431372549)
375
+ # Café au lait: #A67B5B: (166, 123, 91)
376
+ CAFÉ_AU_LAIT = RGB.new(0.6509803921568628, 0.4823529411764706, 0.3568627450980392)
377
+ # Café noir: #4B3621: (75, 54, 33)
378
+ CAFÉ_NOIR = RGB.new(0.29411764705882354, 0.21176470588235294, 0.12941176470588237)
379
+ # Cal Poly Pomona green: #1E4D2B: (30, 77, 43)
380
+ CAL_POLY_POMONA_GREEN = RGB.new(0.11764705882352941, 0.30196078431372547, 0.16862745098039217)
381
+ # Calamansi: #FCFFA4: (252, 255, 164)
382
+ CALAMANSI = RGB.new(0.9882352941176471, 1.0, 0.6431372549019608)
383
+ # Cambridge blue: #A3C1AD: (163, 193, 173)
384
+ CAMBRIDGE_BLUE = RGB.new(0.6392156862745098, 0.7568627450980392, 0.6784313725490196)
385
+ # Camel: #C19A6B: (193, 154, 107)
386
+ CAMEL = RGB.new(0.7568627450980392, 0.6039215686274509, 0.4196078431372549)
387
+ # Cameo pink: #EFBBCC: (239, 187, 204)
388
+ CAMEO_PINK = RGB.new(0.9372549019607843, 0.7333333333333333, 0.8)
389
+ # Camouflage green: #78866B: (120, 134, 107)
390
+ CAMOUFLAGE_GREEN = RGB.new(0.47058823529411764, 0.5254901960784314, 0.4196078431372549)
391
+ # Canary: #FFFF99: (255, 255, 153)
392
+ CANARY = RGB.new(1.0, 1.0, 0.6)
393
+ # Canary yellow: #FFEF00: (255, 239, 0)
394
+ CANARY_YELLOW = RGB.new(1.0, 0.9372549019607843, 0.0)
395
+ # Candy apple red: #FF0800: (255, 8, 0)
396
+ CANDY_APPLE_RED = RGB.new(1.0, 0.03137254901960784, 0.0)
397
+ # Candy pink: #E4717A: (228, 113, 122)
398
+ CANDY_PINK = RGB.new(0.8941176470588236, 0.44313725490196076, 0.47843137254901963)
399
+ # Capri: #00BFFF: (0, 191, 255)
400
+ CAPRI = RGB.new(0.0, 0.7490196078431373, 1.0)
401
+ # Caput mortuum: #592720: (89, 39, 32)
402
+ CAPUT_MORTUUM = RGB.new(0.34901960784313724, 0.15294117647058825, 0.12549019607843137)
403
+ # Caramel: #FFD59A: (255, 213, 154)
404
+ CARAMEL = RGB.new(1.0, 0.8352941176470589, 0.6039215686274509)
405
+ # Cardinal: #C41E3A: (196, 30, 58)
406
+ CARDINAL = RGB.new(0.7686274509803922, 0.11764705882352941, 0.22745098039215686)
407
+ # Caribbean green: #00CC99: (0, 204, 153)
408
+ CARIBBEAN_GREEN = RGB.new(0.0, 0.8, 0.6)
409
+ # Carmine: #960018: (150, 0, 24)
410
+ CARMINE = RGB.new(0.5882352941176471, 0.0, 0.09411764705882353)
411
+ # Rich Carmine: #D70040: (215, 0, 64)
412
+ RICH_CARMINE = RGB.new(0.8431372549019608, 0.0, 0.25098039215686274)
413
+ # Carmine pink: #EB4C42: (235, 76, 66)
414
+ CARMINE_PINK = RGB.new(0.9215686274509803, 0.2980392156862745, 0.25882352941176473)
415
+ # Carmine red: #FF0038: (255, 0, 56)
416
+ CARMINE_RED = RGB.new(1.0, 0.0, 0.2196078431372549)
417
+ # Carnation pink: #FFA6C9: (255, 166, 201)
418
+ CARNATION_PINK = RGB.new(1.0, 0.6509803921568628, 0.788235294117647)
419
+ # Carnelian: #B31B1B: (179, 27, 27)
420
+ CARNELIAN = RGB.new(0.7019607843137254, 0.10588235294117647, 0.10588235294117647)
421
+ # Carolina blue: #56A0D3: (86, 160, 211)
422
+ CAROLINA_BLUE = RGB.new(0.33725490196078434, 0.6274509803921569, 0.8274509803921568)
423
+ # Carrot orange: #ED9121: (237, 145, 33)
424
+ CARROT_ORANGE = RGB.new(0.9294117647058824, 0.5686274509803921, 0.12941176470588237)
425
+ # Castleton green: #00563F: (0, 86, 63)
426
+ CASTLETON_GREEN = RGB.new(0.0, 0.33725490196078434, 0.24705882352941178)
427
+ # Catalina blue: #062A78: (6, 42, 120)
428
+ CATALINA_BLUE = RGB.new(0.023529411764705882, 0.16470588235294117, 0.47058823529411764)
429
+ # Catawba: #703642: (112, 54, 66)
430
+ CATAWBA = RGB.new(0.4392156862745098, 0.21176470588235294, 0.25882352941176473)
431
+ # Cedar Chest: #C95A49: (201, 90, 73)
432
+ CEDAR_CHEST = RGB.new(0.788235294117647, 0.35294117647058826, 0.28627450980392155)
433
+ # Ceil: #92A1CF: (146, 161, 207)
434
+ CEIL = RGB.new(0.5725490196078431, 0.6313725490196078, 0.8117647058823529)
435
+ # Celadon: #ACE1AF: (172, 225, 175)
436
+ CELADON = RGB.new(0.6745098039215687, 0.8823529411764706, 0.6862745098039216)
437
+ # Celadon blue: #007BA7: (0, 123, 167)
438
+ CELADON_BLUE = RGB.new(0.0, 0.4823529411764706, 0.6549019607843137)
439
+ # Celadon green: #2F847C: (47, 132, 124)
440
+ CELADON_GREEN = RGB.new(0.1843137254901961, 0.5176470588235295, 0.48627450980392156)
441
+ # Celeste: #B2FFFF: (178, 255, 255)
442
+ CELESTE = RGB.new(0.6980392156862745, 1.0, 1.0)
443
+ # Celestial blue: #4997D0: (73, 151, 208)
444
+ CELESTIAL_BLUE = RGB.new(0.28627450980392155, 0.592156862745098, 0.8156862745098039)
445
+ # Celtic blue: #246BCE: (36, 107, 206)
446
+ CELTIC_BLUE = RGB.new(0.1411764705882353, 0.4196078431372549, 0.807843137254902)
447
+ # Cerise: #DE3163: (222, 49, 99)
448
+ CERISE = RGB.new(0.8705882352941177, 0.19215686274509805, 0.38823529411764707)
449
+ # Cerise pink: #EC3B83: (236, 59, 131)
450
+ CERISE_PINK = RGB.new(0.9254901960784314, 0.23137254901960785, 0.5137254901960784)
451
+ # Cerulean: #007BA7: (0, 123, 167)
452
+ CERULEAN = RGB.new(0.0, 0.4823529411764706, 0.6549019607843137)
453
+ # Cerulean blue: #2A52BE: (42, 82, 190)
454
+ CERULEAN_BLUE = RGB.new(0.16470588235294117, 0.3215686274509804, 0.7450980392156863)
455
+ # Cetacean blue: #001440: (0, 20, 64)
456
+ CETACEAN_BLUE = RGB.new(0.0, 0.0784313725490196, 0.25098039215686274)
457
+ # Cerulean frost: #6D9BC3: (109, 155, 195)
458
+ CERULEAN_FROST = RGB.new(0.42745098039215684, 0.6078431372549019, 0.7647058823529411)
459
+ # Cerulean (Crayola): #1DACD6: (29, 172, 214)
460
+ CERULEAN_CRAYOLA = RGB.new(0.11372549019607843, 0.6745098039215687, 0.8392156862745098)
461
+ # CG blue: #007AA5: (0, 122, 165)
462
+ CG_BLUE = RGB.new(0.0, 0.47843137254901963, 0.6470588235294118)
463
+ # CG Red: #E03C31: (224, 60, 49)
464
+ CG_RED = RGB.new(0.8784313725490196, 0.23529411764705882, 0.19215686274509805)
465
+ # Chambray: #ADBFC8: (173, 191, 200)
466
+ CHAMBRAY = RGB.new(0.6784313725490196, 0.7490196078431373, 0.7843137254901961)
467
+ # Chamoisee: #A0785A: (160, 120, 90)
468
+ CHAMOISEE = RGB.new(0.6274509803921569, 0.47058823529411764, 0.35294117647058826)
469
+ # Champagne: #F7E7CE: (247, 231, 206)
470
+ CHAMPAGNE = RGB.new(0.9686274509803922, 0.9058823529411765, 0.807843137254902)
471
+ # Champagne pink: #F1DDCF: (241, 221, 207)
472
+ CHAMPAGNE_PINK = RGB.new(0.9450980392156862, 0.8666666666666667, 0.8117647058823529)
473
+ # Charcoal: #36454F: (54, 69, 79)
474
+ CHARCOAL = RGB.new(0.21176470588235294, 0.27058823529411763, 0.30980392156862746)
475
+ # Charleston green: #232B2B: (35, 43, 43)
476
+ CHARLESTON_GREEN = RGB.new(0.13725490196078433, 0.16862745098039217, 0.16862745098039217)
477
+ # Charm: #D0748B: (208, 116, 139)
478
+ CHARM = RGB.new(0.8156862745098039, 0.4549019607843137, 0.5450980392156862)
479
+ # Charm pink: #E68FAC: (230, 143, 172)
480
+ CHARM_PINK = RGB.new(0.9019607843137255, 0.5607843137254902, 0.6745098039215687)
481
+ # Chartreuse (traditional): #DFFF00: (223, 255, 0)
482
+ CHARTREUSE_TRADITIONAL = RGB.new(0.8745098039215686, 1.0, 0.0)
483
+ # Chartreuse (web): #7FFF00: (127, 255, 0)
484
+ CHARTREUSE_WEB = RGB.new(0.4980392156862745, 1.0, 0.0)
485
+ # Cheese: #FFA600: (255, 166, 0)
486
+ CHEESE = RGB.new(1.0, 0.6509803921568628, 0.0)
487
+ # Cherry: #DE3163: (222, 49, 99)
488
+ CHERRY = RGB.new(0.8705882352941177, 0.19215686274509805, 0.38823529411764707)
489
+ # Cherry blossom pink: #FFB7C5: (255, 183, 197)
490
+ CHERRY_BLOSSOM_PINK = RGB.new(1.0, 0.7176470588235294, 0.7725490196078432)
491
+ # Chestnut: #954535: (149, 69, 53)
492
+ CHESTNUT = RGB.new(0.5843137254901961, 0.27058823529411763, 0.20784313725490197)
493
+ # China pink: #DE6FA1: (222, 111, 161)
494
+ CHINA_PINK = RGB.new(0.8705882352941177, 0.43529411764705883, 0.6313725490196078)
495
+ # China rose: #A8516E: (168, 81, 110)
496
+ CHINA_ROSE = RGB.new(0.6588235294117647, 0.3176470588235294, 0.43137254901960786)
497
+ # Chinese black: #141414: (20, 20, 20)
498
+ CHINESE_BLACK = RGB.new(0.0784313725490196, 0.0784313725490196, 0.0784313725490196)
499
+ # Chinese blue: #365194: (54, 81, 148)
500
+ CHINESE_BLUE = RGB.new(0.21176470588235294, 0.3176470588235294, 0.5803921568627451)
501
+ # Chinese bronze: #CD8032: (205, 128, 50)
502
+ CHINESE_BRONZE = RGB.new(0.803921568627451, 0.5019607843137255, 0.19607843137254902)
503
+ # Chinese brown: #AB381F: (170, 56, 30)
504
+ CHINESE_BROWN = RGB.new(0.6666666666666666, 0.2196078431372549, 0.11764705882352941)
505
+ # Chinese green: #D0DB61: (208, 219, 97)
506
+ CHINESE_GREEN = RGB.new(0.8156862745098039, 0.8588235294117647, 0.3803921568627451)
507
+ # Chinese gold: #CC9900: (204, 153, 0)
508
+ CHINESE_GOLD = RGB.new(0.8, 0.6, 0.0)
509
+ # Chinese orange: #F37042: (243, 112, 66)
510
+ CHINESE_ORANGE = RGB.new(0.9529411764705882, 0.4392156862745098, 0.25882352941176473)
511
+ # Chinese pink: #DE70A1: (222, 112, 161)
512
+ CHINESE_PINK = RGB.new(0.8705882352941177, 0.4392156862745098, 0.6313725490196078)
513
+ # Chinese purple: #720B98: (114, 11, 152)
514
+ CHINESE_PURPLE = RGB.new(0.4470588235294118, 0.043137254901960784, 0.596078431372549)
515
+ # Chinese red: #CD071E: (205, 7, 30)
516
+ CHINESE_RED = RGB.new(0.803921568627451, 0.027450980392156862, 0.11764705882352941)
517
+ # Chinese silver: #CCCCCC: (204, 204, 204)
518
+ CHINESE_SILVER = RGB.new(0.8, 0.8, 0.8)
519
+ # Chinese violet: #856088: (133, 96, 136)
520
+ CHINESE_VIOLET = RGB.new(0.5215686274509804, 0.3764705882352941, 0.5333333333333333)
521
+ # Chinese white: #E2E5DE: (226, 229, 222)
522
+ CHINESE_WHITE = RGB.new(0.8862745098039215, 0.8980392156862745, 0.8705882352941177)
523
+ # Chinese yellow: #FFB200: (255, 178, 0)
524
+ CHINESE_YELLOW = RGB.new(1.0, 0.6980392156862745, 0.0)
525
+ # Chlorophyll green: #4AFF00: (74, 255, 0)
526
+ CHLOROPHYLL_GREEN = RGB.new(0.2901960784313726, 1.0, 0.0)
527
+ # Chocolate brown: #3F000F: (63, 0, 15)
528
+ CHOCOLATE_BROWN = RGB.new(0.24705882352941178, 0.0, 0.058823529411764705)
529
+ # Chocolate cosmos: #58111A: (88, 17, 26)
530
+ CHOCOLATE_COSMOS = RGB.new(0.34509803921568627, 0.06666666666666667, 0.10196078431372549)
531
+ # Chocolate Kisses: #3C1421: (60, 20, 33)
532
+ CHOCOLATE_KISSES = RGB.new(0.23529411764705882, 0.0784313725490196, 0.12941176470588237)
533
+ # Chocolate (traditional): #7B3F00: (123, 63, 0)
534
+ CHOCOLATE_TRADITIONAL = RGB.new(0.4823529411764706, 0.24705882352941178, 0.0)
535
+ # Chocolate (web): #D2691E: (210, 105, 30)
536
+ CHOCOLATE_WEB = RGB.new(0.8235294117647058, 0.4117647058823529, 0.11764705882352941)
537
+ # Christmas blue: #2A8FBD: (42, 143, 189)
538
+ CHRISTMAS_BLUE = RGB.new(0.16470588235294117, 0.5607843137254902, 0.7411764705882353)
539
+ # Christmas brown: #5D2B2C: (93, 43, 44)
540
+ CHRISTMAS_BROWN = RGB.new(0.36470588235294116, 0.16862745098039217, 0.17254901960784313)
541
+ # Christmas green: #3C8D0D: (60, 141, 13)
542
+ CHRISTMAS_GREEN = RGB.new(0.23529411764705882, 0.5529411764705883, 0.050980392156862744)
543
+ # Christmas gold: #CAA906: (202, 169, 6)
544
+ CHRISTMAS_GOLD = RGB.new(0.792156862745098, 0.6627450980392157, 0.023529411764705882)
545
+ # Christmas orange: #FF6600: (255, 102, 0)
546
+ CHRISTMAS_ORANGE = RGB.new(1.0, 0.4, 0.0)
547
+ # Christmas pink: #FFCCCB: (255, 204, 203)
548
+ CHRISTMAS_PINK = RGB.new(1.0, 0.8, 0.796078431372549)
549
+ # Christmas purple: #663398: (102, 51, 152)
550
+ CHRISTMAS_PURPLE = RGB.new(0.4, 0.2, 0.596078431372549)
551
+ # Christmas red: #AA0114: (170, 1, 20)
552
+ CHRISTMAS_RED = RGB.new(0.6666666666666666, 0.00392156862745098, 0.0784313725490196)
553
+ # Christmas silver: #E1DFE0: (225, 223, 224)
554
+ CHRISTMAS_SILVER = RGB.new(0.8823529411764706, 0.8745098039215686, 0.8784313725490196)
555
+ # Christmas yellow: #FFCC00: (255, 204, 0)
556
+ CHRISTMAS_YELLOW = RGB.new(1.0, 0.8, 0.0)
557
+ # Chrome yellow: #FFA700: (255, 167, 0)
558
+ CHROME_YELLOW = RGB.new(1.0, 0.6549019607843137, 0.0)
559
+ # Cinereous: #98817B: (152, 129, 123)
560
+ CINEREOUS = RGB.new(0.596078431372549, 0.5058823529411764, 0.4823529411764706)
561
+ # Cinnabar: #E34234: (227, 66, 52)
562
+ CINNABAR = RGB.new(0.8901960784313725, 0.25882352941176473, 0.20392156862745098)
563
+ # Cinnamon: #D2691E: (210, 105, 30)
564
+ CINNAMON = RGB.new(0.8235294117647058, 0.4117647058823529, 0.11764705882352941)
565
+ # Cinnamon Satin: #CD607E: (205, 96, 126)
566
+ CINNAMON_SATIN = RGB.new(0.803921568627451, 0.3764705882352941, 0.49411764705882355)
567
+ # Citrine: #E4D00A: (228, 208, 10)
568
+ CITRINE = RGB.new(0.8941176470588236, 0.8156862745098039, 0.0392156862745098)
569
+ # Citrine Brown: #933709: (147, 55, 9)
570
+ CITRINE_BROWN = RGB.new(0.5764705882352941, 0.21568627450980393, 0.03529411764705882)
571
+ # Citron: #9FA91F: (158, 169, 31)
572
+ CITRON = RGB.new(0.6196078431372549, 0.6627450980392157, 0.12156862745098039)
573
+ # Claret: #7F1734: (127, 23, 52)
574
+ CLARET = RGB.new(0.4980392156862745, 0.09019607843137255, 0.20392156862745098)
575
+ # Classic rose: #FBCCE7: (251, 204, 231)
576
+ CLASSIC_ROSE = RGB.new(0.984313725490196, 0.8, 0.9058823529411765)
577
+ # Cobalt blue: #0047AB: (0, 71, 171)
578
+ COBALT_BLUE = RGB.new(0.0, 0.2784313725490196, 0.6705882352941176)
579
+ # Cocoa brown: #D2691E: (210, 105, 30)
580
+ COCOA_BROWN = RGB.new(0.8235294117647058, 0.4117647058823529, 0.11764705882352941)
581
+ # Coconut: #965A3E: (150, 90, 62)
582
+ COCONUT = RGB.new(0.5882352941176471, 0.35294117647058826, 0.24313725490196078)
583
+ # Coffee: #6F4E37: (111, 78, 55)
584
+ COFFEE = RGB.new(0.43529411764705883, 0.3058823529411765, 0.21568627450980393)
585
+ # Cola: #3C3024: (60, 48, 36)
586
+ COLA = RGB.new(0.23529411764705882, 0.18823529411764706, 0.1411764705882353)
587
+ # Columbia Blue: #C4D8E2: (196, 216, 226)
588
+ COLUMBIA_BLUE = RGB.new(0.7686274509803922, 0.8470588235294118, 0.8862745098039215)
589
+ # Conditioner: #FFFFCC: (255, 255, 204)
590
+ CONDITIONER = RGB.new(1.0, 1.0, 0.8)
591
+ # Congo pink: #F88379: (248, 131, 121)
592
+ CONGO_PINK = RGB.new(0.9725490196078431, 0.5137254901960784, 0.4745098039215686)
593
+ # Cool black: #002E63: (0, 46, 99)
594
+ COOL_BLACK = RGB.new(0.0, 0.1803921568627451, 0.38823529411764707)
595
+ # Cool grey: #8C92AC: (140, 146, 172)
596
+ COOL_GREY = RGB.new(0.5490196078431373, 0.5725490196078431, 0.6745098039215687)
597
+ # Cookies and cream: #EEE0B1: (238, 224, 177)
598
+ COOKIES_AND_CREAM = RGB.new(0.9333333333333333, 0.8784313725490196, 0.6941176470588235)
599
+ # Copper: #B87333: (184, 115, 51)
600
+ COPPER = RGB.new(0.7215686274509804, 0.45098039215686275, 0.2)
601
+ # Copper (Crayola): #DA8A67: (218, 138, 103)
602
+ COPPER_CRAYOLA = RGB.new(0.8549019607843137, 0.5411764705882353, 0.403921568627451)
603
+ # Copper penny: #AD6F69: (173, 111, 105)
604
+ COPPER_PENNY = RGB.new(0.6784313725490196, 0.43529411764705883, 0.4117647058823529)
605
+ # Copper red: #CB6D51: (203, 109, 81)
606
+ COPPER_RED = RGB.new(0.796078431372549, 0.42745098039215684, 0.3176470588235294)
607
+ # Copper rose: #996666: (153, 102, 102)
84
608
  COPPER_ROSE = RGB.new(0.6, 0.4, 0.4)
85
- # Coral: #FF7F50
86
- CORAL = RGB.new(1.0, 0.498039215686275, 0.313725490196078)
87
- # Coral Red: #FF4040
88
- CORAL_RED = RGB.new(1.0, 0.250980392156863, 0.250980392156863)
89
- # Corn: #FBEC5D
90
- CORN = RGB.new(0.984313725490196, 0.925490196078431, 0.364705882352941)
91
- # Cornflower blue: #6495ED
92
- CORNFLOWER_BLUE = RGB.new(0.392156862745098, 0.584313725490196, 0.929411764705882)
93
- # Cream: #FFFDD0
94
- CREAM = RGB.new(1.0, 0.992156862745098, 0.815686274509804)
95
- # Crimson: #DC143C
96
- CRIMSON = RGB.new(0.862745098039216, 0.0784313725490196, 0.235294117647059)
97
- # Cyan: #00FFFF
609
+ # Coquelicot: #FF3800: (255, 56, 0)
610
+ COQUELICOT = RGB.new(1.0, 0.2196078431372549, 0.0)
611
+ # Coral: #FF7F50: (255, 127, 80)
612
+ CORAL = RGB.new(1.0, 0.4980392156862745, 0.3137254901960784)
613
+ # Coral pink: #F88379: (248, 131, 121)
614
+ CORAL_PINK = RGB.new(0.9725490196078431, 0.5137254901960784, 0.4745098039215686)
615
+ # Coral red: #FF4040: (255, 64, 64)
616
+ CORAL_RED = RGB.new(1.0, 0.25098039215686274, 0.25098039215686274)
617
+ # Coral reef: #FD7C6E: (253, 124, 110)
618
+ CORAL_REEF = RGB.new(0.9921568627450981, 0.48627450980392156, 0.43137254901960786)
619
+ # Coral Reef (Valspar Paint Color): #F6A494: (246, 164, 148)
620
+ CORAL_REEF_VALSPAR_PAINT_COLOR = RGB.new(0.9647058823529412, 0.6431372549019608, 0.5803921568627451)
621
+ # Cordovan: #893F45: (137, 63, 69)
622
+ CORDOVAN = RGB.new(0.5372549019607843, 0.24705882352941178, 0.27058823529411763)
623
+ # Corn: #FBEC5D: (251, 236, 93)
624
+ CORN = RGB.new(0.984313725490196, 0.9254901960784314, 0.36470588235294116)
625
+ # Cornell red: #B31B1B: (179, 27, 27)
626
+ CORNELL_RED = RGB.new(0.7019607843137254, 0.10588235294117647, 0.10588235294117647)
627
+ # Cornflower blue: #6495ED: (100, 149, 237)
628
+ CORNFLOWER_BLUE = RGB.new(0.39215686274509803, 0.5843137254901961, 0.9294117647058824)
629
+ # Cornflower: #93CCEA: (1, 159, 222)
630
+ CORNFLOWER = RGB.new(0.00392156862745098, 0.6235294117647059, 0.8705882352941177)
631
+ # Cornsilk: #FFF8DC: (255, 248, 220)
632
+ CORNSILK = RGB.new(1.0, 0.9725490196078431, 0.8627450980392157)
633
+ # Cosmic cobalt: #2E2D88: (46, 45, 136)
634
+ COSMIC_COBALT = RGB.new(0.1803921568627451, 0.17647058823529413, 0.5333333333333333)
635
+ # Cosmic latte: #FFF8E7: (255, 248, 231)
636
+ COSMIC_LATTE = RGB.new(1.0, 0.9725490196078431, 0.9058823529411765)
637
+ # Coyote brown: #81613C: (129, 97, 60)
638
+ COYOTE_BROWN = RGB.new(0.5058823529411764, 0.3803921568627451, 0.23529411764705882)
639
+ # Cotton candy: #FFBCD9: (255, 188, 217)
640
+ COTTON_CANDY = RGB.new(1.0, 0.7372549019607844, 0.8509803921568627)
641
+ # Cream: #FFFDD0: (255, 253, 208)
642
+ CREAM = RGB.new(1.0, 0.9921568627450981, 0.8156862745098039)
643
+ # Crimson: #DC143C: (220, 20, 60)
644
+ CRIMSON = RGB.new(0.8627450980392157, 0.0784313725490196, 0.23529411764705882)
645
+ # Crimson glory: #BE0032: (190, 0, 50)
646
+ CRIMSON_GLORY = RGB.new(0.7450980392156863, 0.0, 0.19607843137254902)
647
+ # Crimson red: #990000: (153, 0, 0)
648
+ CRIMSON_RED = RGB.new(0.6, 0.0, 0.0)
649
+ # Cultured: #F5F5F5: (245, 245, 245)
650
+ CULTURED = RGB.new(0.9607843137254902, 0.9607843137254902, 0.9607843137254902)
651
+ # Cyan: #00FFFF: (0, 255, 255)
98
652
  CYAN = RGB.new(0.0, 1.0, 1.0)
99
- # Dark blue: #0000C8
100
- DARK_BLUE = RGB.new(0.0, 0.0, 0.545098039215686)
101
- # Denim: #1560BD
102
- DENIM = RGB.new(0.0823529411764706, 0.376470588235294, 0.741176470588235)
103
- # Dodger blue: #1E90FF
104
- DODGER_BLUE = RGB.new(0.117647058823529, 0.564705882352941, 1.0)
105
- # Emerald: #50C878
106
- EMERALD = RGB.new(0.313725490196078, 0.784313725490196, 0.470588235294118)
107
- # Eggplant: #990066
108
- EGGPLANT = RGB.new(0.6, 0.0, 0.4)
109
- # Falu red: #801818
110
- FALU_RED = RGB.new(0.501960784313725, 0.0941176470588235, 0.0941176470588235)
111
- # Fern green: #4F7942
112
- FERN_GREEN = RGB.new(0.309803921568627, 0.474509803921569, 0.258823529411765)
113
- # Flax: #EEDC82
114
- FLAX = RGB.new(0.933333333333333, 0.862745098039216, 0.509803921568627)
115
- # Forest green: #228B22
116
- FOREST_GREEN = RGB.new(0.133333333333333, 0.545098039215686, 0.133333333333333)
117
- # French Rose: #F64A8A
118
- FRENCH_ROSE = RGB.new(0.964705882352941, 0.290196078431373, 0.541176470588235)
119
- # Fuchsia: #FF00FF
653
+ # Cyan azure: #4E82B4: (78, 130, 180)
654
+ CYAN_AZURE = RGB.new(0.3058823529411765, 0.5098039215686274, 0.7058823529411765)
655
+ # Cyan-blue azure: #4682BF: (70, 130, 191)
656
+ CYAN_BLUE_AZURE = RGB.new(0.27450980392156865, 0.5098039215686274, 0.7490196078431373)
657
+ # Cyan cobalt blue: #28589C: (40, 88, 156)
658
+ CYAN_COBALT_BLUE = RGB.new(0.1568627450980392, 0.34509803921568627, 0.611764705882353)
659
+ # Cyan cornflower blue: #188BC2: (24, 139, 194)
660
+ CYAN_CORNFLOWER_BLUE = RGB.new(0.09411764705882353, 0.5450980392156862, 0.7607843137254902)
661
+ # Cyan (process): #00B7EB: (0, 183, 235)
662
+ CYAN_PROCESS = RGB.new(0.0, 0.7176470588235294, 0.9215686274509803)
663
+ # Cyber grape: #58427C: (88, 66, 124)
664
+ CYBER_GRAPE = RGB.new(0.34509803921568627, 0.25882352941176473, 0.48627450980392156)
665
+ # Cyber yellow: #FFD300: (255, 211, 0)
666
+ CYBER_YELLOW = RGB.new(1.0, 0.8274509803921568, 0.0)
667
+ # Cyclamen: #F56FA1: (245, 111, 161)
668
+ CYCLAMEN = RGB.new(0.9607843137254902, 0.43529411764705883, 0.6313725490196078)
669
+ # Daffodil: #FFFF31: (255, 255, 49)
670
+ DAFFODIL = RGB.new(1.0, 1.0, 0.19215686274509805)
671
+ # Dandelion: #F0E130: (240, 225, 48)
672
+ DANDELION = RGB.new(0.9411764705882353, 0.8823529411764706, 0.18823529411764706)
673
+ # Dandelion (Crayola): #FDDB6D: (253, 219, 109)
674
+ DANDELION_CRAYOLA = RGB.new(0.9921568627450981, 0.8588235294117647, 0.42745098039215684)
675
+ # Dark blue: #00008B: (0, 0, 139)
676
+ DARK_BLUE = RGB.new(0.0, 0.0, 0.5450980392156862)
677
+ # Dark blue-gray: #666699: (102, 102, 153)
678
+ DARK_BLUE_GRAY = RGB.new(0.4, 0.4, 0.6)
679
+ # Dark bronze: #804A00: (128, 74, 45)
680
+ DARK_BRONZE = RGB.new(0.5019607843137255, 0.2901960784313726, 0.17647058823529413)
681
+ # Dark bronze (Coin): #514100: (81, 65, 0)
682
+ DARK_BRONZE_COIN = RGB.new(0.3176470588235294, 0.2549019607843137, 0.0)
683
+ # Dark brown: #654321: (101, 67, 33)
684
+ DARK_BROWN = RGB.new(0.396078431372549, 0.2627450980392157, 0.12941176470588237)
685
+ # Dark brown-tangelo: #88654E: (136, 101, 78)
686
+ DARK_BROWN_TANGELO = RGB.new(0.5333333333333333, 0.396078431372549, 0.3058823529411765)
687
+ # Dark byzantium: #5D3954: (93, 57, 84)
688
+ DARK_BYZANTIUM = RGB.new(0.36470588235294116, 0.2235294117647059, 0.32941176470588235)
689
+ # Dark candy apple red: #A40000: (164, 0, 0)
690
+ DARK_CANDY_APPLE_RED = RGB.new(0.6431372549019608, 0.0, 0.0)
691
+ # Dark cerulean: #08457E: (8, 69, 126)
692
+ DARK_CERULEAN = RGB.new(0.03137254901960784, 0.27058823529411763, 0.49411764705882355)
693
+ # Dark charcoal: #333333: (51, 51, 51)
694
+ DARK_CHARCOAL = RGB.new(0.2, 0.2, 0.2)
695
+ # Dark chestnut: #986960: (152, 105, 96)
696
+ DARK_CHESTNUT = RGB.new(0.596078431372549, 0.4117647058823529, 0.3764705882352941)
697
+ # Dark chocolate: #490206: (73, 2, 6)
698
+ DARK_CHOCOLATE = RGB.new(0.28627450980392155, 0.00784313725490196, 0.023529411764705882)
699
+ # Dark chocolate (Hershey's): #3C1321: (60, 19, 33)
700
+ DARK_CHOCOLATE_HERSHEYS = RGB.new(0.23529411764705882, 0.07450980392156863, 0.12941176470588237)
701
+ # Dark cornflower blue: #26428B: (38, 66, 139)
702
+ DARK_CORNFLOWER_BLUE = RGB.new(0.14901960784313725, 0.25882352941176473, 0.5450980392156862)
703
+ # Dark coral: #CD5B45: (205, 91, 69)
704
+ DARK_CORAL = RGB.new(0.803921568627451, 0.3568627450980392, 0.27058823529411763)
705
+ # Dark cyan: #008B8B: (0, 139, 139)
706
+ DARK_CYAN = RGB.new(0.0, 0.5450980392156862, 0.5450980392156862)
707
+ # Dark electric blue: #536878: (83, 104, 120)
708
+ DARK_ELECTRIC_BLUE = RGB.new(0.3254901960784314, 0.40784313725490196, 0.47058823529411764)
709
+ # Dark gold: #AA6C39: (170, 108, 57)
710
+ DARK_GOLD = RGB.new(0.6666666666666666, 0.4235294117647059, 0.2235294117647059)
711
+ # Dark goldenrod: #B8860B: (184, 134, 11)
712
+ DARK_GOLDENROD = RGB.new(0.7215686274509804, 0.5254901960784314, 0.043137254901960784)
713
+ # Dark gray (X11): #A9A9A9: (169, 169, 169)
714
+ DARK_GRAY_X11 = RGB.new(0.6627450980392157, 0.6627450980392157, 0.6627450980392157)
715
+ # Dark green: #013220: (1, 50, 32)
716
+ DARK_GREEN = RGB.new(0.00392156862745098, 0.19607843137254902, 0.12549019607843137)
717
+ # Dark green (X11): #006400: (0, 100, 0)
718
+ DARK_GREEN_X11 = RGB.new(0.0, 0.39215686274509803, 0.0)
719
+ # Dark gunmetal: #1F262A: (31, 38, 42)
720
+ DARK_GUNMETAL = RGB.new(0.12156862745098039, 0.14901960784313725, 0.16470588235294117)
721
+ # Dark imperial blue: #00416A: (0, 65, 106)
722
+ DARK_IMPERIAL_BLUE = RGB.new(0.0, 0.2549019607843137, 0.41568627450980394)
723
+ # Dark jungle green: #1A2421: (26, 36, 33)
724
+ DARK_JUNGLE_GREEN = RGB.new(0.10196078431372549, 0.1411764705882353, 0.12941176470588237)
725
+ # Dark khaki: #BDB76B: (189, 183, 107)
726
+ DARK_KHAKI = RGB.new(0.7411764705882353, 0.7176470588235294, 0.4196078431372549)
727
+ # Dark lava: #483C32: (72, 60, 50)
728
+ DARK_LAVA = RGB.new(0.2823529411764706, 0.23529411764705882, 0.19607843137254902)
729
+ # Dark lavender: #734F96: (115, 79, 150)
730
+ DARK_LAVENDER = RGB.new(0.45098039215686275, 0.30980392156862746, 0.5882352941176471)
731
+ # Dark lemon lime: #8BBE1B: (139, 190, 27)
732
+ DARK_LEMON_LIME = RGB.new(0.5450980392156862, 0.7450980392156863, 0.10588235294117647)
733
+ # Dark liver: #534B4F: (83, 75, 79)
734
+ DARK_LIVER = RGB.new(0.3254901960784314, 0.29411764705882354, 0.30980392156862746)
735
+ # Dark liver (horses): #543D37: (84, 61, 55)
736
+ DARK_LIVER_HORSES = RGB.new(0.32941176470588235, 0.23921568627450981, 0.21568627450980393)
737
+ # Dark magenta: #8B008B: (139, 0, 139)
738
+ DARK_MAGENTA = RGB.new(0.5450980392156862, 0.0, 0.5450980392156862)
739
+ # Dark medium gray: #A9A9A9: (169, 169, 169)
740
+ DARK_MEDIUM_GRAY = RGB.new(0.6627450980392157, 0.6627450980392157, 0.6627450980392157)
741
+ # Dark midnight blue: #003366: (0, 51, 102)
742
+ DARK_MIDNIGHT_BLUE = RGB.new(0.0, 0.2, 0.4)
743
+ # Dark moss green: #4A5D23: (74, 93, 35)
744
+ DARK_MOSS_GREEN = RGB.new(0.2901960784313726, 0.36470588235294116, 0.13725490196078433)
745
+ # Dark olive green: #556B2F: (85, 107, 47)
746
+ DARK_OLIVE_GREEN = RGB.new(0.3333333333333333, 0.4196078431372549, 0.1843137254901961)
747
+ # Dark orange: #FF8C00: (255, 140, 0)
748
+ DARK_ORANGE = RGB.new(1.0, 0.5490196078431373, 0.0)
749
+ # Dark orchid: #9932CC: (153, 50, 204)
750
+ DARK_ORCHID = RGB.new(0.6, 0.19607843137254902, 0.8)
751
+ # Dark pastel blue: #779ECB: (119, 158, 203)
752
+ DARK_PASTEL_BLUE = RGB.new(0.4666666666666667, 0.6196078431372549, 0.796078431372549)
753
+ # Dark pastel green: #03C03C: (3, 192, 60)
754
+ DARK_PASTEL_GREEN = RGB.new(0.011764705882352941, 0.7529411764705882, 0.23529411764705882)
755
+ # Dark pastel purple: #966FD6: (150, 111, 214)
756
+ DARK_PASTEL_PURPLE = RGB.new(0.5882352941176471, 0.43529411764705883, 0.8392156862745098)
757
+ # Dark pastel red: #C23B22: (194, 59, 34)
758
+ DARK_PASTEL_RED = RGB.new(0.7607843137254902, 0.23137254901960785, 0.13333333333333333)
759
+ # Dark pink: #E75480: (231, 84, 128)
760
+ DARK_PINK = RGB.new(0.9058823529411765, 0.32941176470588235, 0.5019607843137255)
761
+ # Dark powder blue: #003399: (0, 51, 153)
762
+ DARK_POWDER_BLUE = RGB.new(0.0, 0.2, 0.6)
763
+ # Dark puce: #4F3A3C: (79, 58, 60)
764
+ DARK_PUCE = RGB.new(0.30980392156862746, 0.22745098039215686, 0.23529411764705882)
765
+ # Dark purple: #301934: (48, 25, 52)
766
+ DARK_PURPLE = RGB.new(0.18823529411764706, 0.09803921568627451, 0.20392156862745098)
767
+ # Dark raspberry: #872657: (135, 38, 87)
768
+ DARK_RASPBERRY = RGB.new(0.5294117647058824, 0.14901960784313725, 0.3411764705882353)
769
+ # Dark red: #8B0000: (139, 0, 0)
770
+ DARK_RED = RGB.new(0.5450980392156862, 0.0, 0.0)
771
+ # Dark salmon: #E9967A: (233, 150, 122)
772
+ DARK_SALMON = RGB.new(0.9137254901960784, 0.5882352941176471, 0.47843137254901963)
773
+ # Dark scarlet: #560319: (86, 3, 25)
774
+ DARK_SCARLET = RGB.new(0.33725490196078434, 0.011764705882352941, 0.09803921568627451)
775
+ # Dark sea green: #8FBC8F: (143, 188, 143)
776
+ DARK_SEA_GREEN = RGB.new(0.5607843137254902, 0.7372549019607844, 0.5607843137254902)
777
+ # Dark sienna: #3C1414: (60, 20, 20)
778
+ DARK_SIENNA = RGB.new(0.23529411764705882, 0.0784313725490196, 0.0784313725490196)
779
+ # Dark silver: #71706E: (113, 112, 110)
780
+ DARK_SILVER = RGB.new(0.44313725490196076, 0.4392156862745098, 0.43137254901960786)
781
+ # Dark sky blue: #8CBED6: (140, 190, 214)
782
+ DARK_SKY_BLUE = RGB.new(0.5490196078431373, 0.7450980392156863, 0.8392156862745098)
783
+ # Dark slate blue: #483D8B: (72, 61, 139)
784
+ DARK_SLATE_BLUE = RGB.new(0.2823529411764706, 0.23921568627450981, 0.5450980392156862)
785
+ # Dark slate gray: #2F4F4F: (47, 79, 79)
786
+ DARK_SLATE_GRAY = RGB.new(0.1843137254901961, 0.30980392156862746, 0.30980392156862746)
787
+ # Dark spring green: #177245: (23, 114, 69)
788
+ DARK_SPRING_GREEN = RGB.new(0.09019607843137255, 0.4470588235294118, 0.27058823529411763)
789
+ # Dark tan: #918151: (145, 129, 81)
790
+ DARK_TAN = RGB.new(0.5686274509803921, 0.5058823529411764, 0.3176470588235294)
791
+ # Dark tangerine: #FFA812: (255, 168, 18)
792
+ DARK_TANGERINE = RGB.new(1.0, 0.6588235294117647, 0.07058823529411765)
793
+ # Dark taupe: #483C32: (72, 60, 50)
794
+ DARK_TAUPE = RGB.new(0.2823529411764706, 0.23529411764705882, 0.19607843137254902)
795
+ # Dark terra cotta: #CC4E5C: (204, 78, 92)
796
+ DARK_TERRA_COTTA = RGB.new(0.8, 0.3058823529411765, 0.3607843137254902)
797
+ # Dark turquoise: #00CED1: (0, 206, 209)
798
+ DARK_TURQUOISE = RGB.new(0.0, 0.807843137254902, 0.8196078431372549)
799
+ # Dark vanilla: #D1BEA8: (209, 190, 168)
800
+ DARK_VANILLA = RGB.new(0.8196078431372549, 0.7450980392156863, 0.6588235294117647)
801
+ # Dark violet: #9400D3: (148, 0, 211)
802
+ DARK_VIOLET = RGB.new(0.5803921568627451, 0.0, 0.8274509803921568)
803
+ # Dark yellow: #9B870C: (155, 135, 12)
804
+ DARK_YELLOW = RGB.new(0.6078431372549019, 0.5294117647058824, 0.047058823529411764)
805
+ # Dartmouth green: #00703C: (0, 112, 60)
806
+ DARTMOUTH_GREEN = RGB.new(0.0, 0.4392156862745098, 0.23529411764705882)
807
+ # Davy's grey: #555555: (85, 85, 85)
808
+ DAVYS_GREY = RGB.new(0.3333333333333333, 0.3333333333333333, 0.3333333333333333)
809
+ # Debian red: #D70A53: (215, 10, 83)
810
+ DEBIAN_RED = RGB.new(0.8431372549019608, 0.0392156862745098, 0.3254901960784314)
811
+ # Deep amethyst: #9C8AA4: (156, 138, 164)
812
+ DEEP_AMETHYST = RGB.new(0.611764705882353, 0.5411764705882353, 0.6431372549019608)
813
+ # Deep aquamarine: #40826D: (64, 130, 109)
814
+ DEEP_AQUAMARINE = RGB.new(0.25098039215686274, 0.5098039215686274, 0.42745098039215684)
815
+ # Deep carmine: #A9203E: (169, 32, 62)
816
+ DEEP_CARMINE = RGB.new(0.6627450980392157, 0.12549019607843137, 0.24313725490196078)
817
+ # Deep carmine pink: #EF3038: (239, 48, 56)
818
+ DEEP_CARMINE_PINK = RGB.new(0.9372549019607843, 0.18823529411764706, 0.2196078431372549)
819
+ # Deep carrot orange: #E9692C: (233, 105, 44)
820
+ DEEP_CARROT_ORANGE = RGB.new(0.9137254901960784, 0.4117647058823529, 0.17254901960784313)
821
+ # Deep cerise: #DA3287: (218, 50, 135)
822
+ DEEP_CERISE = RGB.new(0.8549019607843137, 0.19607843137254902, 0.5294117647058824)
823
+ # Deep champagne: #FAD6A5: (250, 214, 165)
824
+ DEEP_CHAMPAGNE = RGB.new(0.9803921568627451, 0.8392156862745098, 0.6470588235294118)
825
+ # Deep chestnut: #B94E48: (185, 78, 72)
826
+ DEEP_CHESTNUT = RGB.new(0.7254901960784313, 0.3058823529411765, 0.2823529411764706)
827
+ # Deep coffee: #704241: (112, 66, 65)
828
+ DEEP_COFFEE = RGB.new(0.4392156862745098, 0.25882352941176473, 0.2549019607843137)
829
+ # Deep fuchsia: #C154C1: (193, 84, 193)
830
+ DEEP_FUCHSIA = RGB.new(0.7568627450980392, 0.32941176470588235, 0.7568627450980392)
831
+ # Deep Green: #056608: (5, 102, 8)
832
+ DEEP_GREEN = RGB.new(0.0196078431372549, 0.4, 0.03137254901960784)
833
+ # Deep green-cyan turquoise: #0E7C61: (14, 124, 97)
834
+ DEEP_GREEN_CYAN_TURQUOISE = RGB.new(0.054901960784313725, 0.48627450980392156, 0.3803921568627451)
835
+ # Deep jungle green: #004B49: (0, 75, 73)
836
+ DEEP_JUNGLE_GREEN = RGB.new(0.0, 0.29411764705882354, 0.28627450980392155)
837
+ # Deep koamaru: #333366: (51, 51, 102)
838
+ DEEP_KOAMARU = RGB.new(0.2, 0.2, 0.4)
839
+ # Deep lemon: #F5C71A: (245, 199, 26)
840
+ DEEP_LEMON = RGB.new(0.9607843137254902, 0.7803921568627451, 0.10196078431372549)
841
+ # Deep lilac: #9955BB: (153, 85, 187)
842
+ DEEP_LILAC = RGB.new(0.6, 0.3333333333333333, 0.7333333333333333)
843
+ # Deep magenta: #CC00CC: (204, 0, 204)
844
+ DEEP_MAGENTA = RGB.new(0.8, 0.0, 0.8)
845
+ # Deep maroon: #820000: (130, 0, 0)
846
+ DEEP_MAROON = RGB.new(0.5098039215686274, 0.0, 0.0)
847
+ # Deep mauve: #D473D4: (212, 115, 212)
848
+ DEEP_MAUVE = RGB.new(0.8313725490196079, 0.45098039215686275, 0.8313725490196079)
849
+ # Deep moss green: #355E3B: (53, 94, 59)
850
+ DEEP_MOSS_GREEN = RGB.new(0.20784313725490197, 0.3686274509803922, 0.23137254901960785)
851
+ # Deep peach: #FFCBA4: (255, 203, 164)
852
+ DEEP_PEACH = RGB.new(1.0, 0.796078431372549, 0.6431372549019608)
853
+ # Deep pink: #FF1493: (255, 20, 147)
854
+ DEEP_PINK = RGB.new(1.0, 0.0784313725490196, 0.5764705882352941)
855
+ # Deep puce: #A95C68: (169, 92, 104)
856
+ DEEP_PUCE = RGB.new(0.6627450980392157, 0.3607843137254902, 0.40784313725490196)
857
+ # Deep Red: #850101: (133, 1, 1)
858
+ DEEP_RED = RGB.new(0.5215686274509804, 0.00392156862745098, 0.00392156862745098)
859
+ # Deep ruby: #843F5B: (132, 63, 91)
860
+ DEEP_RUBY = RGB.new(0.5176470588235295, 0.24705882352941178, 0.3568627450980392)
861
+ # Deep saffron: #FF9933: (255, 153, 51)
862
+ DEEP_SAFFRON = RGB.new(1.0, 0.6, 0.2)
863
+ # Deep sky blue: #00BFFF: (0, 191, 255)
864
+ DEEP_SKY_BLUE = RGB.new(0.0, 0.7490196078431373, 1.0)
865
+ # Deep Space Sparkle: #4A646C: (74, 100, 108)
866
+ DEEP_SPACE_SPARKLE = RGB.new(0.2901960784313726, 0.39215686274509803, 0.4235294117647059)
867
+ # Deep spring bud: #556B2F: (85, 107, 47)
868
+ DEEP_SPRING_BUD = RGB.new(0.3333333333333333, 0.4196078431372549, 0.1843137254901961)
869
+ # Deep Taupe: #7E5E60: (126, 94, 96)
870
+ DEEP_TAUPE = RGB.new(0.49411764705882355, 0.3686274509803922, 0.3764705882352941)
871
+ # Deep Tuscan red: #66424D: (102, 66, 77)
872
+ DEEP_TUSCAN_RED = RGB.new(0.4, 0.25882352941176473, 0.30196078431372547)
873
+ # Deep violet: #330066: (51, 0, 102)
874
+ DEEP_VIOLET = RGB.new(0.2, 0.0, 0.4)
875
+ # Deer: #BA8759: (186, 135, 89)
876
+ DEER = RGB.new(0.7294117647058823, 0.5294117647058824, 0.34901960784313724)
877
+ # Denim: #1560BD: (21, 96, 189)
878
+ DENIM = RGB.new(0.08235294117647059, 0.3764705882352941, 0.7411764705882353)
879
+ # Denim Blue: #2243B6: (34, 67, 182)
880
+ DENIM_BLUE = RGB.new(0.13333333333333333, 0.2627450980392157, 0.7137254901960784)
881
+ # Desaturated cyan: #669999: (102, 153, 153)
882
+ DESATURATED_CYAN = RGB.new(0.4, 0.6, 0.6)
883
+ # Desert: #C19A6B: (193, 154, 107)
884
+ DESERT = RGB.new(0.7568627450980392, 0.6039215686274509, 0.4196078431372549)
885
+ # Desert sand: #EDC9AF: (237, 201, 175)
886
+ DESERT_SAND = RGB.new(0.9294117647058824, 0.788235294117647, 0.6862745098039216)
887
+ # Desire: #EA3C53: (234, 60, 83)
888
+ DESIRE = RGB.new(0.9176470588235294, 0.23529411764705882, 0.3254901960784314)
889
+ # Diamond: #B9F2FF: (185, 242, 255)
890
+ DIAMOND = RGB.new(0.7254901960784313, 0.9490196078431372, 1.0)
891
+ # Dim gray: #696969: (105, 105, 105)
892
+ DIM_GRAY = RGB.new(0.4117647058823529, 0.4117647058823529, 0.4117647058823529)
893
+ # Dingy Dungeon: #C53151: (197, 49, 81)
894
+ DINGY_DUNGEON = RGB.new(0.7725490196078432, 0.19215686274509805, 0.3176470588235294)
895
+ # Dirt: #9B7653: (155, 118, 83)
896
+ DIRT = RGB.new(0.6078431372549019, 0.4627450980392157, 0.3254901960784314)
897
+ # Dirty brown: #B5651E: (181, 101, 30)
898
+ DIRTY_BROWN = RGB.new(0.7098039215686275, 0.396078431372549, 0.11764705882352941)
899
+ # Dirty white: #E8E4C9: (232, 228, 201)
900
+ DIRTY_WHITE = RGB.new(0.9098039215686274, 0.8941176470588236, 0.788235294117647)
901
+ # Dodger blue: #1E90FF: (30, 144, 255)
902
+ DODGER_BLUE = RGB.new(0.11764705882352941, 0.5647058823529412, 1.0)
903
+ # Dodie yellow: #FEF65B: (254, 246, 91)
904
+ DODIE_YELLOW = RGB.new(0.996078431372549, 0.9647058823529412, 0.3568627450980392)
905
+ # Dogwood rose: #D71868: (215, 24, 104)
906
+ DOGWOOD_ROSE = RGB.new(0.8431372549019608, 0.09411764705882353, 0.40784313725490196)
907
+ # Dollar bill: #85BB65: (133, 187, 101)
908
+ DOLLAR_BILL = RGB.new(0.5215686274509804, 0.7333333333333333, 0.396078431372549)
909
+ # Dolphin gray: #828E84: (130, 142, 132)
910
+ DOLPHIN_GRAY = RGB.new(0.5098039215686274, 0.5568627450980392, 0.5176470588235295)
911
+ # Donkey brown: #664C28: (102, 76, 40)
912
+ DONKEY_BROWN = RGB.new(0.4, 0.2980392156862745, 0.1568627450980392)
913
+ # Drab: #967117: (150, 113, 23)
914
+ DRAB = RGB.new(0.5882352941176471, 0.44313725490196076, 0.09019607843137255)
915
+ # Duke blue: #00009C: (0, 0, 156)
916
+ DUKE_BLUE = RGB.new(0.0, 0.0, 0.611764705882353)
917
+ # Dust storm: #E5CCC9: (229, 204, 201)
918
+ DUST_STORM = RGB.new(0.8980392156862745, 0.8, 0.788235294117647)
919
+ # Dutch white: #EFDFBB: (239, 223, 187)
920
+ DUTCH_WHITE = RGB.new(0.9372549019607843, 0.8745098039215686, 0.7333333333333333)
921
+ # Earthtone: #5D3A1A: (93, 58, 26)
922
+ EARTHTONE = RGB.new(0.36470588235294116, 0.22745098039215686, 0.10196078431372549)
923
+ # Earth yellow: #E1A95F: (225, 169, 95)
924
+ EARTH_YELLOW = RGB.new(0.8823529411764706, 0.6627450980392157, 0.37254901960784315)
925
+ # Ebony: #555D50: (85, 93, 80)
926
+ EBONY = RGB.new(0.3333333333333333, 0.36470588235294116, 0.3137254901960784)
927
+ # Ecru: #C2B280: (194, 178, 128)
928
+ ECRU = RGB.new(0.7607843137254902, 0.6980392156862745, 0.5019607843137255)
929
+ # Eerie black: #1B1B1B: (27, 27, 27)
930
+ EERIE_BLACK = RGB.new(0.10588235294117647, 0.10588235294117647, 0.10588235294117647)
931
+ # Eggplant: #614051: (97, 64, 81)
932
+ EGGPLANT = RGB.new(0.3803921568627451, 0.25098039215686274, 0.3176470588235294)
933
+ # Eggshell: #F0EAD6: (240, 234, 214)
934
+ EGGSHELL = RGB.new(0.9411764705882353, 0.9176470588235294, 0.8392156862745098)
935
+ # Egyptian blue: #1034A6: (16, 52, 166)
936
+ EGYPTIAN_BLUE = RGB.new(0.06274509803921569, 0.20392156862745098, 0.6509803921568628)
937
+ # Electric blue: #7DF9FF: (125, 249, 255)
938
+ ELECTRIC_BLUE = RGB.new(0.49019607843137253, 0.9764705882352941, 1.0)
939
+ # Electric brown: #B56257: (181, 98, 87)
940
+ ELECTRIC_BROWN = RGB.new(0.7098039215686275, 0.3843137254901961, 0.3411764705882353)
941
+ # Electric crimson: #FF003F: (255, 0, 63)
942
+ ELECTRIC_CRIMSON = RGB.new(1.0, 0.0, 0.24705882352941178)
943
+ # Electric cyan: #00FFFF: (0, 255, 255)
944
+ ELECTRIC_CYAN = RGB.new(0.0, 1.0, 1.0)
945
+ # Electric green: #00FF00: (0, 255, 0)
946
+ ELECTRIC_GREEN = RGB.new(0.0, 1.0, 0.0)
947
+ # Electric indigo: #6F00FF: (111, 0, 255)
948
+ ELECTRIC_INDIGO = RGB.new(0.43529411764705883, 0.0, 1.0)
949
+ # Electric lavender: #F4BBFF: (244, 187, 255)
950
+ ELECTRIC_LAVENDER = RGB.new(0.9568627450980393, 0.7333333333333333, 1.0)
951
+ # Electric lime: #CCFF00: (204, 255, 0)
952
+ ELECTRIC_LIME = RGB.new(0.8, 1.0, 0.0)
953
+ # Electric orange: #FF3503: (255, 53, 3)
954
+ ELECTRIC_ORANGE = RGB.new(1.0, 0.20784313725490197, 0.011764705882352941)
955
+ # Electric pink: #F62681: (246, 38, 129)
956
+ ELECTRIC_PINK = RGB.new(0.9647058823529412, 0.14901960784313725, 0.5058823529411764)
957
+ # Electric purple: #BF00FF: (191, 0, 255)
958
+ ELECTRIC_PURPLE = RGB.new(0.7490196078431373, 0.0, 1.0)
959
+ # Electric red: #E60000: (230, 0, 0)
960
+ ELECTRIC_RED = RGB.new(0.9019607843137255, 0.0, 0.0)
961
+ # Electric ultramarine: #3F00FF: (63, 0, 255)
962
+ ELECTRIC_ULTRAMARINE = RGB.new(0.24705882352941178, 0.0, 1.0)
963
+ # Electric violet: #8F00FF: (143, 0, 255)
964
+ ELECTRIC_VIOLET = RGB.new(0.5607843137254902, 0.0, 1.0)
965
+ # Electric yellow: #FFFF33: (255, 255, 51)
966
+ ELECTRIC_YELLOW = RGB.new(1.0, 1.0, 0.2)
967
+ # Emerald: #50C878: (80, 200, 120)
968
+ EMERALD = RGB.new(0.3137254901960784, 0.7843137254901961, 0.47058823529411764)
969
+ # Emerald green: #046307: (4, 99, 7)
970
+ EMERALD_GREEN = RGB.new(0.01568627450980392, 0.38823529411764707, 0.027450980392156862)
971
+ # Eminence: #6C3082: (108, 48, 130)
972
+ EMINENCE = RGB.new(0.4235294117647059, 0.18823529411764706, 0.5098039215686274)
973
+ # English green: #1B4D3E: (27, 77, 62)
974
+ ENGLISH_GREEN = RGB.new(0.10588235294117647, 0.30196078431372547, 0.24313725490196078)
975
+ # English lavender: #B48395: (180, 131, 149)
976
+ ENGLISH_LAVENDER = RGB.new(0.7058823529411765, 0.5137254901960784, 0.5843137254901961)
977
+ # English red: #AB4B52: (171, 75, 82)
978
+ ENGLISH_RED = RGB.new(0.6705882352941176, 0.29411764705882354, 0.3215686274509804)
979
+ # English vermillion: #CC474B: (204, 71, 75)
980
+ ENGLISH_VERMILLION = RGB.new(0.8, 0.2784313725490196, 0.29411764705882354)
981
+ # English violet: #563C5C: (86, 60, 92)
982
+ ENGLISH_VIOLET = RGB.new(0.33725490196078434, 0.23529411764705882, 0.3607843137254902)
983
+ # Eton blue: #96C8A2: (150, 200, 162)
984
+ ETON_BLUE = RGB.new(0.5882352941176471, 0.7843137254901961, 0.6352941176470588)
985
+ # Eucalyptus: #44D7A8: (68, 215, 168)
986
+ EUCALYPTUS = RGB.new(0.26666666666666666, 0.8431372549019608, 0.6588235294117647)
987
+ # Facebook Blue: #39569C: (57, 86, 156)
988
+ FACEBOOK_BLUE = RGB.new(0.2235294117647059, 0.33725490196078434, 0.611764705882353)
989
+ # Fallow: #C19A6B: (193, 154, 107)
990
+ FALLOW = RGB.new(0.7568627450980392, 0.6039215686274509, 0.4196078431372549)
991
+ # Falu red: #801818: (128, 24, 24)
992
+ FALU_RED = RGB.new(0.5019607843137255, 0.09411764705882353, 0.09411764705882353)
993
+ # Fandango: #B53389: (181, 51, 137)
994
+ FANDANGO = RGB.new(0.7098039215686275, 0.2, 0.5372549019607843)
995
+ # Fandango pink: #DE5285: (222, 82, 133)
996
+ FANDANGO_PINK = RGB.new(0.8705882352941177, 0.3215686274509804, 0.5215686274509804)
997
+ # Fashion fuchsia: #F400A1: (244, 0, 161)
998
+ FASHION_FUCHSIA = RGB.new(0.9568627450980393, 0.0, 0.6313725490196078)
999
+ # Fawn: #E5AA70: (229, 170, 112)
1000
+ FAWN = RGB.new(0.8980392156862745, 0.6666666666666666, 0.4392156862745098)
1001
+ # Feldgrau: #4D5D53: (77, 93, 83)
1002
+ FELDGRAU = RGB.new(0.30196078431372547, 0.36470588235294116, 0.3254901960784314)
1003
+ # Feldspar: #FDD5B1: (253, 213, 177)
1004
+ FELDSPAR = RGB.new(0.9921568627450981, 0.8352941176470589, 0.6941176470588235)
1005
+ # Fern green: #4F7942: (79, 121, 66)
1006
+ FERN_GREEN = RGB.new(0.30980392156862746, 0.4745098039215686, 0.25882352941176473)
1007
+ # Ferrari red: #FF2800: (255, 40, 0)
1008
+ FERRARI_RED = RGB.new(1.0, 0.1568627450980392, 0.0)
1009
+ # Field drab: #6C541E: (108, 84, 30)
1010
+ FIELD_DRAB = RGB.new(0.4235294117647059, 0.32941176470588235, 0.11764705882352941)
1011
+ # Fiery rose: #FF5470: (255, 84, 112)
1012
+ FIERY_ROSE = RGB.new(1.0, 0.32941176470588235, 0.4392156862745098)
1013
+ # Firebrick: #B22222: (178, 34, 34)
1014
+ FIREBRICK = RGB.new(0.6980392156862745, 0.13333333333333333, 0.13333333333333333)
1015
+ # Fire engine red: #CE2029: (206, 32, 41)
1016
+ FIRE_ENGINE_RED = RGB.new(0.807843137254902, 0.12549019607843137, 0.1607843137254902)
1017
+ # Fire opal: #E95C4B: (233, 92, 75)
1018
+ FIRE_OPAL = RGB.new(0.9137254901960784, 0.3607843137254902, 0.29411764705882354)
1019
+ # Flame: #E25822: (226, 88, 34)
1020
+ FLAME = RGB.new(0.8862745098039215, 0.34509803921568627, 0.13333333333333333)
1021
+ # Flamingo pink: #FC8EAC: (252, 142, 172)
1022
+ FLAMINGO_PINK = RGB.new(0.9882352941176471, 0.5568627450980392, 0.6745098039215687)
1023
+ # Flattery: #6B4423: (107, 68, 35)
1024
+ FLATTERY = RGB.new(0.4196078431372549, 0.26666666666666666, 0.13725490196078433)
1025
+ # Flavescent: #F7E98E: (247, 233, 142)
1026
+ FLAVESCENT = RGB.new(0.9686274509803922, 0.9137254901960784, 0.5568627450980392)
1027
+ # Flax: #EEDC82: (238, 220, 130)
1028
+ FLAX = RGB.new(0.9333333333333333, 0.8627450980392157, 0.5098039215686274)
1029
+ # Flickr Blue: #216BD6: (33, 107, 214)
1030
+ FLICKR_BLUE = RGB.new(0.12941176470588237, 0.4196078431372549, 0.8392156862745098)
1031
+ # Flickr Pink: #FB0081: (251, 0, 129)
1032
+ FLICKR_PINK = RGB.new(0.984313725490196, 0.0, 0.5058823529411764)
1033
+ # Flirt: #A2006D: (162, 0, 109)
1034
+ FLIRT = RGB.new(0.6352941176470588, 0.0, 0.42745098039215684)
1035
+ # Floral white: #FFFAF0: (255, 250, 240)
1036
+ FLORAL_WHITE = RGB.new(1.0, 0.9803921568627451, 0.9411764705882353)
1037
+ # Flower girl: #F498AD: (244, 152, 173)
1038
+ FLOWER_GIRL = RGB.new(0.9568627450980393, 0.596078431372549, 0.6784313725490196)
1039
+ # Fluorescent blue: #15F4EE: (21, 244, 238)
1040
+ FLUORESCENT_BLUE = RGB.new(0.08235294117647059, 0.9568627450980393, 0.9333333333333333)
1041
+ # Fluorescent orange: #FFBF00: (255, 191, 0)
1042
+ FLUORESCENT_ORANGE = RGB.new(1.0, 0.7490196078431373, 0.0)
1043
+ # Fluorescent pink: #FF1493: (255, 20, 147)
1044
+ FLUORESCENT_PINK = RGB.new(1.0, 0.0784313725490196, 0.5764705882352941)
1045
+ # Fluorescent yellow: #CCFF00: (204, 255, 0)
1046
+ FLUORESCENT_YELLOW = RGB.new(0.8, 1.0, 0.0)
1047
+ # Folly: #FF004F: (255, 0, 79)
1048
+ FOLLY = RGB.new(1.0, 0.0, 0.30980392156862746)
1049
+ # Forest green (Crayola): #5FA777: (95, 167, 119)
1050
+ FOREST_GREEN_CRAYOLA = RGB.new(0.37254901960784315, 0.6549019607843137, 0.4666666666666667)
1051
+ # Forest green (traditional): #014421: (1, 68, 33)
1052
+ FOREST_GREEN_TRADITIONAL = RGB.new(0.00392156862745098, 0.26666666666666666, 0.12941176470588237)
1053
+ # Forest green (web): #228B22: (34, 139, 34)
1054
+ FOREST_GREEN_WEB = RGB.new(0.13333333333333333, 0.5450980392156862, 0.13333333333333333)
1055
+ # French beige: #A67B5B: (166, 123, 91)
1056
+ FRENCH_BEIGE = RGB.new(0.6509803921568628, 0.4823529411764706, 0.3568627450980392)
1057
+ # French bistre: #856D4D: (133, 109, 77)
1058
+ FRENCH_BISTRE = RGB.new(0.5215686274509804, 0.42745098039215684, 0.30196078431372547)
1059
+ # French blue: #0072BB: (0, 114, 187)
1060
+ FRENCH_BLUE = RGB.new(0.0, 0.4470588235294118, 0.7333333333333333)
1061
+ # French fuchsia: #FD3F92: (253, 63, 146)
1062
+ FRENCH_FUCHSIA = RGB.new(0.9921568627450981, 0.24705882352941178, 0.5725490196078431)
1063
+ # French lilac: #86608E: (134, 96, 142)
1064
+ FRENCH_LILAC = RGB.new(0.5254901960784314, 0.3764705882352941, 0.5568627450980392)
1065
+ # French lime: #9EFD38: (158, 253, 56)
1066
+ FRENCH_LIME = RGB.new(0.6196078431372549, 0.9921568627450981, 0.2196078431372549)
1067
+ # French mauve: #D473D4: (212, 115, 212)
1068
+ FRENCH_MAUVE = RGB.new(0.8313725490196079, 0.45098039215686275, 0.8313725490196079)
1069
+ # French Middle Red Purple: #1C0218: (28, 2, 24)
1070
+ FRENCH_MIDDLE_RED_PURPLE = RGB.new(0.10980392156862745, 0.00784313725490196, 0.09411764705882353)
1071
+ # French pink: #FD6C9E: (253, 108, 158)
1072
+ FRENCH_PINK = RGB.new(0.9921568627450981, 0.4235294117647059, 0.6196078431372549)
1073
+ # French plum: #811453: (129, 20, 83)
1074
+ FRENCH_PLUM = RGB.new(0.5058823529411764, 0.0784313725490196, 0.3254901960784314)
1075
+ # French puce: #4E1609: (78, 22, 9)
1076
+ FRENCH_PUCE = RGB.new(0.3058823529411765, 0.08627450980392157, 0.03529411764705882)
1077
+ # French raspberry: #C72C48: (199, 44, 72)
1078
+ FRENCH_RASPBERRY = RGB.new(0.7803921568627451, 0.17254901960784313, 0.2823529411764706)
1079
+ # French rose: #F64A8A: (246, 74, 138)
1080
+ FRENCH_ROSE = RGB.new(0.9647058823529412, 0.2901960784313726, 0.5411764705882353)
1081
+ # French sky blue: #77B5FE: (119, 181, 254)
1082
+ FRENCH_SKY_BLUE = RGB.new(0.4666666666666667, 0.7098039215686275, 0.996078431372549)
1083
+ # French violet: #8806CE: (136, 6, 206)
1084
+ FRENCH_VIOLET = RGB.new(0.5333333333333333, 0.023529411764705882, 0.807843137254902)
1085
+ # French wine: #AC1E44: (172, 30, 68)
1086
+ FRENCH_WINE = RGB.new(0.6745098039215687, 0.11764705882352941, 0.26666666666666666)
1087
+ # Fresh Air: #A6E7FF: (166, 231, 255)
1088
+ FRESH_AIR = RGB.new(0.6509803921568628, 0.9058823529411765, 1.0)
1089
+ # Frostbite: #E936A7: (233, 54, 167)
1090
+ FROSTBITE = RGB.new(0.9137254901960784, 0.21176470588235294, 0.6549019607843137)
1091
+ # Fuchsia: #FF00FF: (255, 0, 255)
120
1092
  FUCHSIA = RGB.new(1.0, 0.0, 1.0)
121
- # Gamboge: #E49B0F
122
- GAMBOGE = RGB.new(0.894117647058824, 0.607843137254902, 0.0588235294117647)
123
- # Gold: #FFD700
124
- GOLD = RGB.new(1.0, 0.843137254901961, 0.0)
125
- # Goldenrod: #DAA520
126
- GOLDENROD = RGB.new(0.854901960784314, 0.647058823529412, 0.125490196078431)
127
- # Gray: #808080
128
- GRAY = RGB.new(0.501960784313725, 0.501960784313725, 0.501960784313725)
129
- # Gray-asparagus: #465945
130
- GRAY_ASPARAGUS = RGB.new(0.274509803921569, 0.349019607843137, 0.270588235294118)
131
- # Green: #00FF00
132
- GREEN = RGB.new(0.0, 1.0, 0.0)
133
- # Green-yellow: #ADFF2F
134
- GREEN_YELLOW = RGB.new(0.67843137254902, 1.0, 0.184313725490196)
135
- # Harlequin: #3FFF00
136
- HARLEQUIN = RGB.new(0.247058823529412, 1.0, 0.0)
137
- # Heliotrope: #DF73FF
138
- HELIOTROPE = RGB.new(0.874509803921569, 0.450980392156863, 1.0)
139
- # Hollywood Cerise: #F400A1
140
- HOLLYWOOD_CERISE = RGB.new(0.956862745098039, 0.0, 0.631372549019608)
141
- # Hot Magenta: #FF00CC
142
- HOT_MAGENTA = RGB.new(1.0, 0.0, 0.8)
143
- # Hot Pink: #FF69B4
144
- HOT_PINK = RGB.new(1.0, 0.411764705882353, 0.705882352941177)
145
- # Indigo: #4B0082
146
- INDIGO = RGB.new(0.294117647058824, 0.0, 0.509803921568627)
147
- # International Klein Blue: #002FA7
148
- INTERNATIONAL_KLEIN_BLUE = RGB.new(0.0, 0.184313725490196, 0.654901960784314)
149
- # International orange: #FF4F00
150
- INTERNATIONAL_ORANGE = RGB.new(1.0, 0.309803921568627, 0.0)
151
- # Ivory: #FFFFF0
152
- IVORY = RGB.new(1.0, 1.0, 0.941176470588235)
153
- # Jade: #00A86B
154
- JADE = RGB.new(0.0, 0.658823529411765, 0.419607843137255)
155
- # Khaki: #C3B091
156
- KHAKI = RGB.new(0.764705882352941, 0.690196078431373, 0.568627450980392)
157
- # Khaki (X11): #F0E68C
158
- KHAKI_X11 = RGB.new(0.941176470588235, 0.901960784313726, 0.549019607843137)
159
- # Lavender: #B57EDC
160
- LAVENDER = RGB.new(0.709803921568627, 0.494117647058824, 0.862745098039216)
161
- # Lavender blue: #CCCCFF
1093
+ # Fuchsia (Crayola): #C154C1: (193, 84, 193)
1094
+ FUCHSIA_CRAYOLA = RGB.new(0.7568627450980392, 0.32941176470588235, 0.7568627450980392)
1095
+ # Fuchsia pink: #FF77FF: (255, 119, 255)
1096
+ FUCHSIA_PINK = RGB.new(1.0, 0.4666666666666667, 1.0)
1097
+ # Fuchsia purple: #CC397B: (204, 57, 123)
1098
+ FUCHSIA_PURPLE = RGB.new(0.8, 0.2235294117647059, 0.4823529411764706)
1099
+ # Fuchsia rose: #C74375: (199, 67, 117)
1100
+ FUCHSIA_ROSE = RGB.new(0.7803921568627451, 0.2627450980392157, 0.4588235294117647)
1101
+ # Fulvous: #E48400: (228, 132, 0)
1102
+ FULVOUS = RGB.new(0.8941176470588236, 0.5176470588235295, 0.0)
1103
+ # Fuzzy Wuzzy: #CC6666: (204, 102, 102)
1104
+ FUZZY_WUZZY = RGB.new(0.8, 0.4, 0.4)
1105
+ # Gainsboro: #DCDCDC: (220, 220, 220)
1106
+ GAINSBORO = RGB.new(0.8627450980392157, 0.8627450980392157, 0.8627450980392157)
1107
+ # Gamboge: #E49B0F: (228, 155, 15)
1108
+ GAMBOGE = RGB.new(0.8941176470588236, 0.6078431372549019, 0.058823529411764705)
1109
+ # Gamboge orange (brown): #996600: (152, 102, 0)
1110
+ GAMBOGE_ORANGE_BROWN = RGB.new(0.596078431372549, 0.4, 0.0)
1111
+ # Garnet: #733635: (115, 54, 53)
1112
+ GARNET = RGB.new(0.45098039215686275, 0.21176470588235294, 0.20784313725490197)
1113
+ # Gargoyle Gas: #FFDF46: (255, 223, 70)
1114
+ GARGOYLE_GAS = RGB.new(1.0, 0.8745098039215686, 0.27450980392156865)
1115
+ # Generic viridian: #007F66: (0, 127, 102)
1116
+ GENERIC_VIRIDIAN = RGB.new(0.0, 0.4980392156862745, 0.4)
1117
+ # Ghost white: #F8F8FF: (248, 248, 255)
1118
+ GHOST_WHITE = RGB.new(0.9725490196078431, 0.9725490196078431, 1.0)
1119
+ # Giant's Club: #B05C52: (176, 92, 82)
1120
+ GIANTS_CLUB = RGB.new(0.6901960784313725, 0.3607843137254902, 0.3215686274509804)
1121
+ # Giants orange: #FE5A1D: (254, 90, 29)
1122
+ GIANTS_ORANGE = RGB.new(0.996078431372549, 0.35294117647058826, 0.11372549019607843)
1123
+ # Gin: #D8E4BC: (216, 228, 188)
1124
+ GIN = RGB.new(0.8470588235294118, 0.8941176470588236, 0.7372549019607844)
1125
+ # Glaucous: #6082B6: (96, 130, 182)
1126
+ GLAUCOUS = RGB.new(0.3764705882352941, 0.5098039215686274, 0.7137254901960784)
1127
+ # Glossy grape: #AB92B3: (171, 146, 179)
1128
+ GLOSSY_GRAPE = RGB.new(0.6705882352941176, 0.5725490196078431, 0.7019607843137254)
1129
+ # GO green: #00AB66: (0, 171, 102)
1130
+ GO_GREEN = RGB.new(0.0, 0.6705882352941176, 0.4)
1131
+ # Gold: #A57C00: (165, 124, 0)
1132
+ GOLD = RGB.new(0.6470588235294118, 0.48627450980392156, 0.0)
1133
+ # Gold (metallic): #D4AF37: (212, 175, 55)
1134
+ GOLD_METALLIC = RGB.new(0.8313725490196079, 0.6862745098039216, 0.21568627450980393)
1135
+ # Gold (web) (Golden): #FFD700: (255, 215, 0)
1136
+ GOLD_WEB_GOLDEN = RGB.new(1.0, 0.8431372549019608, 0.0)
1137
+ # Gold (Crayola): #E6BE8A: (230, 190, 138)
1138
+ GOLD_CRAYOLA = RGB.new(0.9019607843137255, 0.7450980392156863, 0.5411764705882353)
1139
+ # Gold Fusion: #85754E: (133, 117, 78)
1140
+ GOLD_FUSION = RGB.new(0.5215686274509804, 0.4588235294117647, 0.3058823529411765)
1141
+ # Gold foil: #BD9B16: (189, 155, 22)
1142
+ GOLD_FOIL = RGB.new(0.7411764705882353, 0.6078431372549019, 0.08627450980392157)
1143
+ # Golden brown: #996515: (153, 101, 21)
1144
+ GOLDEN_BROWN = RGB.new(0.6, 0.396078431372549, 0.08235294117647059)
1145
+ # Golden poppy: #FCC200: (252, 194, 0)
1146
+ GOLDEN_POPPY = RGB.new(0.9882352941176471, 0.7607843137254902, 0.0)
1147
+ # Golden yellow: #FFDF00: (255, 223, 0)
1148
+ GOLDEN_YELLOW = RGB.new(1.0, 0.8745098039215686, 0.0)
1149
+ # Goldenrod: #DAA520: (218, 165, 32)
1150
+ GOLDENROD = RGB.new(0.8549019607843137, 0.6470588235294118, 0.12549019607843137)
1151
+ # Google Chrome red: #DE5246: (222, 82, 70)
1152
+ GOOGLE_CHROME_RED = RGB.new(0.8705882352941177, 0.3215686274509804, 0.27450980392156865)
1153
+ # Google Chrome blue: #4C8BF5: (76, 139, 245)
1154
+ GOOGLE_CHROME_BLUE = RGB.new(0.2980392156862745, 0.5450980392156862, 0.9607843137254902)
1155
+ # Google Chrome green: #1AA260: (26, 162, 96)
1156
+ GOOGLE_CHROME_GREEN = RGB.new(0.10196078431372549, 0.6352941176470588, 0.3764705882352941)
1157
+ # Google Chrome yellow: #FFCE44: (255, 206, 68)
1158
+ GOOGLE_CHROME_YELLOW = RGB.new(1.0, 0.807843137254902, 0.26666666666666666)
1159
+ # Granite gray: #676767: (103, 103, 103)
1160
+ GRANITE_GRAY = RGB.new(0.403921568627451, 0.403921568627451, 0.403921568627451)
1161
+ # Granny Smith apple: #A8E4A0: (168, 228, 160)
1162
+ GRANNY_SMITH_APPLE = RGB.new(0.6588235294117647, 0.8941176470588236, 0.6274509803921569)
1163
+ # Grape: #6F2DA8: (111, 45, 168)
1164
+ GRAPE = RGB.new(0.43529411764705883, 0.17647058823529413, 0.6588235294117647)
1165
+ # Gray (HTML/CSS gray): #808080: (128, 128, 128)
1166
+ GRAY_HTML_CSS_GRAY = RGB.new(0.5019607843137255, 0.5019607843137255, 0.5019607843137255)
1167
+ # Gray (X11 gray): #BEBEBE: (190, 190, 190)
1168
+ GRAY_X11_GRAY = RGB.new(0.7450980392156863, 0.7450980392156863, 0.7450980392156863)
1169
+ # Gray-asparagus: #465945: (70, 89, 69)
1170
+ GRAY_ASPARAGUS = RGB.new(0.27450980392156865, 0.34901960784313724, 0.27058823529411763)
1171
+ # Gray-blue: #8C92AC: (140, 146, 172)
1172
+ GRAY_BLUE = RGB.new(0.5490196078431373, 0.5725490196078431, 0.6745098039215687)
1173
+ # Green: #008001: (0, 128, 1)
1174
+ GREEN = RGB.new(0.0, 0.5019607843137255, 0.00392156862745098)
1175
+ # Green (Color Wheel) (X11 green): #00FF00: (0, 255, 0)
1176
+ GREEN_COLOR_WHEEL_X11_GREEN = RGB.new(0.0, 1.0, 0.0)
1177
+ # Green (Crayola): #1CAC78: (28, 172, 120)
1178
+ GREEN_CRAYOLA = RGB.new(0.10980392156862745, 0.6745098039215687, 0.47058823529411764)
1179
+ # Green (HTML/CSS color): #008000: (0, 128, 0)
1180
+ GREEN_HTML_CSS_COLOR = RGB.new(0.0, 0.5019607843137255, 0.0)
1181
+ # Green (Munsell): #00A877: (0, 168, 119)
1182
+ GREEN_MUNSELL = RGB.new(0.0, 0.6588235294117647, 0.4666666666666667)
1183
+ # Green (NCS): #009F6B: (0, 159, 107)
1184
+ GREEN_NCS = RGB.new(0.0, 0.6235294117647059, 0.4196078431372549)
1185
+ # Green (Pantone): #00AD43: (0, 173, 67)
1186
+ GREEN_PANTONE = RGB.new(0.0, 0.6784313725490196, 0.2627450980392157)
1187
+ # Green (pigment): #00A550: (0, 165, 80)
1188
+ GREEN_PIGMENT = RGB.new(0.0, 0.6470588235294118, 0.3137254901960784)
1189
+ # Green (RYB): #66B032: (102, 176, 50)
1190
+ GREEN_RYB = RGB.new(0.4, 0.6901960784313725, 0.19607843137254902)
1191
+ # Green-blue: #1164B4: (17, 100, 180)
1192
+ GREEN_BLUE = RGB.new(0.06666666666666667, 0.39215686274509803, 0.7058823529411765)
1193
+ # Green-blue (Crayola): #2887C8: (40, 135, 200)
1194
+ GREEN_BLUE_CRAYOLA = RGB.new(0.1568627450980392, 0.5294117647058824, 0.7843137254901961)
1195
+ # Green Cola: #4C721D: (76, 114, 29)
1196
+ GREEN_COLA = RGB.new(0.2980392156862745, 0.4470588235294118, 0.11372549019607843)
1197
+ # Green-cyan: #009966: (0, 153, 102)
1198
+ GREEN_CYAN = RGB.new(0.0, 0.6, 0.4)
1199
+ # Green Lizard: #A7F432: (167, 244, 50)
1200
+ GREEN_LIZARD = RGB.new(0.6549019607843137, 0.9568627450980393, 0.19607843137254902)
1201
+ # Green Sheen: #6EAEA1: (110, 174, 161)
1202
+ GREEN_SHEEN = RGB.new(0.43137254901960786, 0.6823529411764706, 0.6313725490196078)
1203
+ # Green slime: #65FF00: (101, 255, 0)
1204
+ GREEN_SLIME = RGB.new(0.396078431372549, 1.0, 0.0)
1205
+ # Green-yellow: #ADFF2F: (173, 255, 47)
1206
+ GREEN_YELLOW = RGB.new(0.6784313725490196, 1.0, 0.1843137254901961)
1207
+ # Green-yellow (Crayola): #F0E891: (240, 232, 145)
1208
+ GREEN_YELLOW_CRAYOLA = RGB.new(0.9411764705882353, 0.9098039215686274, 0.5686274509803921)
1209
+ # Grullo: #A99A86: (169, 154, 134)
1210
+ GRULLO = RGB.new(0.6627450980392157, 0.6039215686274509, 0.5254901960784314)
1211
+ # Guppie green: #00FF7F: (0, 255, 127)
1212
+ GUPPIE_GREEN = RGB.new(0.0, 1.0, 0.4980392156862745)
1213
+ # Gunmetal: #2a3439: (42, 52, 57)
1214
+ GUNMETAL = RGB.new(0.16470588235294117, 0.20392156862745098, 0.2235294117647059)
1215
+ # Guyabano: #F8F8F8: (248, 248, 248)
1216
+ GUYABANO = RGB.new(0.9725490196078431, 0.9725490196078431, 0.9725490196078431)
1217
+ # Halayà úbe: #663854: (102, 55, 84)
1218
+ HALAYÀ_ÚBE = RGB.new(0.4, 0.21568627450980393, 0.32941176470588235)
1219
+ # Halloween orange: #EB6123: (235, 97, 35)
1220
+ HALLOWEEN_ORANGE = RGB.new(0.9215686274509803, 0.3803921568627451, 0.13725490196078433)
1221
+ # Han blue: #446CCF: (68, 108, 207)
1222
+ HAN_BLUE = RGB.new(0.26666666666666666, 0.4235294117647059, 0.8117647058823529)
1223
+ # Han purple: #5218FA: (82, 24, 250)
1224
+ HAN_PURPLE = RGB.new(0.3215686274509804, 0.09411764705882353, 0.9803921568627451)
1225
+ # Hansa yellow: #E9D66B: (233, 214, 107)
1226
+ HANSA_YELLOW = RGB.new(0.9137254901960784, 0.8392156862745098, 0.4196078431372549)
1227
+ # Harlequin: #3FFF00: (63, 255, 0)
1228
+ HARLEQUIN = RGB.new(0.24705882352941178, 1.0, 0.0)
1229
+ # Harlequin green: #46CB18: (70, 203, 24)
1230
+ HARLEQUIN_GREEN = RGB.new(0.27450980392156865, 0.796078431372549, 0.09411764705882353)
1231
+ # Harmonious rose: #F29CB7: (242, 156, 183)
1232
+ HARMONIOUS_ROSE = RGB.new(0.9490196078431372, 0.611764705882353, 0.7176470588235294)
1233
+ # Harvard crimson: #C90016: (201, 0, 22)
1234
+ HARVARD_CRIMSON = RGB.new(0.788235294117647, 0.0, 0.08627450980392157)
1235
+ # Harvest gold: #DA9100: (218, 145, 0)
1236
+ HARVEST_GOLD = RGB.new(0.8549019607843137, 0.5686274509803921, 0.0)
1237
+ # Heart gold: #808000: (128, 128, 0)
1238
+ HEART_GOLD = RGB.new(0.5019607843137255, 0.5019607843137255, 0.0)
1239
+ # Heat Wave: #FF7A00: (255, 122, 0)
1240
+ HEAT_WAVE = RGB.new(1.0, 0.47843137254901963, 0.0)
1241
+ # Heidelberg red: #960018: (150, 0, 24)
1242
+ HEIDELBERG_RED = RGB.new(0.5882352941176471, 0.0, 0.09411764705882353)
1243
+ # Heliotrope: #DF73FF: (223, 115, 255)
1244
+ HELIOTROPE = RGB.new(0.8745098039215686, 0.45098039215686275, 1.0)
1245
+ # Heliotrope gray: #AA98A9: (170, 152, 168)
1246
+ HELIOTROPE_GRAY = RGB.new(0.6666666666666666, 0.596078431372549, 0.6588235294117647)
1247
+ # Heliotrope magenta: #AA00BB: (170, 0, 187)
1248
+ HELIOTROPE_MAGENTA = RGB.new(0.6666666666666666, 0.0, 0.7333333333333333)
1249
+ # Hollywood cerise: #F400A1: (244, 0, 161)
1250
+ HOLLYWOOD_CERISE = RGB.new(0.9568627450980393, 0.0, 0.6313725490196078)
1251
+ # Honeydew: #F0FFF0: (240, 255, 240)
1252
+ HONEYDEW = RGB.new(0.9411764705882353, 1.0, 0.9411764705882353)
1253
+ # Honolulu blue: #006DB0: (0, 109, 176)
1254
+ HONOLULU_BLUE = RGB.new(0.0, 0.42745098039215684, 0.6901960784313725)
1255
+ # Hooker's green: #49796B: (73, 121, 107)
1256
+ HOOKERS_GREEN = RGB.new(0.28627450980392155, 0.4745098039215686, 0.4196078431372549)
1257
+ # Hot magenta: #FF1DCE: (255, 29, 206)
1258
+ HOT_MAGENTA = RGB.new(1.0, 0.11372549019607843, 0.807843137254902)
1259
+ # Hot pink: #FF69B4: (255, 105, 180)
1260
+ HOT_PINK = RGB.new(1.0, 0.4117647058823529, 0.7058823529411765)
1261
+ # Hunter green: #355E3B: (53, 94, 59)
1262
+ HUNTER_GREEN = RGB.new(0.20784313725490197, 0.3686274509803922, 0.23137254901960785)
1263
+ # Iceberg: #71A6D2: (113, 166, 210)
1264
+ ICEBERG = RGB.new(0.44313725490196076, 0.6509803921568628, 0.8235294117647058)
1265
+ # Iced tea: #923C01: (146, 60, 1)
1266
+ ICED_TEA = RGB.new(0.5725490196078431, 0.23529411764705882, 0.00392156862745098)
1267
+ # Icterine: #FCF75E: (252, 247, 94)
1268
+ ICTERINE = RGB.new(0.9882352941176471, 0.9686274509803922, 0.3686274509803922)
1269
+ # Iguana green: #71BC78: (113, 188, 120)
1270
+ IGUANA_GREEN = RGB.new(0.44313725490196076, 0.7372549019607844, 0.47058823529411764)
1271
+ # Illuminating emerald: #319177: (49, 145, 119)
1272
+ ILLUMINATING_EMERALD = RGB.new(0.19215686274509805, 0.5686274509803921, 0.4666666666666667)
1273
+ # Imperial: #602F6B: (96, 47, 107)
1274
+ IMPERIAL = RGB.new(0.3764705882352941, 0.1843137254901961, 0.4196078431372549)
1275
+ # Imperial blue: #002395: (0, 35, 149)
1276
+ IMPERIAL_BLUE = RGB.new(0.0, 0.13725490196078433, 0.5843137254901961)
1277
+ # Imperial purple: #66023C: (102, 2, 60)
1278
+ IMPERIAL_PURPLE = RGB.new(0.4, 0.00784313725490196, 0.23529411764705882)
1279
+ # Imperial red: #ED2939: (237, 41, 57)
1280
+ IMPERIAL_RED = RGB.new(0.9294117647058824, 0.1607843137254902, 0.2235294117647059)
1281
+ # Inchworm: #B2EC5D: (178, 236, 93)
1282
+ INCHWORM = RGB.new(0.6980392156862745, 0.9254901960784314, 0.36470588235294116)
1283
+ # Independence: #4C516D: (76, 81, 109)
1284
+ INDEPENDENCE = RGB.new(0.2980392156862745, 0.3176470588235294, 0.42745098039215684)
1285
+ # India green: #138808: (19, 136, 8)
1286
+ INDIA_GREEN = RGB.new(0.07450980392156863, 0.5333333333333333, 0.03137254901960784)
1287
+ # Indian red: #CD5C5C: (205, 92, 92)
1288
+ INDIAN_RED = RGB.new(0.803921568627451, 0.3607843137254902, 0.3607843137254902)
1289
+ # Indian yellow: #E3A857: (227, 168, 87)
1290
+ INDIAN_YELLOW = RGB.new(0.8901960784313725, 0.6588235294117647, 0.3411764705882353)
1291
+ # Indigo: #4B0082: (75, 0, 130)
1292
+ INDIGO = RGB.new(0.29411764705882354, 0.0, 0.5098039215686274)
1293
+ # Indigo dye: #091F92: (9, 31, 146)
1294
+ INDIGO_DYE = RGB.new(0.03529411764705882, 0.12156862745098039, 0.5725490196078431)
1295
+ # Indigo (Crayola): #4F69C6: (79, 105, 198)
1296
+ INDIGO_CRAYOLA = RGB.new(0.30980392156862746, 0.4117647058823529, 0.7764705882352941)
1297
+ # Indigo (Rainbow): #233067: (35, 48, 103)
1298
+ INDIGO_RAINBOW = RGB.new(0.13725490196078433, 0.18823529411764706, 0.403921568627451)
1299
+ # Indigo (web): #4B0082: (75, 0, 130)
1300
+ INDIGO_WEB = RGB.new(0.29411764705882354, 0.0, 0.5098039215686274)
1301
+ # Infra red: #FF496C: (255, 73, 108)
1302
+ INFRA_RED = RGB.new(1.0, 0.28627450980392155, 0.4235294117647059)
1303
+ # Interdimensional blue: #360CCC: (54, 12, 204)
1304
+ INTERDIMENSIONAL_BLUE = RGB.new(0.21176470588235294, 0.047058823529411764, 0.8)
1305
+ # International Klein Blue: #002FA7: (0, 47, 167)
1306
+ INTERNATIONAL_KLEIN_BLUE = RGB.new(0.0, 0.1843137254901961, 0.6549019607843137)
1307
+ # International orange (aerospace): #FF4F00: (255, 79, 0)
1308
+ INTERNATIONAL_ORANGE_AEROSPACE = RGB.new(1.0, 0.30980392156862746, 0.0)
1309
+ # International orange (engineering): #BA160C: (186, 22, 12)
1310
+ INTERNATIONAL_ORANGE_ENGINEERING = RGB.new(0.7294117647058823, 0.08627450980392157, 0.047058823529411764)
1311
+ # International orange (Golden Gate Bridge): #C0362C: (192, 54, 44)
1312
+ INTERNATIONAL_ORANGE_GOLDEN_GATE_BRIDGE = RGB.new(0.7529411764705882, 0.21176470588235294, 0.17254901960784313)
1313
+ # Iris: #5A4FCF: (90, 79, 207)
1314
+ IRIS = RGB.new(0.35294117647058826, 0.30980392156862746, 0.8117647058823529)
1315
+ # Iron: #A19D94: (161, 157, 148)
1316
+ IRON = RGB.new(0.6313725490196078, 0.615686274509804, 0.5803921568627451)
1317
+ # Irresistible: #B3446C: (179, 68, 108)
1318
+ IRRESISTIBLE = RGB.new(0.7019607843137254, 0.26666666666666666, 0.4235294117647059)
1319
+ # Isabelline: #F4F0EC: (244, 240, 236)
1320
+ ISABELLINE = RGB.new(0.9568627450980393, 0.9411764705882353, 0.9254901960784314)
1321
+ # Islamic green: #009000: (0, 144, 0)
1322
+ ISLAMIC_GREEN = RGB.new(0.0, 0.5647058823529412, 0.0)
1323
+ # Italian sky blue: #B2FFFF: (178, 255, 255)
1324
+ ITALIAN_SKY_BLUE = RGB.new(0.6980392156862745, 1.0, 1.0)
1325
+ # Ivory: #FFFFF0: (255, 255, 240)
1326
+ IVORY = RGB.new(1.0, 1.0, 0.9411764705882353)
1327
+ # Jacarta: #3D325D: (61, 50, 93)
1328
+ JACARTA = RGB.new(0.23921568627450981, 0.19607843137254902, 0.36470588235294116)
1329
+ # Jacko bean: #413628: (65, 54, 40)
1330
+ JACKO_BEAN = RGB.new(0.2549019607843137, 0.21176470588235294, 0.1568627450980392)
1331
+ # Jade: #00A86B: (0, 168, 107)
1332
+ JADE = RGB.new(0.0, 0.6588235294117647, 0.4196078431372549)
1333
+ # Japanese carmine: #9D2933: (157, 41, 51)
1334
+ JAPANESE_CARMINE = RGB.new(0.615686274509804, 0.1607843137254902, 0.2)
1335
+ # Japanese indigo: #264348: (38, 67, 72)
1336
+ JAPANESE_INDIGO = RGB.new(0.14901960784313725, 0.2627450980392157, 0.2823529411764706)
1337
+ # Japanese laurel: #2F7532: (47, 117, 50)
1338
+ JAPANESE_LAUREL = RGB.new(0.1843137254901961, 0.4588235294117647, 0.19607843137254902)
1339
+ # Japanese violet: #5B3256: (91, 50, 86)
1340
+ JAPANESE_VIOLET = RGB.new(0.3568627450980392, 0.19607843137254902, 0.33725490196078434)
1341
+ # Jasmine: #F8DE7E: (248, 222, 126)
1342
+ JASMINE = RGB.new(0.9725490196078431, 0.8705882352941177, 0.49411764705882355)
1343
+ # Jasper: #D73B3E: (215, 59, 62)
1344
+ JASPER = RGB.new(0.8431372549019608, 0.23137254901960785, 0.24313725490196078)
1345
+ # Jasper orange: #DE8F4E: (223, 145, 79)
1346
+ JASPER_ORANGE = RGB.new(0.8745098039215686, 0.5686274509803921, 0.30980392156862746)
1347
+ # Jazzberry jam: #A50B5E: (165, 11, 94)
1348
+ JAZZBERRY_JAM = RGB.new(0.6470588235294118, 0.043137254901960784, 0.3686274509803922)
1349
+ # Jelly bean: #DA614E: (218, 97, 78)
1350
+ JELLY_BEAN = RGB.new(0.8549019607843137, 0.3803921568627451, 0.3058823529411765)
1351
+ # Jelly bean blue: #44798E: (68, 121, 142)
1352
+ JELLY_BEAN_BLUE = RGB.new(0.26666666666666666, 0.4745098039215686, 0.5568627450980392)
1353
+ # Jet: #343434: (52, 52, 52)
1354
+ JET = RGB.new(0.20392156862745098, 0.20392156862745098, 0.20392156862745098)
1355
+ # Jet stream: #BBD0C9: (187, 208, 201)
1356
+ JET_STREAM = RGB.new(0.7333333333333333, 0.8156862745098039, 0.788235294117647)
1357
+ # Jonquil: #F4CA16: (244, 202, 22)
1358
+ JONQUIL = RGB.new(0.9568627450980393, 0.792156862745098, 0.08627450980392157)
1359
+ # Jordy blue: #8AB9F1: (138, 185, 241)
1360
+ JORDY_BLUE = RGB.new(0.5411764705882353, 0.7254901960784313, 0.9450980392156862)
1361
+ # June bud: #BDDA57: (189, 218, 87)
1362
+ JUNE_BUD = RGB.new(0.7411764705882353, 0.8549019607843137, 0.3411764705882353)
1363
+ # Jungle green: #29AB87: (41, 171, 135)
1364
+ JUNGLE_GREEN = RGB.new(0.1607843137254902, 0.6705882352941176, 0.5294117647058824)
1365
+ # Kelly green: #4CBB17: (76, 187, 23)
1366
+ KELLY_GREEN = RGB.new(0.2980392156862745, 0.7333333333333333, 0.09019607843137255)
1367
+ # Kenyan copper: #7C1C05: (124, 28, 5)
1368
+ KENYAN_COPPER = RGB.new(0.48627450980392156, 0.10980392156862745, 0.0196078431372549)
1369
+ # Keppel: #3AB09E: (58, 176, 158)
1370
+ KEPPEL = RGB.new(0.22745098039215686, 0.6901960784313725, 0.6196078431372549)
1371
+ # Key lime: #E8F48C: (232, 244, 140)
1372
+ KEY_LIME = RGB.new(0.9098039215686274, 0.9568627450980393, 0.5490196078431373)
1373
+ # Khaki: #C3B091: (195, 176, 145)
1374
+ KHAKI = RGB.new(0.7647058823529411, 0.6901960784313725, 0.5686274509803921)
1375
+ # Khaki (X11): #F0E68C: (240, 230, 140)
1376
+ KHAKI_X11 = RGB.new(0.9411764705882353, 0.9019607843137255, 0.5490196078431373)
1377
+ # Kiwi: #8EE53F: (142, 229, 63)
1378
+ KIWI = RGB.new(0.5568627450980392, 0.8980392156862745, 0.24705882352941178)
1379
+ # Kobe: #882D17: (136, 45, 23)
1380
+ KOBE = RGB.new(0.5333333333333333, 0.17647058823529413, 0.09019607843137255)
1381
+ # Kobi: #E79FC4: (231, 159, 196)
1382
+ KOBI = RGB.new(0.9058823529411765, 0.6235294117647059, 0.7686274509803922)
1383
+ # Kobicha: #6B4423: (107, 68, 35)
1384
+ KOBICHA = RGB.new(0.4196078431372549, 0.26666666666666666, 0.13725490196078433)
1385
+ # Kombu green: #354230: (53, 66, 48)
1386
+ KOMBU_GREEN = RGB.new(0.20784313725490197, 0.25882352941176473, 0.18823529411764706)
1387
+ # KSU Purple: #512888: (79, 38, 131)
1388
+ KSU_PURPLE = RGB.new(0.30980392156862746, 0.14901960784313725, 0.5137254901960784)
1389
+ # KU Crimson: #E8000D: (232, 0, 13)
1390
+ KU_CRIMSON = RGB.new(0.9098039215686274, 0.0, 0.050980392156862744)
1391
+ # La Salle green: #087830: (8, 120, 48)
1392
+ LA_SALLE_GREEN = RGB.new(0.03137254901960784, 0.47058823529411764, 0.18823529411764706)
1393
+ # Languid lavender: #D6CADD: (214, 202, 221)
1394
+ LANGUID_LAVENDER = RGB.new(0.8392156862745098, 0.792156862745098, 0.8666666666666667)
1395
+ # Lanzones: #E0BC5B: (224, 188, 91)
1396
+ LANZONES = RGB.new(0.8784313725490196, 0.7372549019607844, 0.3568627450980392)
1397
+ # Lapis lazuli: #26619C: (38, 97, 156)
1398
+ LAPIS_LAZULI = RGB.new(0.14901960784313725, 0.3803921568627451, 0.611764705882353)
1399
+ # Laser Lemon: #FFFF66: (255, 255, 102)
1400
+ LASER_LEMON = RGB.new(1.0, 1.0, 0.4)
1401
+ # Laurel green: #A9BA9D: (169, 186, 157)
1402
+ LAUREL_GREEN = RGB.new(0.6627450980392157, 0.7294117647058823, 0.615686274509804)
1403
+ # Lava: #CF1020: (207, 16, 32)
1404
+ LAVA = RGB.new(0.8117647058823529, 0.06274509803921569, 0.12549019607843137)
1405
+ # Lavender: #B57EDC: (181, 126, 220)
1406
+ LAVENDER = RGB.new(0.7098039215686275, 0.49411764705882355, 0.8627450980392157)
1407
+ # Lavender (web): #E6E6FA: (230, 230, 250)
1408
+ LAVENDER_WEB = RGB.new(0.9019607843137255, 0.9019607843137255, 0.9803921568627451)
1409
+ # Lavender blue: #CCCCFF: (204, 204, 255)
162
1410
  LAVENDER_BLUE = RGB.new(0.8, 0.8, 1.0)
163
- # Lavender blush: #FFF0F5
164
- LAVENDER_BLUSH = RGB.new(1.0, 0.941176470588235, 0.96078431372549)
165
- # Lavender gray: #BDBBD7
166
- LAVENDER_GRAY = RGB.new(0.741176470588235, 0.733333333333333, 0.843137254901961)
167
- # Lavender pink: #FBAED2
168
- LAVENDER_PINK = RGB.new(0.984313725490196, 0.682352941176471, 0.823529411764706)
169
- # Lavender rose: #FBA0E3
170
- LAVENDER_ROSE = RGB.new(0.984313725490196, 0.627450980392157, 0.890196078431372)
171
- # Lemon: #FDE910
172
- LEMON = RGB.new(0.992156862745098, 0.913725490196078, 0.0627450980392157)
173
- # Lemon chiffon: #FFFACD
174
- LEMON_CHIFFON = RGB.new(1.0, 0.980392156862745, 0.803921568627451)
175
- # Lilac: #C8A2C8
176
- LILAC = RGB.new(0.784313725490196, 0.635294117647059, 0.784313725490196)
177
- # Lime: #BFFF00
178
- LIME = RGB.new(0.749019607843137, 1.0, 0.0)
179
- # Linen: #FAF0E6
180
- LINEN = RGB.new(0.980392156862745, 0.941176470588235, 0.901960784313726)
181
- # Magenta: #FF00FF
1411
+ # Lavender blush: #FFF0F5: (255, 240, 245)
1412
+ LAVENDER_BLUSH = RGB.new(1.0, 0.9411764705882353, 0.9607843137254902)
1413
+ # Lavender gray: #C4C3D0: (196, 195, 208)
1414
+ LAVENDER_GRAY = RGB.new(0.7686274509803922, 0.7647058823529411, 0.8156862745098039)
1415
+ # Lavender indigo: #9457EB: (148, 87, 235)
1416
+ LAVENDER_INDIGO = RGB.new(0.5803921568627451, 0.3411764705882353, 0.9215686274509803)
1417
+ # Lavender magenta: #EE82EE: (238, 130, 238)
1418
+ LAVENDER_MAGENTA = RGB.new(0.9333333333333333, 0.5098039215686274, 0.9333333333333333)
1419
+ # Lavender mist: #E6E6FA: (230, 230, 250)
1420
+ LAVENDER_MIST = RGB.new(0.9019607843137255, 0.9019607843137255, 0.9803921568627451)
1421
+ # Lavender pink: #FBAED2: (251, 174, 210)
1422
+ LAVENDER_PINK = RGB.new(0.984313725490196, 0.6823529411764706, 0.8235294117647058)
1423
+ # Lavender purple: #967BB6: (150, 123, 182)
1424
+ LAVENDER_PURPLE = RGB.new(0.5882352941176471, 0.4823529411764706, 0.7137254901960784)
1425
+ # Lavender rose: #FBA0E3: (251, 160, 227)
1426
+ LAVENDER_ROSE = RGB.new(0.984313725490196, 0.6274509803921569, 0.8901960784313725)
1427
+ # Lawn green: #7CFC00: (124, 252, 0)
1428
+ LAWN_GREEN = RGB.new(0.48627450980392156, 0.9882352941176471, 0.0)
1429
+ # Lemon: #FFF700: (255, 247, 0)
1430
+ LEMON = RGB.new(1.0, 0.9686274509803922, 0.0)
1431
+ # Lemon chiffon: #FFFACD: (255, 250, 205)
1432
+ LEMON_CHIFFON = RGB.new(1.0, 0.9803921568627451, 0.803921568627451)
1433
+ # Lemon curry: #CCA01D: (204, 160, 29)
1434
+ LEMON_CURRY = RGB.new(0.8, 0.6274509803921569, 0.11372549019607843)
1435
+ # Lemon glacier: #FDFF00: (253, 255, 0)
1436
+ LEMON_GLACIER = RGB.new(0.9921568627450981, 1.0, 0.0)
1437
+ # Lemon iced tea: #BD3000: (189, 48, 0)
1438
+ LEMON_ICED_TEA = RGB.new(0.7411764705882353, 0.18823529411764706, 0.0)
1439
+ # Lemon lime: #E3FF00: (227, 255, 0)
1440
+ LEMON_LIME = RGB.new(0.8901960784313725, 1.0, 0.0)
1441
+ # Lemon meringue: #F6EABE: (246, 234, 190)
1442
+ LEMON_MERINGUE = RGB.new(0.9647058823529412, 0.9176470588235294, 0.7450980392156863)
1443
+ # Lemon yellow: #FFF44F: (255, 244, 79)
1444
+ LEMON_YELLOW = RGB.new(1.0, 0.9568627450980393, 0.30980392156862746)
1445
+ # Lemon yellow (Crayola): #FFFF9F: (255, 255, 159)
1446
+ LEMON_YELLOW_CRAYOLA = RGB.new(1.0, 1.0, 0.6235294117647059)
1447
+ # Lenurple: #BA93D8: (186, 147, 216)
1448
+ LENURPLE = RGB.new(0.7294117647058823, 0.5764705882352941, 0.8470588235294118)
1449
+ # Liberty: #545AA7: (84, 90, 167)
1450
+ LIBERTY = RGB.new(0.32941176470588235, 0.35294117647058826, 0.6549019607843137)
1451
+ # Licorice: #1A1110: (26, 17, 16)
1452
+ LICORICE = RGB.new(0.10196078431372549, 0.06666666666666667, 0.06274509803921569)
1453
+ # Light apricot: #FDD5B1: (253, 213, 177)
1454
+ LIGHT_APRICOT = RGB.new(0.9921568627450981, 0.8352941176470589, 0.6941176470588235)
1455
+ # Light blue: #ADD8E6: (173, 216, 230)
1456
+ LIGHT_BLUE = RGB.new(0.6784313725490196, 0.8470588235294118, 0.9019607843137255)
1457
+ # Light brown: #B5651D: (181, 101, 29)
1458
+ LIGHT_BROWN = RGB.new(0.7098039215686275, 0.396078431372549, 0.11372549019607843)
1459
+ # Light carmine pink: #E66771: (230, 103, 113)
1460
+ LIGHT_CARMINE_PINK = RGB.new(0.9019607843137255, 0.403921568627451, 0.44313725490196076)
1461
+ # Light chocolate cosmos: #551F2F: (85, 31, 47)
1462
+ LIGHT_CHOCOLATE_COSMOS = RGB.new(0.3333333333333333, 0.12156862745098039, 0.1843137254901961)
1463
+ # Light cobalt blue: #88ACE0: (136, 172, 224)
1464
+ LIGHT_COBALT_BLUE = RGB.new(0.5333333333333333, 0.6745098039215687, 0.8784313725490196)
1465
+ # Light coral: #F08080: (240, 128, 128)
1466
+ LIGHT_CORAL = RGB.new(0.9411764705882353, 0.5019607843137255, 0.5019607843137255)
1467
+ # Light cornflower blue: #93CCEA: (147, 204, 234)
1468
+ LIGHT_CORNFLOWER_BLUE = RGB.new(0.5764705882352941, 0.8, 0.9176470588235294)
1469
+ # Light crimson: #F56991: (245, 105, 145)
1470
+ LIGHT_CRIMSON = RGB.new(0.9607843137254902, 0.4117647058823529, 0.5686274509803921)
1471
+ # Light cyan: #E0FFFF: (224, 255, 255)
1472
+ LIGHT_CYAN = RGB.new(0.8784313725490196, 1.0, 1.0)
1473
+ # Light deep pink: #FF5CCD: (255, 92, 205)
1474
+ LIGHT_DEEP_PINK = RGB.new(1.0, 0.3607843137254902, 0.803921568627451)
1475
+ # Light French beige: #C8AD7F: (200, 173, 127)
1476
+ LIGHT_FRENCH_BEIGE = RGB.new(0.7843137254901961, 0.6784313725490196, 0.4980392156862745)
1477
+ # Light fuchsia pink: #F984EF: (249, 132, 239)
1478
+ LIGHT_FUCHSIA_PINK = RGB.new(0.9764705882352941, 0.5176470588235295, 0.9372549019607843)
1479
+ # Light gold: #B29700: (178, 151, 0)
1480
+ LIGHT_GOLD = RGB.new(0.6980392156862745, 0.592156862745098, 0.0)
1481
+ # Light goldenrod: #FFEC8B: (255, 236, 139)
1482
+ LIGHT_GOLDENROD = RGB.new(1.0, 0.9254901960784314, 0.5450980392156862)
1483
+ # Light goldenrod yellow: #FAFAD2: (250, 250, 210)
1484
+ LIGHT_GOLDENROD_YELLOW = RGB.new(0.9803921568627451, 0.9803921568627451, 0.8235294117647058)
1485
+ # Light gray: #D3D3D3: (211, 211, 211)
1486
+ LIGHT_GRAY = RGB.new(0.8274509803921568, 0.8274509803921568, 0.8274509803921568)
1487
+ # Light grayish magenta: #CC99CC: (204, 153, 204)
1488
+ LIGHT_GRAYISH_MAGENTA = RGB.new(0.8, 0.6, 0.8)
1489
+ # Light green: #90EE90: (144, 238, 144)
1490
+ LIGHT_GREEN = RGB.new(0.5647058823529412, 0.9333333333333333, 0.5647058823529412)
1491
+ # Light hot pink: #FFB3DE: (255, 179, 222)
1492
+ LIGHT_HOT_PINK = RGB.new(1.0, 0.7019607843137254, 0.8705882352941177)
1493
+ # Light khaki: #F0E68C: (240, 230, 140)
1494
+ LIGHT_KHAKI = RGB.new(0.9411764705882353, 0.9019607843137255, 0.5490196078431373)
1495
+ # Light medium orchid: #D39BCB: (211, 155, 203)
1496
+ LIGHT_MEDIUM_ORCHID = RGB.new(0.8274509803921568, 0.6078431372549019, 0.796078431372549)
1497
+ # Light moss green: #ADDFAD: (173, 223, 173)
1498
+ LIGHT_MOSS_GREEN = RGB.new(0.6784313725490196, 0.8745098039215686, 0.6784313725490196)
1499
+ # Light mustard: #FF3333: (238, 221, 98)
1500
+ LIGHT_MUSTARD = RGB.new(0.9333333333333333, 0.8666666666666667, 0.3843137254901961)
1501
+ # Light orange: #FED8B1: (254, 216, 177)
1502
+ LIGHT_ORANGE = RGB.new(0.996078431372549, 0.8470588235294118, 0.6941176470588235)
1503
+ # Light orchid: #E6A8D7: (230, 168, 215)
1504
+ LIGHT_ORCHID = RGB.new(0.9019607843137255, 0.6588235294117647, 0.8431372549019608)
1505
+ # Light pastel purple: #B19CD9: (177, 156, 217)
1506
+ LIGHT_PASTEL_PURPLE = RGB.new(0.6941176470588235, 0.611764705882353, 0.8509803921568627)
1507
+ # Light periwinkle: #C5CBE1: (197, 203, 225)
1508
+ LIGHT_PERIWINKLE = RGB.new(0.7725490196078432, 0.796078431372549, 0.8823529411764706)
1509
+ # Light pink: #FFB6C1: (255, 182, 193)
1510
+ LIGHT_PINK = RGB.new(1.0, 0.7137254901960784, 0.7568627450980392)
1511
+ # Light red: #FF3333: (255, 51, 51)
1512
+ LIGHT_RED = RGB.new(1.0, 0.2, 0.2)
1513
+ # Light red ochre: #E97451: (233, 116, 81)
1514
+ LIGHT_RED_OCHRE = RGB.new(0.9137254901960784, 0.4549019607843137, 0.3176470588235294)
1515
+ # Light salmon: #FFA07A: (255, 160, 122)
1516
+ LIGHT_SALMON = RGB.new(1.0, 0.6274509803921569, 0.47843137254901963)
1517
+ # Light salmon pink: #FF9999: (255, 153, 153)
1518
+ LIGHT_SALMON_PINK = RGB.new(1.0, 0.6, 0.6)
1519
+ # Light sea green: #20B2AA: (32, 178, 170)
1520
+ LIGHT_SEA_GREEN = RGB.new(0.12549019607843137, 0.6980392156862745, 0.6666666666666666)
1521
+ # Light silver: #D8D8D8: (216, 216, 216)
1522
+ LIGHT_SILVER = RGB.new(0.8470588235294118, 0.8470588235294118, 0.8470588235294118)
1523
+ # Light sky blue: #87CEFA: (135, 206, 250)
1524
+ LIGHT_SKY_BLUE = RGB.new(0.5294117647058824, 0.807843137254902, 0.9803921568627451)
1525
+ # Light slate gray: #778899: (119, 136, 153)
1526
+ LIGHT_SLATE_GRAY = RGB.new(0.4666666666666667, 0.5333333333333333, 0.6)
1527
+ # Light steel blue: #B0C4DE: (176, 196, 222)
1528
+ LIGHT_STEEL_BLUE = RGB.new(0.6901960784313725, 0.7686274509803922, 0.8705882352941177)
1529
+ # Light taupe: #B38B6D: (179, 139, 109)
1530
+ LIGHT_TAUPE = RGB.new(0.7019607843137254, 0.5450980392156862, 0.42745098039215684)
1531
+ # Light Thulian pink: #E68FAC: (230, 143, 172)
1532
+ LIGHT_THULIAN_PINK = RGB.new(0.9019607843137255, 0.5607843137254902, 0.6745098039215687)
1533
+ # Light turquoise: #AFE4DE: (175, 228, 222)
1534
+ LIGHT_TURQUOISE = RGB.new(0.6862745098039216, 0.8941176470588236, 0.8705882352941177)
1535
+ # Light violet: #7A5299: (122, 82, 153)
1536
+ LIGHT_VIOLET = RGB.new(0.47843137254901963, 0.3215686274509804, 0.6)
1537
+ # Light yellow: #FFFFE0: (255, 255, 224)
1538
+ LIGHT_YELLOW = RGB.new(1.0, 1.0, 0.8784313725490196)
1539
+ # Lilac: #C8A2C8: (200, 162, 200)
1540
+ LILAC = RGB.new(0.7843137254901961, 0.6352941176470588, 0.7843137254901961)
1541
+ # Lilac Luster: #AE98AA: (174, 152, 170)
1542
+ LILAC_LUSTER = RGB.new(0.6823529411764706, 0.596078431372549, 0.6666666666666666)
1543
+ # Lime (color wheel): #BFFF00: (191, 255, 0)
1544
+ LIME_COLOR_WHEEL = RGB.new(0.7490196078431373, 1.0, 0.0)
1545
+ # Lime (web) (X11 green): #00FF00: (0, 255, 0)
1546
+ LIME_WEB_X11_GREEN = RGB.new(0.0, 1.0, 0.0)
1547
+ # Lime green: #32CD32: (50, 205, 50)
1548
+ LIME_GREEN = RGB.new(0.19607843137254902, 0.803921568627451, 0.19607843137254902)
1549
+ # Limerick: #9DC209: (157, 194, 9)
1550
+ LIMERICK = RGB.new(0.615686274509804, 0.7607843137254902, 0.03529411764705882)
1551
+ # Lincoln green: #195905: (25, 89, 5)
1552
+ LINCOLN_GREEN = RGB.new(0.09803921568627451, 0.34901960784313724, 0.0196078431372549)
1553
+ # Linen: #FAF0E6: (250, 240, 230)
1554
+ LINEN = RGB.new(0.9803921568627451, 0.9411764705882353, 0.9019607843137255)
1555
+ # Lion: #C19A6B: (193, 154, 107)
1556
+ LION = RGB.new(0.7568627450980392, 0.6039215686274509, 0.4196078431372549)
1557
+ # Liseran purple: #DE6FA1: (222, 111, 161)
1558
+ LISERAN_PURPLE = RGB.new(0.8705882352941177, 0.43529411764705883, 0.6313725490196078)
1559
+ # Little boy blue: #6CA0DC: (108, 160, 220)
1560
+ LITTLE_BOY_BLUE = RGB.new(0.4235294117647059, 0.6274509803921569, 0.8627450980392157)
1561
+ # Little girl pink: #F8B9D4: (248, 185, 212)
1562
+ LITTLE_GIRL_PINK = RGB.new(0.9725490196078431, 0.7254901960784313, 0.8313725490196079)
1563
+ # Liver: #674C47: (103, 76, 71)
1564
+ LIVER = RGB.new(0.403921568627451, 0.2980392156862745, 0.2784313725490196)
1565
+ # Liver (dogs): #B86D29: (184, 109, 41)
1566
+ LIVER_DOGS = RGB.new(0.7215686274509804, 0.42745098039215684, 0.1607843137254902)
1567
+ # Liver (organ): #6C2E1F: (108, 46, 31)
1568
+ LIVER_ORGAN = RGB.new(0.4235294117647059, 0.1803921568627451, 0.12156862745098039)
1569
+ # Liver chestnut: #987456: (152, 116, 86)
1570
+ LIVER_CHESTNUT = RGB.new(0.596078431372549, 0.4549019607843137, 0.33725490196078434)
1571
+ # Livid: #6699CC: (102, 153, 204)
1572
+ LIVID = RGB.new(0.4, 0.6, 0.8)
1573
+ # Lotion: #FEFDFA: (255, 254, 250)
1574
+ LOTION = RGB.new(1.0, 0.996078431372549, 0.9803921568627451)
1575
+ # Lotion blue: #15F2FD: (123, 154, 200)
1576
+ LOTION_BLUE = RGB.new(0.4823529411764706, 0.6039215686274509, 0.7843137254901961)
1577
+ # Lotion pink: #ECCFCF: (236, 207, 207)
1578
+ LOTION_PINK = RGB.new(0.9254901960784314, 0.8117647058823529, 0.8117647058823529)
1579
+ # Lumber: #FFE4CD: (255, 228, 205)
1580
+ LUMBER = RGB.new(1.0, 0.8941176470588236, 0.803921568627451)
1581
+ # Lust: #E62020: (230, 32, 32)
1582
+ LUST = RGB.new(0.9019607843137255, 0.12549019607843137, 0.12549019607843137)
1583
+ # Maastricht Blue: #001C3D: (0, 28, 61)
1584
+ MAASTRICHT_BLUE = RGB.new(0.0, 0.10980392156862745, 0.23921568627450981)
1585
+ # Macaroni and Cheese: #FFBD88: (255, 189, 136)
1586
+ MACARONI_AND_CHEESE = RGB.new(1.0, 0.7411764705882353, 0.5333333333333333)
1587
+ # Madder Lake: #CC3336: (204, 51, 54)
1588
+ MADDER_LAKE = RGB.new(0.8, 0.2, 0.21176470588235294)
1589
+ # Magenta: #FF00FF: (255, 0, 255)
182
1590
  MAGENTA = RGB.new(1.0, 0.0, 1.0)
183
- # Malachite: #0BDA51
184
- MALACHITE = RGB.new(0.0431372549019608, 0.854901960784314, 0.317647058823529)
185
- # Maroon: #800000
186
- MAROON = RGB.new(0.501960784313725, 0.0, 0.0)
187
- # Mauve: #E0B0FF
188
- MAUVE = RGB.new(0.87843137254902, 0.690196078431373, 1.0)
189
- # Medium carmine: #AF4035
190
- MEDIUM_CARMINE = RGB.new(0.686274509803922, 0.250980392156863, 0.207843137254902)
191
- # Medium Lavender: #EE82EE
192
- MEDIUM_LAVENDER = RGB.new(0.933333333333333, 0.509803921568627, 0.933333333333333)
193
- # Medium Purple: #9370DB
194
- MEDIUM_PURPLE = RGB.new(0.576470588235294, 0.43921568627451, 0.858823529411765)
195
- # Midnight Blue: #003366
196
- MIDNIGHT_BLUE = RGB.new(0.0, 0.2, 0.4)
197
- # Mint Green: #98FF98
1591
+ # Mahogany: #C04000: (192, 64, 0)
1592
+ MAHOGANY = RGB.new(0.7529411764705882, 0.25098039215686274, 0.0)
1593
+ # Maize: #FBEC5D: (251, 236, 93)
1594
+ MAIZE = RGB.new(0.984313725490196, 0.9254901960784314, 0.36470588235294116)
1595
+ # Maize (Crayola): #F2C649: (242, 198, 73)
1596
+ MAIZE_CRAYOLA = RGB.new(0.9490196078431372, 0.7764705882352941, 0.28627450980392155)
1597
+ # Majorelle Blue: #6050DC: (96, 80, 220)
1598
+ MAJORELLE_BLUE = RGB.new(0.3764705882352941, 0.3137254901960784, 0.8627450980392157)
1599
+ # Malachite: #0BDA51: (11, 218, 81)
1600
+ MALACHITE = RGB.new(0.043137254901960784, 0.8549019607843137, 0.3176470588235294)
1601
+ # Manatee: #979AAA: (151, 154, 170)
1602
+ MANATEE = RGB.new(0.592156862745098, 0.6039215686274509, 0.6666666666666666)
1603
+ # Mandarin: #F37A48: (243, 122, 72)
1604
+ MANDARIN = RGB.new(0.9529411764705882, 0.47843137254901963, 0.2823529411764706)
1605
+ # Mango: #FDBE02: (253, 190, 2)
1606
+ MANGO = RGB.new(0.9921568627450981, 0.7450980392156863, 0.00784313725490196)
1607
+ # Mango green: #96FF00: (150, 255, 0)
1608
+ MANGO_GREEN = RGB.new(0.5882352941176471, 1.0, 0.0)
1609
+ # Mango Tango: #FF8243: (255, 130, 67)
1610
+ MANGO_TANGO = RGB.new(1.0, 0.5098039215686274, 0.2627450980392157)
1611
+ # Mantis: #74C365: (116, 195, 101)
1612
+ MANTIS = RGB.new(0.4549019607843137, 0.7647058823529411, 0.396078431372549)
1613
+ # Mardi Gras: #880085: (136, 0, 133)
1614
+ MARDI_GRAS = RGB.new(0.5333333333333333, 0.0, 0.5215686274509804)
1615
+ # Marigold: #EAA221: (234, 162, 33)
1616
+ MARIGOLD = RGB.new(0.9176470588235294, 0.6352941176470588, 0.12941176470588237)
1617
+ # Maroon (Crayola): #C32148: (195, 33, 72)
1618
+ MAROON_CRAYOLA = RGB.new(0.7647058823529411, 0.12941176470588237, 0.2823529411764706)
1619
+ # Maroon (HTML/CSS): #800000: (128, 0, 0)
1620
+ MAROON_HTML_CSS = RGB.new(0.5019607843137255, 0.0, 0.0)
1621
+ # Maroon (X11): #B03060: (176, 48, 96)
1622
+ MAROON_X11 = RGB.new(0.6901960784313725, 0.18823529411764706, 0.3764705882352941)
1623
+ # Mauve: #E0B0FF: (224, 176, 255)
1624
+ MAUVE = RGB.new(0.8784313725490196, 0.6901960784313725, 1.0)
1625
+ # Mauve taupe: #915F6D: (145, 95, 109)
1626
+ MAUVE_TAUPE = RGB.new(0.5686274509803921, 0.37254901960784315, 0.42745098039215684)
1627
+ # Mauvelous: #EF98AA: (239, 152, 170)
1628
+ MAUVELOUS = RGB.new(0.9372549019607843, 0.596078431372549, 0.6666666666666666)
1629
+ # Maximum Blue: #47ABCC: (71, 171, 204)
1630
+ MAXIMUM_BLUE = RGB.new(0.2784313725490196, 0.6705882352941176, 0.8)
1631
+ # Maximum Blue Green: #30BFBF: (48, 191, 191)
1632
+ MAXIMUM_BLUE_GREEN = RGB.new(0.18823529411764706, 0.7490196078431373, 0.7490196078431373)
1633
+ # Maximum Blue Purple: #ACACE6: (172, 172, 230)
1634
+ MAXIMUM_BLUE_PURPLE = RGB.new(0.6745098039215687, 0.6745098039215687, 0.9019607843137255)
1635
+ # Maximum Green: #5E8C31: (94, 140, 49)
1636
+ MAXIMUM_GREEN = RGB.new(0.3686274509803922, 0.5490196078431373, 0.19215686274509805)
1637
+ # Maximum Green Yellow: #D9E650: (217, 230, 80)
1638
+ MAXIMUM_GREEN_YELLOW = RGB.new(0.8509803921568627, 0.9019607843137255, 0.3137254901960784)
1639
+ # Maximum orange: #FF5B00: (255, 91, 0)
1640
+ MAXIMUM_ORANGE = RGB.new(1.0, 0.3568627450980392, 0.0)
1641
+ # Maximum Purple: #733380: (115, 51, 128)
1642
+ MAXIMUM_PURPLE = RGB.new(0.45098039215686275, 0.2, 0.5019607843137255)
1643
+ # Maximum pink: #F6A5F2: (246, 165, 242)
1644
+ MAXIMUM_PINK = RGB.new(0.9647058823529412, 0.6470588235294118, 0.9490196078431372)
1645
+ # Maximum red: #D92121: (217, 33, 33)
1646
+ MAXIMUM_RED = RGB.new(0.8509803921568627, 0.12941176470588237, 0.12941176470588237)
1647
+ # Maximum Red Purple: #A63A79: (166, 58, 121)
1648
+ MAXIMUM_RED_PURPLE = RGB.new(0.6509803921568628, 0.22745098039215686, 0.4745098039215686)
1649
+ # Maximum violet: #892F77: (137, 47, 119)
1650
+ MAXIMUM_VIOLET = RGB.new(0.5372549019607843, 0.1843137254901961, 0.4666666666666667)
1651
+ # Maximum yellow: #FAFA37: (250, 250, 55)
1652
+ MAXIMUM_YELLOW = RGB.new(0.9803921568627451, 0.9803921568627451, 0.21568627450980393)
1653
+ # Maximum yellow red: #F2BA49: (242, 186, 73)
1654
+ MAXIMUM_YELLOW_RED = RGB.new(0.9490196078431372, 0.7294117647058823, 0.28627450980392155)
1655
+ # May green: #4C9141: (76, 145, 65)
1656
+ MAY_GREEN = RGB.new(0.2980392156862745, 0.5686274509803921, 0.2549019607843137)
1657
+ # Maya blue: #73C2FB: (115, 194, 251)
1658
+ MAYA_BLUE = RGB.new(0.45098039215686275, 0.7607843137254902, 0.984313725490196)
1659
+ # Meat brown: #E5B73B: (229, 183, 59)
1660
+ MEAT_BROWN = RGB.new(0.8980392156862745, 0.7176470588235294, 0.23137254901960785)
1661
+ # Medium aquamarine: #66DDAA: (102, 221, 170)
1662
+ MEDIUM_AQUAMARINE = RGB.new(0.4, 0.8666666666666667, 0.6666666666666666)
1663
+ # Medium blue: #0000CD: (0, 0, 205)
1664
+ MEDIUM_BLUE = RGB.new(0.0, 0.0, 0.803921568627451)
1665
+ # Medium candy apple red: #E2062C: (226, 6, 44)
1666
+ MEDIUM_CANDY_APPLE_RED = RGB.new(0.8862745098039215, 0.023529411764705882, 0.17254901960784313)
1667
+ # Medium carmine: #AF4035: (175, 64, 53)
1668
+ MEDIUM_CARMINE = RGB.new(0.6862745098039216, 0.25098039215686274, 0.20784313725490197)
1669
+ # Medium champagne: #F3E5AB: (243, 229, 171)
1670
+ MEDIUM_CHAMPAGNE = RGB.new(0.9529411764705882, 0.8980392156862745, 0.6705882352941176)
1671
+ # Medium electric blue: #035096: (3, 80, 150)
1672
+ MEDIUM_ELECTRIC_BLUE = RGB.new(0.011764705882352941, 0.3137254901960784, 0.5882352941176471)
1673
+ # Medium green: #037949: (3, 121, 73)
1674
+ MEDIUM_GREEN = RGB.new(0.011764705882352941, 0.4745098039215686, 0.28627450980392155)
1675
+ # Medium jungle green: #1C352D: (28, 53, 45)
1676
+ MEDIUM_JUNGLE_GREEN = RGB.new(0.10980392156862745, 0.20784313725490197, 0.17647058823529413)
1677
+ # Medium lavender magenta: #DDA0DD: (221, 160, 221)
1678
+ MEDIUM_LAVENDER_MAGENTA = RGB.new(0.8666666666666667, 0.6274509803921569, 0.8666666666666667)
1679
+ # Medium orange: #FF7802: (255, 120, 2)
1680
+ MEDIUM_ORANGE = RGB.new(1.0, 0.47058823529411764, 0.00784313725490196)
1681
+ # Medium orchid: #BA55D3: (186, 85, 211)
1682
+ MEDIUM_ORCHID = RGB.new(0.7294117647058823, 0.3333333333333333, 0.8274509803921568)
1683
+ # Medium Persian blue: #0067A5: (0, 103, 165)
1684
+ MEDIUM_PERSIAN_BLUE = RGB.new(0.0, 0.403921568627451, 0.6470588235294118)
1685
+ # Medium pink: #FE6E9F: (254, 110, 159)
1686
+ MEDIUM_PINK = RGB.new(0.996078431372549, 0.43137254901960786, 0.6235294117647059)
1687
+ # Medium purple: #9370DB: (147, 112, 219)
1688
+ MEDIUM_PURPLE = RGB.new(0.5764705882352941, 0.4392156862745098, 0.8588235294117647)
1689
+ # Medium red: #B10304: (177, 3, 4)
1690
+ MEDIUM_RED = RGB.new(0.6941176470588235, 0.011764705882352941, 0.01568627450980392)
1691
+ # Medium red-violet: #BB3385: (187, 51, 133)
1692
+ MEDIUM_RED_VIOLET = RGB.new(0.7333333333333333, 0.2, 0.5215686274509804)
1693
+ # Medium ruby: #AA4069: (170, 64, 105)
1694
+ MEDIUM_RUBY = RGB.new(0.6666666666666666, 0.25098039215686274, 0.4117647058823529)
1695
+ # Medium sea green: #3CB371: (60, 179, 113)
1696
+ MEDIUM_SEA_GREEN = RGB.new(0.23529411764705882, 0.7019607843137254, 0.44313725490196076)
1697
+ # Medium sky blue: #80DAEB: (128, 218, 235)
1698
+ MEDIUM_SKY_BLUE = RGB.new(0.5019607843137255, 0.8549019607843137, 0.9215686274509803)
1699
+ # Medium slate blue: #7B68EE: (123, 104, 238)
1700
+ MEDIUM_SLATE_BLUE = RGB.new(0.4823529411764706, 0.40784313725490196, 0.9333333333333333)
1701
+ # Medium spring bud: #C9DC87: (201, 220, 135)
1702
+ MEDIUM_SPRING_BUD = RGB.new(0.788235294117647, 0.8627450980392157, 0.5294117647058824)
1703
+ # Medium spring green: #00FA9A: (0, 250, 154)
1704
+ MEDIUM_SPRING_GREEN = RGB.new(0.0, 0.9803921568627451, 0.6039215686274509)
1705
+ # Medium taupe: #674C47: (103, 76, 71)
1706
+ MEDIUM_TAUPE = RGB.new(0.403921568627451, 0.2980392156862745, 0.2784313725490196)
1707
+ # Medium turquoise: #48D1CC: (72, 209, 204)
1708
+ MEDIUM_TURQUOISE = RGB.new(0.2823529411764706, 0.8196078431372549, 0.8)
1709
+ # Medium Tuscan red: #79443B: (121, 68, 59)
1710
+ MEDIUM_TUSCAN_RED = RGB.new(0.4745098039215686, 0.26666666666666666, 0.23137254901960785)
1711
+ # Medium vermilion: #D9603B: (217, 96, 59)
1712
+ MEDIUM_VERMILION = RGB.new(0.8509803921568627, 0.3764705882352941, 0.23137254901960785)
1713
+ # Medium violet: #65315F: (101, 49, 95)
1714
+ MEDIUM_VIOLET = RGB.new(0.396078431372549, 0.19215686274509805, 0.37254901960784315)
1715
+ # Medium violet-red: #C71585: (199, 21, 133)
1716
+ MEDIUM_VIOLET_RED = RGB.new(0.7803921568627451, 0.08235294117647059, 0.5215686274509804)
1717
+ # Medium yellow: #FFE302: (255, 227, 2)
1718
+ MEDIUM_YELLOW = RGB.new(1.0, 0.8901960784313725, 0.00784313725490196)
1719
+ # Mellow apricot: #F8B878: (248, 184, 120)
1720
+ MELLOW_APRICOT = RGB.new(0.9725490196078431, 0.7215686274509804, 0.47058823529411764)
1721
+ # Mellow yellow: #F8DE7E: (248, 222, 126)
1722
+ MELLOW_YELLOW = RGB.new(0.9725490196078431, 0.8705882352941177, 0.49411764705882355)
1723
+ # Melon: #FDBCB4: (253, 188, 180)
1724
+ MELON = RGB.new(0.9921568627450981, 0.7372549019607844, 0.7058823529411765)
1725
+ # Melon (Crayola): #FEBAAD: (254, 186, 173)
1726
+ MELON_CRAYOLA = RGB.new(0.996078431372549, 0.7294117647058823, 0.6784313725490196)
1727
+ # Menthol: #C1F9A2: (193, 249, 162)
1728
+ MENTHOL = RGB.new(0.7568627450980392, 0.9764705882352941, 0.6352941176470588)
1729
+ # Metallic blue: #32527B: (50, 82, 123)
1730
+ METALLIC_BLUE = RGB.new(0.19607843137254902, 0.3215686274509804, 0.4823529411764706)
1731
+ # Metallic bronze: #A97142: (169, 113, 66)
1732
+ METALLIC_BRONZE = RGB.new(0.6627450980392157, 0.44313725490196076, 0.25882352941176473)
1733
+ # Metallic brown: #AC4313: (172, 67, 19)
1734
+ METALLIC_BROWN = RGB.new(0.6745098039215687, 0.2627450980392157, 0.07450980392156863)
1735
+ # Metallic gold: #D3AF37: (211, 175, 55)
1736
+ METALLIC_GOLD = RGB.new(0.8274509803921568, 0.6862745098039216, 0.21568627450980393)
1737
+ # Metallic green: #296E01: (41, 110, 1)
1738
+ METALLIC_GREEN = RGB.new(0.1607843137254902, 0.43137254901960786, 0.00392156862745098)
1739
+ # Metallic orange: #DA680F: (218, 104, 15)
1740
+ METALLIC_ORANGE = RGB.new(0.8549019607843137, 0.40784313725490196, 0.058823529411764705)
1741
+ # Metallic pink: #EDA6C4: (237, 166, 196)
1742
+ METALLIC_PINK = RGB.new(0.9294117647058824, 0.6509803921568628, 0.7686274509803922)
1743
+ # Metallic red: #A62C2B: (166, 44, 43)
1744
+ METALLIC_RED = RGB.new(0.6509803921568628, 0.17254901960784313, 0.16862745098039217)
1745
+ # Metallic Seaweed: #0A7E8C: (10, 126, 140)
1746
+ METALLIC_SEAWEED = RGB.new(0.0392156862745098, 0.49411764705882355, 0.5490196078431373)
1747
+ # Metallic silver: #A8A9AD: (168, 169, 173)
1748
+ METALLIC_SILVER = RGB.new(0.6588235294117647, 0.6627450980392157, 0.6784313725490196)
1749
+ # Metallic Sunburst: #9C7C38: (156, 124, 56)
1750
+ METALLIC_SUNBURST = RGB.new(0.611764705882353, 0.48627450980392156, 0.2196078431372549)
1751
+ # Metallic violet: #5B0A91: (90, 10, 145)
1752
+ METALLIC_VIOLET = RGB.new(0.35294117647058826, 0.0392156862745098, 0.5686274509803921)
1753
+ # Metallic yellow: #FDCC0D: (253, 204, 13)
1754
+ METALLIC_YELLOW = RGB.new(0.9921568627450981, 0.8, 0.050980392156862744)
1755
+ # Mexican pink: #E4007C: (228, 0, 124)
1756
+ MEXICAN_PINK = RGB.new(0.8941176470588236, 0.0, 0.48627450980392156)
1757
+ # Microsoft blue: #00A2ED: (0, 162, 237)
1758
+ MICROSOFT_BLUE = RGB.new(0.0, 0.6352941176470588, 0.9294117647058824)
1759
+ # Microsoft Edge blue: #0078D7: (0, 120, 215)
1760
+ MICROSOFT_EDGE_BLUE = RGB.new(0.0, 0.47058823529411764, 0.8431372549019608)
1761
+ # Microsoft green: #7DB700: (125, 183, 0)
1762
+ MICROSOFT_GREEN = RGB.new(0.49019607843137253, 0.7176470588235294, 0.0)
1763
+ # Microsoft red: #F04E1F: (240, 78, 31)
1764
+ MICROSOFT_RED = RGB.new(0.9411764705882353, 0.3058823529411765, 0.12156862745098039)
1765
+ # Microsoft yellow: #FDB900: (253, 185, 0)
1766
+ MICROSOFT_YELLOW = RGB.new(0.9921568627450981, 0.7254901960784313, 0.0)
1767
+ # Middle blue: #7ED4E6: (126, 212, 230)
1768
+ MIDDLE_BLUE = RGB.new(0.49411764705882355, 0.8313725490196079, 0.9019607843137255)
1769
+ # Middle blue green: #8DD9CC: (141, 217, 204)
1770
+ MIDDLE_BLUE_GREEN = RGB.new(0.5529411764705883, 0.8509803921568627, 0.8)
1771
+ # Middle blue purple: #8B72BE: (139, 114, 190)
1772
+ MIDDLE_BLUE_PURPLE = RGB.new(0.5450980392156862, 0.4470588235294118, 0.7450980392156863)
1773
+ # Middle grey: #8B8680: (139, 134, 128)
1774
+ MIDDLE_GREY = RGB.new(0.5450980392156862, 0.5254901960784314, 0.5019607843137255)
1775
+ # Middle green: #4D8C57: (77, 140, 87)
1776
+ MIDDLE_GREEN = RGB.new(0.30196078431372547, 0.5490196078431373, 0.3411764705882353)
1777
+ # Middle green yellow: #ACBF60: (172, 191, 96)
1778
+ MIDDLE_GREEN_YELLOW = RGB.new(0.6745098039215687, 0.7490196078431373, 0.3764705882352941)
1779
+ # Middle purple: #D982B5: (217, 130, 181)
1780
+ MIDDLE_PURPLE = RGB.new(0.8509803921568627, 0.5098039215686274, 0.7098039215686275)
1781
+ # Middle red: #E58E73: (229, 144, 115)
1782
+ MIDDLE_RED = RGB.new(0.8980392156862745, 0.5647058823529412, 0.45098039215686275)
1783
+ # Middle red purple: #A55353: (165, 83, 83)
1784
+ MIDDLE_RED_PURPLE = RGB.new(0.6470588235294118, 0.3254901960784314, 0.3254901960784314)
1785
+ # Middle yellow: #FFEB00: (255, 235, 0)
1786
+ MIDDLE_YELLOW = RGB.new(1.0, 0.9215686274509803, 0.0)
1787
+ # Middle yellow red: #ECB176: (236, 177, 118)
1788
+ MIDDLE_YELLOW_RED = RGB.new(0.9254901960784314, 0.6941176470588235, 0.4627450980392157)
1789
+ # Midnight: #702670: (112, 38, 112)
1790
+ MIDNIGHT = RGB.new(0.4392156862745098, 0.14901960784313725, 0.4392156862745098)
1791
+ # Midnight blue: #191970: (25, 25, 112)
1792
+ MIDNIGHT_BLUE = RGB.new(0.09803921568627451, 0.09803921568627451, 0.4392156862745098)
1793
+ # Midnight green (eagle green): #004953: (0, 73, 83)
1794
+ MIDNIGHT_GREEN_EAGLE_GREEN = RGB.new(0.0, 0.28627450980392155, 0.3254901960784314)
1795
+ # Mikado yellow: #FFC40C: (255, 196, 12)
1796
+ MIKADO_YELLOW = RGB.new(1.0, 0.7686274509803922, 0.047058823529411764)
1797
+ # Milk: #FDFFF5: (253, 255, 245)
1798
+ MILK = RGB.new(0.9921568627450981, 1.0, 0.9607843137254902)
1799
+ # Milk chocolate: #84563C: (132, 86, 60)
1800
+ MILK_CHOCOLATE = RGB.new(0.5176470588235295, 0.33725490196078434, 0.23529411764705882)
1801
+ # Mimi pink: #FFDAE9: (255, 218, 233)
1802
+ MIMI_PINK = RGB.new(1.0, 0.8549019607843137, 0.9137254901960784)
1803
+ # Mindaro: #E3F988: (227, 249, 136)
1804
+ MINDARO = RGB.new(0.8901960784313725, 0.9764705882352941, 0.5333333333333333)
1805
+ # Ming: #36747D: (54, 116, 125)
1806
+ MING = RGB.new(0.21176470588235294, 0.4549019607843137, 0.49019607843137253)
1807
+ # Minion yellow: #F5E050: (245, 220, 80)
1808
+ MINION_YELLOW = RGB.new(0.9607843137254902, 0.8627450980392157, 0.3137254901960784)
1809
+ # Mint: #3EB489: (62, 180, 137)
1810
+ MINT = RGB.new(0.24313725490196078, 0.7058823529411765, 0.5372549019607843)
1811
+ # Mint cream: #F5FFFA: (245, 255, 250)
1812
+ MINT_CREAM = RGB.new(0.9607843137254902, 1.0, 0.9803921568627451)
1813
+ # Mint green: #98FF98: (152, 255, 152)
198
1814
  MINT_GREEN = RGB.new(0.596078431372549, 1.0, 0.596078431372549)
199
- # Moss green: #ADDFAD
200
- MOSS_GREEN = RGB.new(0.67843137254902, 0.874509803921569, 0.67843137254902)
201
- # Mountbatten pink: #997A8D
202
- MOUNTBATTEN_PINK = RGB.new(0.6, 0.47843137254902, 0.552941176470588)
203
- # Mustard: #FFDB58
204
- MUSTARD = RGB.new(1.0, 0.858823529411765, 0.345098039215686)
205
- # Navajo white: #FFDEAD
206
- NAVAJO_WHITE = RGB.new(1.0, 0.870588235294118, 0.67843137254902)
207
- # Navy Blue: #000080
208
- NAVY_BLUE = RGB.new(0.0, 0.0, 0.501960784313725)
209
- # Ochre: #CC7722
210
- OCHRE = RGB.new(0.8, 0.466666666666667, 0.133333333333333)
211
- # Old Gold: #CFB53B
212
- OLD_GOLD = RGB.new(0.811764705882353, 0.709803921568627, 0.231372549019608)
213
- # Old Lace: #FDF5E6
214
- OLD_LACE = RGB.new(0.992156862745098, 0.96078431372549, 0.901960784313726)
215
- # Old Lavender: #796878
216
- OLD_LAVENDER = RGB.new(0.474509803921569, 0.407843137254902, 0.470588235294118)
217
- # Old Rose: #C08081
218
- OLD_ROSE = RGB.new(0.752941176470588, 0.501960784313725, 0.505882352941176)
219
- # Olive: #808000
220
- OLIVE = RGB.new(0.501960784313725, 0.501960784313725, 0.0)
221
- # Olive Drab: #6B8E23
222
- OLIVE_DRAB = RGB.new(0.419607843137255, 0.556862745098039, 0.137254901960784)
223
- # Orange (color wheel): #FF7500
224
- ORANGE_COLOR_WHEEL = RGB.new(1.0, 0.498039215686275, 0.0)
225
- ORANGE = ORANGE_COLOR_WHEEL
226
- # Orange (web): #FFA500
227
- ORANGE_WEB = RGB.new(1.0, 0.647058823529412, 0.0)
228
- # Orange Peel: #FFA000
229
- ORANGE_PEEL = RGB.new(1.0, 0.627450980392157, 0.0)
230
- # Orchid: #DA70D6
231
- ORCHID = RGB.new(0.854901960784314, 0.43921568627451, 0.83921568627451)
232
- # Papaya whip: #FFEFD5
233
- PAPAYA_WHIP = RGB.new(1.0, 0.937254901960784, 0.835294117647059)
234
- # Pastel green: #77DD77
235
- PASTEL_GREEN = RGB.new(0.466666666666667, 0.866666666666667, 0.466666666666667)
236
- # Pastel pink: #FFD1DC
237
- PASTEL_PINK = RGB.new(1.0, 0.819607843137255, 0.862745098039216)
238
- # Peach: #FFE5B4
239
- PEACH = RGB.new(1.0, 0.898039215686275, 0.705882352941177)
240
- # Peach-orange: #FFCC99
1815
+ # Misty Moss: #BBB477: (187, 180, 119)
1816
+ MISTY_MOSS = RGB.new(0.7333333333333333, 0.7058823529411765, 0.4666666666666667)
1817
+ # Misty rose: #FFE4E1: (255, 228, 225)
1818
+ MISTY_ROSE = RGB.new(1.0, 0.8941176470588236, 0.8823529411764706)
1819
+ # Moccasin: #FAEBD7: (250, 235, 215)
1820
+ MOCCASIN = RGB.new(0.9803921568627451, 0.9215686274509803, 0.8431372549019608)
1821
+ # Mocha: #BEA493: (190, 164, 147)
1822
+ MOCHA = RGB.new(0.7450980392156863, 0.6431372549019608, 0.5764705882352941)
1823
+ # Mode beige: #967117: (150, 113, 23)
1824
+ MODE_BEIGE = RGB.new(0.5882352941176471, 0.44313725490196076, 0.09019607843137255)
1825
+ # Moonstone: #3AA8C1: (58, 168, 193)
1826
+ MOONSTONE = RGB.new(0.22745098039215686, 0.6588235294117647, 0.7568627450980392)
1827
+ # Moonstone blue: #73A9C2: (115, 169, 194)
1828
+ MOONSTONE_BLUE = RGB.new(0.45098039215686275, 0.6627450980392157, 0.7607843137254902)
1829
+ # Mordant red 19: #AE0C00: (174, 12, 0)
1830
+ MORDANT_RED_19 = RGB.new(0.6823529411764706, 0.047058823529411764, 0.0)
1831
+ # Morning blue: #8DA399: (141, 163, 153)
1832
+ MORNING_BLUE = RGB.new(0.5529411764705883, 0.6392156862745098, 0.6)
1833
+ # Moss green: #8A9A5B: (138, 154, 91)
1834
+ MOSS_GREEN = RGB.new(0.5411764705882353, 0.6039215686274509, 0.3568627450980392)
1835
+ # Mountain Meadow: #30BA8F: (48, 186, 143)
1836
+ MOUNTAIN_MEADOW = RGB.new(0.18823529411764706, 0.7294117647058823, 0.5607843137254902)
1837
+ # Mountbatten pink: #997A8D: (153, 122, 141)
1838
+ MOUNTBATTEN_PINK = RGB.new(0.6, 0.47843137254901963, 0.5529411764705883)
1839
+ # MSU green: #18453B: (24, 69, 59)
1840
+ MSU_GREEN = RGB.new(0.09411764705882353, 0.27058823529411763, 0.23137254901960785)
1841
+ # Mud: #70543E: (111, 83, 61)
1842
+ MUD = RGB.new(0.43529411764705883, 0.3254901960784314, 0.23921568627450981)
1843
+ # Mughal green: #306030: (48, 96, 48)
1844
+ MUGHAL_GREEN = RGB.new(0.18823529411764706, 0.3764705882352941, 0.18823529411764706)
1845
+ # Mulberry: #C54B8C: (197, 75, 140)
1846
+ MULBERRY = RGB.new(0.7725490196078432, 0.29411764705882354, 0.5490196078431373)
1847
+ # Mulberry (Crayola): #C8509B: (200, 80, 155)
1848
+ MULBERRY_CRAYOLA = RGB.new(0.7843137254901961, 0.3137254901960784, 0.6078431372549019)
1849
+ # Mummy's Tomb: #828E84: (130, 142, 132)
1850
+ MUMMYS_TOMB = RGB.new(0.5098039215686274, 0.5568627450980392, 0.5176470588235295)
1851
+ # Mustard: #FFDB58: (255, 219, 88)
1852
+ MUSTARD = RGB.new(1.0, 0.8588235294117647, 0.34509803921568627)
1853
+ # Mustard brown: #CD7A00: (205, 122, 0)
1854
+ MUSTARD_BROWN = RGB.new(0.803921568627451, 0.47843137254901963, 0.0)
1855
+ # Mustard green: #6E6E30: (110, 110, 48)
1856
+ MUSTARD_GREEN = RGB.new(0.43137254901960786, 0.43137254901960786, 0.18823529411764706)
1857
+ # Mustard yellow: #E1AD01: (255, 173, 1)
1858
+ MUSTARD_YELLOW = RGB.new(1.0, 0.6784313725490196, 0.00392156862745098)
1859
+ # Myrtle green: #317873: (49, 120, 115)
1860
+ MYRTLE_GREEN = RGB.new(0.19215686274509805, 0.47058823529411764, 0.45098039215686275)
1861
+ # Mystic: #D65282: (214, 82, 130)
1862
+ MYSTIC = RGB.new(0.8392156862745098, 0.3215686274509804, 0.5098039215686274)
1863
+ # Mystic maroon: #AD4379: (173, 67, 121)
1864
+ MYSTIC_MAROON = RGB.new(0.6784313725490196, 0.2627450980392157, 0.4745098039215686)
1865
+ # Mystic red: #FF5500: (255, 34, 0)
1866
+ MYSTIC_RED = RGB.new(1.0, 0.13333333333333333, 0.0)
1867
+ # Nadeshiko pink: #F6ADC6: (246, 173, 198)
1868
+ NADESHIKO_PINK = RGB.new(0.9647058823529412, 0.6784313725490196, 0.7764705882352941)
1869
+ # Napier green: #2A8000: (42, 128, 0)
1870
+ NAPIER_GREEN = RGB.new(0.16470588235294117, 0.5019607843137255, 0.0)
1871
+ # Naples yellow: #FADA5E: (250, 218, 94)
1872
+ NAPLES_YELLOW = RGB.new(0.9803921568627451, 0.8549019607843137, 0.3686274509803922)
1873
+ # Navajo white: #FFDEAD: (255, 222, 173)
1874
+ NAVAJO_WHITE = RGB.new(1.0, 0.8705882352941177, 0.6784313725490196)
1875
+ # Navy blue: #000080: (0, 0, 128)
1876
+ NAVY_BLUE = RGB.new(0.0, 0.0, 0.5019607843137255)
1877
+ # Navy blue (Crayola): #1974D2: (25, 116, 210)
1878
+ NAVY_BLUE_CRAYOLA = RGB.new(0.09803921568627451, 0.4549019607843137, 0.8235294117647058)
1879
+ # Navy purple: #9457EB: (148, 87, 235)
1880
+ NAVY_PURPLE = RGB.new(0.5803921568627451, 0.3411764705882353, 0.9215686274509803)
1881
+ # Neon blue: #1B03A3: (27, 3, 163)
1882
+ NEON_BLUE = RGB.new(0.10588235294117647, 0.011764705882352941, 0.6392156862745098)
1883
+ # Neon brown: #C3732A: (195, 115, 42)
1884
+ NEON_BROWN = RGB.new(0.7647058823529411, 0.45098039215686275, 0.16470588235294117)
1885
+ # Neon Carrot: #FFA343: (255, 163, 67)
1886
+ NEON_CARROT = RGB.new(1.0, 0.6392156862745098, 0.2627450980392157)
1887
+ # Neon cyan: #00FEFC: (0, 254, 252)
1888
+ NEON_CYAN = RGB.new(0.0, 0.996078431372549, 0.9882352941176471)
1889
+ # Neon fuchsia: #FE4164: (254, 65, 100)
1890
+ NEON_FUCHSIA = RGB.new(0.996078431372549, 0.2549019607843137, 0.39215686274509803)
1891
+ # Neon gold: #CFAA01: (207, 170, 1)
1892
+ NEON_GOLD = RGB.new(0.8117647058823529, 0.6666666666666666, 0.00392156862745098)
1893
+ # Neon gray: #808080: (128, 128, 128)
1894
+ NEON_GRAY = RGB.new(0.5019607843137255, 0.5019607843137255, 0.5019607843137255)
1895
+ # Neon dark green: #008443: (0, 132, 67)
1896
+ NEON_DARK_GREEN = RGB.new(0.0, 0.5176470588235295, 0.2627450980392157)
1897
+ # Neon green: #139B42: (19, 155, 66)
1898
+ NEON_GREEN = RGB.new(0.07450980392156863, 0.6078431372549019, 0.25882352941176473)
1899
+ # Neon pink: #FE347E: (254, 52, 126)
1900
+ NEON_PINK = RGB.new(0.996078431372549, 0.20392156862745098, 0.49411764705882355)
1901
+ # Neon purple: #9457EB: (148, 87, 235)
1902
+ NEON_PURPLE = RGB.new(0.5803921568627451, 0.3411764705882353, 0.9215686274509803)
1903
+ # Neon red: #FF1818: (255, 24, 24)
1904
+ NEON_RED = RGB.new(1.0, 0.09411764705882353, 0.09411764705882353)
1905
+ # Neon scarlet: #FF2603: (255, 38, 3)
1906
+ NEON_SCARLET = RGB.new(1.0, 0.14901960784313725, 0.011764705882352941)
1907
+ # Neon silver: #CCCCCC: (204, 204, 204)
1908
+ NEON_SILVER = RGB.new(0.8, 0.8, 0.8)
1909
+ # Neon tangerine: #F6890A: (246, 137, 10)
1910
+ NEON_TANGERINE = RGB.new(0.9647058823529412, 0.5372549019607843, 0.0392156862745098)
1911
+ # Neon yellow: #FFF700: (255, 247, 0)
1912
+ NEON_YELLOW = RGB.new(1.0, 0.9686274509803922, 0.0)
1913
+ # New Car: #214FC6: (33, 79, 198)
1914
+ NEW_CAR = RGB.new(0.12941176470588237, 0.30980392156862746, 0.7764705882352941)
1915
+ # New York pink: #D7837F: (215, 131, 127)
1916
+ NEW_YORK_PINK = RGB.new(0.8431372549019608, 0.5137254901960784, 0.4980392156862745)
1917
+ # Nickel: #727472: (114, 116, 114)
1918
+ NICKEL = RGB.new(0.4470588235294118, 0.4549019607843137, 0.4470588235294118)
1919
+ # Nintendo red: #E4000F: (228, 0, 15)
1920
+ NINTENDO_RED = RGB.new(0.8941176470588236, 0.0, 0.058823529411764705)
1921
+ # Non-photo blue: #A4DDED: (164, 221, 237)
1922
+ NON_PHOTO_BLUE = RGB.new(0.6431372549019608, 0.8666666666666667, 0.9294117647058824)
1923
+ # Nyanza: #E9FFDB: (233, 255, 219)
1924
+ NYANZA = RGB.new(0.9137254901960784, 1.0, 0.8588235294117647)
1925
+ # Ocean blue: #4F42B5: (79, 66, 181)
1926
+ OCEAN_BLUE = RGB.new(0.30980392156862746, 0.25882352941176473, 0.7098039215686275)
1927
+ # Ocean boat blue: #0077BE: (0, 119, 190)
1928
+ OCEAN_BOAT_BLUE = RGB.new(0.0, 0.4666666666666667, 0.7450980392156863)
1929
+ # Ocean green: #48BF91: (72, 191, 145)
1930
+ OCEAN_GREEN = RGB.new(0.2823529411764706, 0.7490196078431373, 0.5686274509803921)
1931
+ # Ochre: #CC7722: (204, 119, 34)
1932
+ OCHRE = RGB.new(0.8, 0.4666666666666667, 0.13333333333333333)
1933
+ # Office green: #008000: (0, 128, 0)
1934
+ OFFICE_GREEN = RGB.new(0.0, 0.5019607843137255, 0.0)
1935
+ # Ogre Odor: #FD5240: (253, 82, 64)
1936
+ OGRE_ODOR = RGB.new(0.9921568627450981, 0.3215686274509804, 0.25098039215686274)
1937
+ # Old burgundy: #43302E: (67, 48, 46)
1938
+ OLD_BURGUNDY = RGB.new(0.2627450980392157, 0.18823529411764706, 0.1803921568627451)
1939
+ # Old gold: #CFB53B: (207, 181, 59)
1940
+ OLD_GOLD = RGB.new(0.8117647058823529, 0.7098039215686275, 0.23137254901960785)
1941
+ # Old heliotrope: #563C5C: (86, 60, 92)
1942
+ OLD_HELIOTROPE = RGB.new(0.33725490196078434, 0.23529411764705882, 0.3607843137254902)
1943
+ # Old lace: #FDF5E6: (253, 245, 230)
1944
+ OLD_LACE = RGB.new(0.9921568627450981, 0.9607843137254902, 0.9019607843137255)
1945
+ # Old lavender: #796878: (121, 104, 120)
1946
+ OLD_LAVENDER = RGB.new(0.4745098039215686, 0.40784313725490196, 0.47058823529411764)
1947
+ # Old mauve: #673147: (103, 49, 71)
1948
+ OLD_MAUVE = RGB.new(0.403921568627451, 0.19215686274509805, 0.2784313725490196)
1949
+ # Old moss green: #867E36: (134, 126, 54)
1950
+ OLD_MOSS_GREEN = RGB.new(0.5254901960784314, 0.49411764705882355, 0.21176470588235294)
1951
+ # Old rose: #C08081: (192, 128, 129)
1952
+ OLD_ROSE = RGB.new(0.7529411764705882, 0.5019607843137255, 0.5058823529411764)
1953
+ # Old silver: #848482: (132, 132, 130)
1954
+ OLD_SILVER = RGB.new(0.5176470588235295, 0.5176470588235295, 0.5098039215686274)
1955
+ # Olive: #808000: (128, 128, 0)
1956
+ OLIVE = RGB.new(0.5019607843137255, 0.5019607843137255, 0.0)
1957
+ # Olive drab (#3): #6B8E23: (107, 142, 35)
1958
+ OLIVE_DRAB3 = RGB.new(0.4196078431372549, 0.5568627450980392, 0.13725490196078433)
1959
+ # Olive drab #7: #3C341F: (60, 52, 31)
1960
+ OLIVE_DRAB7 = RGB.new(0.23529411764705882, 0.20392156862745098, 0.12156862745098039)
1961
+ # Olive green: #B5B35C: (181, 179, 92)
1962
+ OLIVE_GREEN = RGB.new(0.7098039215686275, 0.7019607843137254, 0.3607843137254902)
1963
+ # Olivine: #9AB973: (154, 185, 115)
1964
+ OLIVINE = RGB.new(0.6039215686274509, 0.7254901960784313, 0.45098039215686275)
1965
+ # Onyx: #353839: (53, 56, 57)
1966
+ ONYX = RGB.new(0.20784313725490197, 0.2196078431372549, 0.2235294117647059)
1967
+ # Opal: #A8C3BC: (168, 195, 188)
1968
+ OPAL = RGB.new(0.6588235294117647, 0.7647058823529411, 0.7372549019607844)
1969
+ # Opera mauve: #B784A7: (183, 132, 167)
1970
+ OPERA_MAUVE = RGB.new(0.7176470588235294, 0.5176470588235295, 0.6549019607843137)
1971
+ # Orange: #FF6600: (255, 102, 0)
1972
+ ORANGE = RGB.new(1.0, 0.4, 0.0)
1973
+ # Orange (color wheel): #FF7F00: (255, 127, 0)
1974
+ ORANGE_COLOR_WHEEL = RGB.new(1.0, 0.4980392156862745, 0.0)
1975
+ # Orange (Crayola): #FF7538: (255, 117, 56)
1976
+ ORANGE_CRAYOLA = RGB.new(1.0, 0.4588235294117647, 0.2196078431372549)
1977
+ # Orange (Pantone): #FF5800: (255, 88, 0)
1978
+ ORANGE_PANTONE = RGB.new(1.0, 0.34509803921568627, 0.0)
1979
+ # Orange (RYB): #FB9902: (251, 153, 2)
1980
+ ORANGE_RYB = RGB.new(0.984313725490196, 0.6, 0.00784313725490196)
1981
+ # Orange (web): #FFA500: (255, 165, 0)
1982
+ ORANGE_WEB = RGB.new(1.0, 0.6470588235294118, 0.0)
1983
+ # Orange iced tea: #FF6700: (255, 103, 0)
1984
+ ORANGE_ICED_TEA = RGB.new(1.0, 0.403921568627451, 0.0)
1985
+ # Orange peel: #FF9F00: (255, 159, 0)
1986
+ ORANGE_PEEL = RGB.new(1.0, 0.6235294117647059, 0.0)
1987
+ # Orange-red: #FF681F: (255, 104, 31)
1988
+ ORANGE_RED = RGB.new(1.0, 0.40784313725490196, 0.12156862745098039)
1989
+ # Orange-red (Crayola): #FF5349: (255, 83, 73)
1990
+ ORANGE_RED_CRAYOLA = RGB.new(1.0, 0.3254901960784314, 0.28627450980392155)
1991
+ # Orange soda: #E74E14: (231, 78, 20)
1992
+ ORANGE_SODA = RGB.new(0.9058823529411765, 0.3058823529411765, 0.0784313725490196)
1993
+ # Orange-yellow: #F5BD1F: (245, 189, 31)
1994
+ ORANGE_YELLOW = RGB.new(0.9607843137254902, 0.7411764705882353, 0.12156862745098039)
1995
+ # Orange-yellow (Crayola): #F8D568: (248, 213, 104)
1996
+ ORANGE_YELLOW_CRAYOLA = RGB.new(0.9725490196078431, 0.8352941176470589, 0.40784313725490196)
1997
+ # Orchid: #DA70D6: (218, 112, 214)
1998
+ ORCHID = RGB.new(0.8549019607843137, 0.4392156862745098, 0.8392156862745098)
1999
+ # Orchid pink: #F2BDCD: (242, 189, 205)
2000
+ ORCHID_PINK = RGB.new(0.9490196078431372, 0.7411764705882353, 0.803921568627451)
2001
+ # Orchid (Crayola): #E29CD2: (226, 156, 210)
2002
+ ORCHID_CRAYOLA = RGB.new(0.8862745098039215, 0.611764705882353, 0.8235294117647058)
2003
+ # Orioles orange: #FB4F14: (251, 79, 20)
2004
+ ORIOLES_ORANGE = RGB.new(0.984313725490196, 0.30980392156862746, 0.0784313725490196)
2005
+ # Otter brown: #654321: (101, 67, 33)
2006
+ OTTER_BROWN = RGB.new(0.396078431372549, 0.2627450980392157, 0.12941176470588237)
2007
+ # Outer Space: #414A4C: (65, 74, 76)
2008
+ OUTER_SPACE = RGB.new(0.2549019607843137, 0.2901960784313726, 0.2980392156862745)
2009
+ # Outer space (Crayola): #2D383A: (45, 56, 58)
2010
+ OUTER_SPACE_CRAYOLA = RGB.new(0.17647058823529413, 0.2196078431372549, 0.22745098039215686)
2011
+ # Outrageous Orange: #FF6E4A: (255, 110, 74)
2012
+ OUTRAGEOUS_ORANGE = RGB.new(1.0, 0.43137254901960786, 0.2901960784313726)
2013
+ # Oxblood: #800020: (128, 0, 32)
2014
+ OXBLOOD = RGB.new(0.5019607843137255, 0.0, 0.12549019607843137)
2015
+ # Oxford blue: #002147: (0, 33, 71)
2016
+ OXFORD_BLUE = RGB.new(0.0, 0.12941176470588237, 0.2784313725490196)
2017
+ # Oxley: #6D9A79: (109, 154, 121)
2018
+ OXLEY = RGB.new(0.42745098039215684, 0.6039215686274509, 0.4745098039215686)
2019
+ # OU Crimson red: #990000: (153, 0, 0)
2020
+ OU_CRIMSON_RED = RGB.new(0.6, 0.0, 0.0)
2021
+ # Pacific Blue: #1CA9C9: (28, 169, 201)
2022
+ PACIFIC_BLUE = RGB.new(0.10980392156862745, 0.6627450980392157, 0.788235294117647)
2023
+ # Pakistan green: #006600: (0, 102, 0)
2024
+ PAKISTAN_GREEN = RGB.new(0.0, 0.4, 0.0)
2025
+ # Palatinate blue: #273BE2: (39, 59, 226)
2026
+ PALATINATE_BLUE = RGB.new(0.15294117647058825, 0.23137254901960785, 0.8862745098039215)
2027
+ # Palatinate purple: #682860: (104, 40, 96)
2028
+ PALATINATE_PURPLE = RGB.new(0.40784313725490196, 0.1568627450980392, 0.3764705882352941)
2029
+ # Pale aqua: #BCD4E6: (188, 212, 230)
2030
+ PALE_AQUA = RGB.new(0.7372549019607844, 0.8313725490196079, 0.9019607843137255)
2031
+ # Pale blue: #AFEEEE: (175, 238, 238)
2032
+ PALE_BLUE = RGB.new(0.6862745098039216, 0.9333333333333333, 0.9333333333333333)
2033
+ # Pale brown: #987654: (152, 118, 84)
2034
+ PALE_BROWN = RGB.new(0.596078431372549, 0.4627450980392157, 0.32941176470588235)
2035
+ # Pale carmine: #AF4035: (175, 64, 53)
2036
+ PALE_CARMINE = RGB.new(0.6862745098039216, 0.25098039215686274, 0.20784313725490197)
2037
+ # Pale cerulean: #9BC4E2: (155, 196, 226)
2038
+ PALE_CERULEAN = RGB.new(0.6078431372549019, 0.7686274509803922, 0.8862745098039215)
2039
+ # Pale chestnut: #DDADAF: (221, 173, 175)
2040
+ PALE_CHESTNUT = RGB.new(0.8666666666666667, 0.6784313725490196, 0.6862745098039216)
2041
+ # Pale copper: #DA8A67: (218, 138, 103)
2042
+ PALE_COPPER = RGB.new(0.8549019607843137, 0.5411764705882353, 0.403921568627451)
2043
+ # Pale cornflower blue: #ABCDEF: (171, 205, 239)
2044
+ PALE_CORNFLOWER_BLUE = RGB.new(0.6705882352941176, 0.803921568627451, 0.9372549019607843)
2045
+ # Pale cyan: #87D3F8: (135, 211, 248)
2046
+ PALE_CYAN = RGB.new(0.5294117647058824, 0.8274509803921568, 0.9725490196078431)
2047
+ # Pale gold: #E6BE8A: (230, 190, 138)
2048
+ PALE_GOLD = RGB.new(0.9019607843137255, 0.7450980392156863, 0.5411764705882353)
2049
+ # Pale goldenrod: #EEE8AA: (238, 232, 170)
2050
+ PALE_GOLDENROD = RGB.new(0.9333333333333333, 0.9098039215686274, 0.6666666666666666)
2051
+ # Pale green: #98FB98: (152, 251, 152)
2052
+ PALE_GREEN = RGB.new(0.596078431372549, 0.984313725490196, 0.596078431372549)
2053
+ # Pale lavender: #DCD0FF: (220, 208, 255)
2054
+ PALE_LAVENDER = RGB.new(0.8627450980392157, 0.8156862745098039, 1.0)
2055
+ # Pale magenta: #F984E5: (249, 132, 229)
2056
+ PALE_MAGENTA = RGB.new(0.9764705882352941, 0.5176470588235295, 0.8980392156862745)
2057
+ # Pale magenta-pink: #FF99CC: (255, 153, 204)
2058
+ PALE_MAGENTA_PINK = RGB.new(1.0, 0.6, 0.8)
2059
+ # Pale pink: #FADADD: (250, 218, 221)
2060
+ PALE_PINK = RGB.new(0.9803921568627451, 0.8549019607843137, 0.8666666666666667)
2061
+ # Pale plum: #DDA0DD: (221, 160, 221)
2062
+ PALE_PLUM = RGB.new(0.8666666666666667, 0.6274509803921569, 0.8666666666666667)
2063
+ # Pale red-violet: #DB7093: (219, 112, 147)
2064
+ PALE_RED_VIOLET = RGB.new(0.8588235294117647, 0.4392156862745098, 0.5764705882352941)
2065
+ # Pale robin egg blue: #96DED1: (150, 222, 209)
2066
+ PALE_ROBIN_EGG_BLUE = RGB.new(0.5882352941176471, 0.8705882352941177, 0.8196078431372549)
2067
+ # Pale silver: #C9C0BB: (201, 192, 187)
2068
+ PALE_SILVER = RGB.new(0.788235294117647, 0.7529411764705882, 0.7333333333333333)
2069
+ # Pale spring bud: #ECEBBD: (236, 235, 189)
2070
+ PALE_SPRING_BUD = RGB.new(0.9254901960784314, 0.9215686274509803, 0.7411764705882353)
2071
+ # Pale taupe: #BC987E: (188, 152, 126)
2072
+ PALE_TAUPE = RGB.new(0.7372549019607844, 0.596078431372549, 0.49411764705882355)
2073
+ # Pale turquoise: #AFEEEE: (175, 238, 238)
2074
+ PALE_TURQUOISE = RGB.new(0.6862745098039216, 0.9333333333333333, 0.9333333333333333)
2075
+ # Pale violet: #CC99FF: (204, 153, 255)
2076
+ PALE_VIOLET = RGB.new(0.8, 0.6, 1.0)
2077
+ # Pale violet-red: #DB7093: (219, 112, 147)
2078
+ PALE_VIOLET_RED = RGB.new(0.8588235294117647, 0.4392156862745098, 0.5764705882352941)
2079
+ # Palm Leaf: #6F9940: (111, 153, 64)
2080
+ PALM_LEAF = RGB.new(0.43529411764705883, 0.6, 0.25098039215686274)
2081
+ # Pansy purple: #78184A: (120, 24, 74)
2082
+ PANSY_PURPLE = RGB.new(0.47058823529411764, 0.09411764705882353, 0.2901960784313726)
2083
+ # Paolo Veronese green: #009B7D: (0, 155, 125)
2084
+ PAOLO_VERONESE_GREEN = RGB.new(0.0, 0.6078431372549019, 0.49019607843137253)
2085
+ # Papaya whip: #FFEFD5: (255, 239, 213)
2086
+ PAPAYA_WHIP = RGB.new(1.0, 0.9372549019607843, 0.8352941176470589)
2087
+ # Paradise pink: #E63E62: (230, 62, 98)
2088
+ PARADISE_PINK = RGB.new(0.9019607843137255, 0.24313725490196078, 0.3843137254901961)
2089
+ # Paris Green: #50C878: (80, 200, 120)
2090
+ PARIS_GREEN = RGB.new(0.3137254901960784, 0.7843137254901961, 0.47058823529411764)
2091
+ # Parrot Pink: #D998A0: (217, 152, 160)
2092
+ PARROT_PINK = RGB.new(0.8509803921568627, 0.596078431372549, 0.6274509803921569)
2093
+ # Pastel blue: #AEC6CF: (174, 198, 207)
2094
+ PASTEL_BLUE = RGB.new(0.6823529411764706, 0.7764705882352941, 0.8117647058823529)
2095
+ # Pastel brown: #836953: (130, 105, 83)
2096
+ PASTEL_BROWN = RGB.new(0.5098039215686274, 0.4117647058823529, 0.3254901960784314)
2097
+ # Pastel gray: #CFCFC4: (207, 207, 196)
2098
+ PASTEL_GRAY = RGB.new(0.8117647058823529, 0.8117647058823529, 0.7686274509803922)
2099
+ # Pastel green: #77DD77: (119, 221, 119)
2100
+ PASTEL_GREEN = RGB.new(0.4666666666666667, 0.8666666666666667, 0.4666666666666667)
2101
+ # Pastel magenta: #F49AC2: (244, 154, 194)
2102
+ PASTEL_MAGENTA = RGB.new(0.9568627450980393, 0.6039215686274509, 0.7607843137254902)
2103
+ # Pastel orange: #FFB347: (255, 179, 71)
2104
+ PASTEL_ORANGE = RGB.new(1.0, 0.7019607843137254, 0.2784313725490196)
2105
+ # Pastel pink: #DEA5A4: (222, 165, 164)
2106
+ PASTEL_PINK = RGB.new(0.8705882352941177, 0.6470588235294118, 0.6431372549019608)
2107
+ # Pastel purple: #B39EB5: (179, 158, 181)
2108
+ PASTEL_PURPLE = RGB.new(0.7019607843137254, 0.6196078431372549, 0.7098039215686275)
2109
+ # Pastel red: #FF6961: (255, 105, 97)
2110
+ PASTEL_RED = RGB.new(1.0, 0.4117647058823529, 0.3803921568627451)
2111
+ # Pastel violet: #CB99C9: (203, 153, 201)
2112
+ PASTEL_VIOLET = RGB.new(0.796078431372549, 0.6, 0.788235294117647)
2113
+ # Pastel yellow: #FDFD96: (253, 253, 150)
2114
+ PASTEL_YELLOW = RGB.new(0.9921568627450981, 0.9921568627450981, 0.5882352941176471)
2115
+ # Patriarch: #800080: (128, 0, 128)
2116
+ PATRIARCH = RGB.new(0.5019607843137255, 0.0, 0.5019607843137255)
2117
+ # Payne's grey: #536878: (83, 104, 120)
2118
+ PAYNES_GREY = RGB.new(0.3254901960784314, 0.40784313725490196, 0.47058823529411764)
2119
+ # Peach: #FFE5B4: (255, 229, 180)
2120
+ PEACH = RGB.new(1.0, 0.8980392156862745, 0.7058823529411765)
2121
+ # Peach-orange: #FFCC99: (255, 204, 153)
241
2122
  PEACH_ORANGE = RGB.new(1.0, 0.8, 0.6)
242
- # Peach-yellow: #FADFAD
243
- PEACH_YELLOW = RGB.new(0.980392156862745, 0.874509803921569, 0.67843137254902)
244
- # Pear: #D1E231
245
- PEAR = RGB.new(0.819607843137255, 0.886274509803922, 0.192156862745098)
246
- # Periwinkle: #CCCCFF
2123
+ # Peach puff: #FFDAB9: (255, 218, 185)
2124
+ PEACH_PUFF = RGB.new(1.0, 0.8549019607843137, 0.7254901960784313)
2125
+ # Peach-yellow: #FADFAD: (250, 223, 173)
2126
+ PEACH_YELLOW = RGB.new(0.9803921568627451, 0.8745098039215686, 0.6784313725490196)
2127
+ # Pear: #D1E231: (209, 226, 49)
2128
+ PEAR = RGB.new(0.8196078431372549, 0.8862745098039215, 0.19215686274509805)
2129
+ # Pearl: #EAE0C8: (234, 224, 200)
2130
+ PEARL = RGB.new(0.9176470588235294, 0.8784313725490196, 0.7843137254901961)
2131
+ # Pearl Aqua: #88D8C0: (136, 216, 192)
2132
+ PEARL_AQUA = RGB.new(0.5333333333333333, 0.8470588235294118, 0.7529411764705882)
2133
+ # Pearly purple: #B768A2: (183, 104, 162)
2134
+ PEARLY_PURPLE = RGB.new(0.7176470588235294, 0.40784313725490196, 0.6352941176470588)
2135
+ # Peridot: #E6E200: (230, 226, 0)
2136
+ PERIDOT = RGB.new(0.9019607843137255, 0.8862745098039215, 0.0)
2137
+ # Periwinkle: #CCCCFF: (204, 204, 255)
247
2138
  PERIWINKLE = RGB.new(0.8, 0.8, 1.0)
248
- # Persian blue: #1C39BB
249
- PERSIAN_BLUE = RGB.new(0.109803921568627, 0.223529411764706, 0.733333333333333)
250
- # Persian green: #00A693
251
- PERSIAN_GREEN = RGB.new(0.0, 0.650980392156863, 0.576470588235294)
252
- # Persian indigo: #32127A
253
- PERSIAN_INDIGO = RGB.new(0.196078431372549, 0.0705882352941176, 0.47843137254902)
254
- # Persian pink: #F77FBE
255
- PERSIAN_PINK = RGB.new(0.968627450980392, 0.498039215686275, 0.745098039215686)
256
- # Persian red: #CC3333
2139
+ # Periwinkle (Crayola): #C3CDE6: (195, 205, 230)
2140
+ PERIWINKLE_CRAYOLA = RGB.new(0.7647058823529411, 0.803921568627451, 0.9019607843137255)
2141
+ # Permanent Geranium Lake: #E12C2C: (225, 44, 44)
2142
+ PERMANENT_GERANIUM_LAKE = RGB.new(0.8823529411764706, 0.17254901960784313, 0.17254901960784313)
2143
+ # Persian blue: #1C39BB: (28, 57, 187)
2144
+ PERSIAN_BLUE = RGB.new(0.10980392156862745, 0.2235294117647059, 0.7333333333333333)
2145
+ # Persian green: #00A693: (0, 166, 147)
2146
+ PERSIAN_GREEN = RGB.new(0.0, 0.6509803921568628, 0.5764705882352941)
2147
+ # Persian indigo: #32127A: (50, 18, 122)
2148
+ PERSIAN_INDIGO = RGB.new(0.19607843137254902, 0.07058823529411765, 0.47843137254901963)
2149
+ # Persian orange: #D99058: (217, 144, 88)
2150
+ PERSIAN_ORANGE = RGB.new(0.8509803921568627, 0.5647058823529412, 0.34509803921568627)
2151
+ # Persian pink: #F77FBE: (247, 127, 190)
2152
+ PERSIAN_PINK = RGB.new(0.9686274509803922, 0.4980392156862745, 0.7450980392156863)
2153
+ # Persian plum: #701C1C: (112, 28, 28)
2154
+ PERSIAN_PLUM = RGB.new(0.4392156862745098, 0.10980392156862745, 0.10980392156862745)
2155
+ # Persian red: #CC3333: (204, 51, 51)
257
2156
  PERSIAN_RED = RGB.new(0.8, 0.2, 0.2)
258
- # Persian rose: #FF1CB1
259
- PERSIAN_ROSE = RGB.new(1.0, 0.109803921568627, 0.694117647058824)
260
- # Pine Green: #01796F
261
- PINE_GREEN = RGB.new(0.00392156862745098, 0.474509803921569, 0.435294117647059)
262
- # Pink: #FFC0CB
263
- PINK = RGB.new(1.0, 0.752941176470588, 0.796078431372549)
264
- # Pink-orange: #FF9966
2157
+ # Persian rose: #FE28A2: (254, 40, 162)
2158
+ PERSIAN_ROSE = RGB.new(0.996078431372549, 0.1568627450980392, 0.6352941176470588)
2159
+ # Persimmon: #EC5800: (236, 88, 0)
2160
+ PERSIMMON = RGB.new(0.9254901960784314, 0.34509803921568627, 0.0)
2161
+ # Peru: #CD853F: (205, 133, 63)
2162
+ PERU = RGB.new(0.803921568627451, 0.5215686274509804, 0.24705882352941178)
2163
+ # Pewter Blue: #8BA8B7: (139, 168, 183)
2164
+ PEWTER_BLUE = RGB.new(0.5450980392156862, 0.6588235294117647, 0.7176470588235294)
2165
+ # Philippine blue: #0038A7: (0, 56, 167)
2166
+ PHILIPPINE_BLUE = RGB.new(0.0, 0.2196078431372549, 0.6549019607843137)
2167
+ # Philippine bronze: #6E3A07: (110, 58, 7)
2168
+ PHILIPPINE_BRONZE = RGB.new(0.43137254901960786, 0.22745098039215686, 0.027450980392156862)
2169
+ # Philippine brown: #5D1916: (93, 25, 22)
2170
+ PHILIPPINE_BROWN = RGB.new(0.36470588235294116, 0.09803921568627451, 0.08627450980392157)
2171
+ # Philippine gold: #B17304: (177, 115, 4)
2172
+ PHILIPPINE_GOLD = RGB.new(0.6941176470588235, 0.45098039215686275, 0.01568627450980392)
2173
+ # Philippine golden yellow: #FFDF00: (253, 223, 22)
2174
+ PHILIPPINE_GOLDEN_YELLOW = RGB.new(0.9921568627450981, 0.8745098039215686, 0.08627450980392157)
2175
+ # Philippine gray: #8C8C8C: (140, 140, 140)
2176
+ PHILIPPINE_GRAY = RGB.new(0.5490196078431373, 0.5490196078431373, 0.5490196078431373)
2177
+ # Philippine green: #008543: (0, 133, 67)
2178
+ PHILIPPINE_GREEN = RGB.new(0.0, 0.5215686274509804, 0.2627450980392157)
2179
+ # Philippine indigo: #00416A: (0, 65, 106)
2180
+ PHILIPPINE_INDIGO = RGB.new(0.0, 0.2549019607843137, 0.41568627450980394)
2181
+ # Philippine orange: #FF7300: (255, 115, 0)
2182
+ PHILIPPINE_ORANGE = RGB.new(1.0, 0.45098039215686275, 0.0)
2183
+ # Philippine pink: #FA1A8E: (255, 26, 142)
2184
+ PHILIPPINE_PINK = RGB.new(1.0, 0.10196078431372549, 0.5568627450980392)
2185
+ # Philippine red: #CE1127: (206, 17, 39)
2186
+ PHILIPPINE_RED = RGB.new(0.807843137254902, 0.06666666666666667, 0.15294117647058825)
2187
+ # Philippine silver: #B3B3B3: (179, 179, 179)
2188
+ PHILIPPINE_SILVER = RGB.new(0.7019607843137254, 0.7019607843137254, 0.7019607843137254)
2189
+ # Philippine sky blue: #0066FF: (0, 102, 255)
2190
+ PHILIPPINE_SKY_BLUE = RGB.new(0.0, 0.4, 1.0)
2191
+ # Philippine violet: #81007F: (129, 0, 127)
2192
+ PHILIPPINE_VIOLET = RGB.new(0.5058823529411764, 0.0, 0.4980392156862745)
2193
+ # Philippine yellow: #FECB00: (254, 203, 0)
2194
+ PHILIPPINE_YELLOW = RGB.new(0.996078431372549, 0.796078431372549, 0.0)
2195
+ # Phlox: #DF00FF: (223, 0, 255)
2196
+ PHLOX = RGB.new(0.8745098039215686, 0.0, 1.0)
2197
+ # Phthalo blue: #000F89: (0, 15, 137)
2198
+ PHTHALO_BLUE = RGB.new(0.0, 0.058823529411764705, 0.5372549019607843)
2199
+ # Phthalo green: #123524: (18, 53, 36)
2200
+ PHTHALO_GREEN = RGB.new(0.07058823529411765, 0.20784313725490197, 0.1411764705882353)
2201
+ # Picton blue: #45B1E8: (69, 177, 232)
2202
+ PICTON_BLUE = RGB.new(0.27058823529411763, 0.6941176470588235, 0.9098039215686274)
2203
+ # Pictorial carmine: #C30B4E: (195, 11, 78)
2204
+ PICTORIAL_CARMINE = RGB.new(0.7647058823529411, 0.043137254901960784, 0.3058823529411765)
2205
+ # Piggy pink: #FDDDE6: (253, 221, 230)
2206
+ PIGGY_PINK = RGB.new(0.9921568627450981, 0.8666666666666667, 0.9019607843137255)
2207
+ # Pine green: #01796F: (1, 121, 111)
2208
+ PINE_GREEN = RGB.new(0.00392156862745098, 0.4745098039215686, 0.43529411764705883)
2209
+ # Pine tree: #2A2F23: (42, 47, 35)
2210
+ PINE_TREE = RGB.new(0.16470588235294117, 0.1843137254901961, 0.13725490196078433)
2211
+ # Pineapple: #563C0D: (86, 60, 13)
2212
+ PINEAPPLE = RGB.new(0.33725490196078434, 0.23529411764705882, 0.050980392156862744)
2213
+ # Pink: #FFC0CB: (255, 192, 203)
2214
+ PINK = RGB.new(1.0, 0.7529411764705882, 0.796078431372549)
2215
+ # Pink (Pantone): #D74894: (215, 72, 148)
2216
+ PINK_PANTONE = RGB.new(0.8431372549019608, 0.2823529411764706, 0.5803921568627451)
2217
+ # Pink Diamond (Ace Hardware Color): #F6D6DE: (246, 214, 222)
2218
+ PINK_DIAMOND_ACE_HARDWARE_COLOR = RGB.new(0.9647058823529412, 0.8392156862745098, 0.8705882352941177)
2219
+ # Pink Diamond (Independent Retailers Colors): #F0D3DC: (240, 211, 220)
2220
+ PINK_DIAMOND_INDEPENDENT_RETAILERS_COLORS = RGB.new(0.9411764705882353, 0.8274509803921568, 0.8627450980392157)
2221
+ # Pink flamingo: #FC74FD: (252, 116, 253)
2222
+ PINK_FLAMINGO = RGB.new(0.9882352941176471, 0.4549019607843137, 0.9921568627450981)
2223
+ # Pink lace: #FFDDF4: (255, 221, 244)
2224
+ PINK_LACE = RGB.new(1.0, 0.8666666666666667, 0.9568627450980393)
2225
+ # Pink lavender: #D8B2D1: (216, 178, 209)
2226
+ PINK_LAVENDER = RGB.new(0.8470588235294118, 0.6980392156862745, 0.8196078431372549)
2227
+ # Pink-orange: #FF9966: (255, 153, 102)
265
2228
  PINK_ORANGE = RGB.new(1.0, 0.6, 0.4)
266
- # Pomegranate: #F34723
267
- POMEGRANATE = RGB.new(0.952941176470588, 0.27843137254902, 0.137254901960784)
268
- # Powder blue (web): #B0E0E6
269
- POWDER_BLUE_WEB = RGB.new(0.690196078431373, 0.87843137254902, 0.901960784313726)
270
- # Puce: #CC8899
271
- PUCE = RGB.new(0.8, 0.533333333333333, 0.6)
272
- # Prussian blue: #003153
273
- PRUSSIAN_BLUE = RGB.new(0.0, 0.192156862745098, 0.325490196078431)
274
- # Pumpkin: #FF7518
275
- PUMPKIN = RGB.new(1.0, 0.458823529411765, 0.0941176470588235)
276
- # Purple: #660099
277
- PURPLE = RGB.new(0.4, 0.0, 0.6)
278
- # Raw umber: #734A12
279
- RAW_UMBER = RGB.new(0.450980392156863, 0.290196078431373, 0.0705882352941176)
280
- # Red: #FF0000
2229
+ # Pink pearl: #E7ACCF: (231, 172, 207)
2230
+ PINK_PEARL = RGB.new(0.9058823529411765, 0.6745098039215687, 0.8117647058823529)
2231
+ # Pink raspberry: #980036: (152, 0, 54)
2232
+ PINK_RASPBERRY = RGB.new(0.596078431372549, 0.0, 0.21176470588235294)
2233
+ # Pink Sherbet: #F78FA7: (247, 143, 167)
2234
+ PINK_SHERBET = RGB.new(0.9686274509803922, 0.5607843137254902, 0.6549019607843137)
2235
+ # Pistachio: #93C572: (147, 197, 114)
2236
+ PISTACHIO = RGB.new(0.5764705882352941, 0.7725490196078432, 0.4470588235294118)
2237
+ # Pixie Powder: #391285: (57, 18, 133)
2238
+ PIXIE_POWDER = RGB.new(0.2235294117647059, 0.07058823529411765, 0.5215686274509804)
2239
+ # Platinum: #E5E4E2: (229, 228, 226)
2240
+ PLATINUM = RGB.new(0.8980392156862745, 0.8941176470588236, 0.8862745098039215)
2241
+ # Plum: #8E4585: (142, 69, 133)
2242
+ PLUM = RGB.new(0.5568627450980392, 0.27058823529411763, 0.5215686274509804)
2243
+ # Plum (web): #DDA0DD: (221, 160, 221)
2244
+ PLUM_WEB = RGB.new(0.8666666666666667, 0.6274509803921569, 0.8666666666666667)
2245
+ # Plump Purple: #5946B2: (89, 70, 178)
2246
+ PLUMP_PURPLE = RGB.new(0.34901960784313724, 0.27450980392156865, 0.6980392156862745)
2247
+ # Police blue: #374F6B: (55, 79, 107)
2248
+ POLICE_BLUE = RGB.new(0.21568627450980393, 0.30980392156862746, 0.4196078431372549)
2249
+ # Polished Pine: #5DA493: (93, 164, 147)
2250
+ POLISHED_PINE = RGB.new(0.36470588235294116, 0.6431372549019608, 0.5764705882352941)
2251
+ # Pomp and Power: #86608E: (134, 96, 142)
2252
+ POMP_AND_POWER = RGB.new(0.5254901960784314, 0.3764705882352941, 0.5568627450980392)
2253
+ # Popstar: #BE4F62: (190, 79, 98)
2254
+ POPSTAR = RGB.new(0.7450980392156863, 0.30980392156862746, 0.3843137254901961)
2255
+ # Portland Orange: #FF5A36: (255, 90, 54)
2256
+ PORTLAND_ORANGE = RGB.new(1.0, 0.35294117647058826, 0.21176470588235294)
2257
+ # Powder blue: #B0E0E6: (176, 224, 230)
2258
+ POWDER_BLUE = RGB.new(0.6901960784313725, 0.8784313725490196, 0.9019607843137255)
2259
+ # Prilly blue: #329CC3: (50, 156, 195)
2260
+ PRILLY_BLUE = RGB.new(0.19607843137254902, 0.611764705882353, 0.7647058823529411)
2261
+ # Prilly pink: #FF40A0: (255, 64, 160)
2262
+ PRILLY_PINK = RGB.new(1.0, 0.25098039215686274, 0.6274509803921569)
2263
+ # Prilly red: #FF0040: (255, 0, 64)
2264
+ PRILLY_RED = RGB.new(1.0, 0.0, 0.25098039215686274)
2265
+ # Princess Perfume: #FF85CF: (255, 133, 207)
2266
+ PRINCESS_PERFUME = RGB.new(1.0, 0.5215686274509804, 0.8117647058823529)
2267
+ # Princeton orange: #F58025: (245, 128, 37)
2268
+ PRINCETON_ORANGE = RGB.new(0.9607843137254902, 0.5019607843137255, 0.1450980392156863)
2269
+ # Prune: #701C1C: (112, 28, 28)
2270
+ PRUNE = RGB.new(0.4392156862745098, 0.10980392156862745, 0.10980392156862745)
2271
+ # Prussian blue: #003153: (0, 49, 83)
2272
+ PRUSSIAN_BLUE = RGB.new(0.0, 0.19215686274509805, 0.3254901960784314)
2273
+ # Psychedelic purple: #DF00FF: (223, 0, 255)
2274
+ PSYCHEDELIC_PURPLE = RGB.new(0.8745098039215686, 0.0, 1.0)
2275
+ # Puce: #CC8899: (204, 136, 153)
2276
+ PUCE = RGB.new(0.8, 0.5333333333333333, 0.6)
2277
+ # Puce red: #722F37: (114, 47, 55)
2278
+ PUCE_RED = RGB.new(0.4470588235294118, 0.1843137254901961, 0.21568627450980393)
2279
+ # Pullman Brown (UPS Brown): #644117: (100, 65, 23)
2280
+ PULLMAN_BROWN_UPS_BROWN = RGB.new(0.39215686274509803, 0.2549019607843137, 0.09019607843137255)
2281
+ # Pullman Green: #3B331C: (59, 51, 28)
2282
+ PULLMAN_GREEN = RGB.new(0.23137254901960785, 0.2, 0.10980392156862745)
2283
+ # Pumpkin: #FF7518: (255, 117, 24)
2284
+ PUMPKIN = RGB.new(1.0, 0.4588235294117647, 0.09411764705882353)
2285
+ # Purple (HTML): #800080: (128, 0, 128)
2286
+ PURPLE_HTML = RGB.new(0.5019607843137255, 0.0, 0.5019607843137255)
2287
+ # Purple (Munsell): #9F00C5: (159, 0, 197)
2288
+ PURPLE_MUNSELL = RGB.new(0.6235294117647059, 0.0, 0.7725490196078432)
2289
+ # Purple (X11): #A020F0: (160, 32, 240)
2290
+ PURPLE_X11 = RGB.new(0.6274509803921569, 0.12549019607843137, 0.9411764705882353)
2291
+ # Purple Heart: #69359C: (105, 53, 156)
2292
+ PURPLE_HEART = RGB.new(0.4117647058823529, 0.20784313725490197, 0.611764705882353)
2293
+ # Purple mountain majesty: #9678B6: (150, 120, 182)
2294
+ PURPLE_MOUNTAIN_MAJESTY = RGB.new(0.5882352941176471, 0.47058823529411764, 0.7137254901960784)
2295
+ # Purple navy: #4E5180: (78, 81, 128)
2296
+ PURPLE_NAVY = RGB.new(0.3058823529411765, 0.3176470588235294, 0.5019607843137255)
2297
+ # Purple pizzazz: #FE4EDA: (254, 78, 218)
2298
+ PURPLE_PIZZAZZ = RGB.new(0.996078431372549, 0.3058823529411765, 0.8549019607843137)
2299
+ # Purple Plum: #9C51B6: (156, 81, 182)
2300
+ PURPLE_PLUM = RGB.new(0.611764705882353, 0.3176470588235294, 0.7137254901960784)
2301
+ # Purple taupe: #50404D: (80, 64, 77)
2302
+ PURPLE_TAUPE = RGB.new(0.3137254901960784, 0.25098039215686274, 0.30196078431372547)
2303
+ # Purpureus: #9A4EAE: (154, 78, 174)
2304
+ PURPUREUS = RGB.new(0.6039215686274509, 0.3058823529411765, 0.6823529411764706)
2305
+ # Quartz: #51484F: (81, 72, 79)
2306
+ QUARTZ = RGB.new(0.3176470588235294, 0.2823529411764706, 0.30980392156862746)
2307
+ # Queen blue: #436B95: (67, 107, 149)
2308
+ QUEEN_BLUE = RGB.new(0.2627450980392157, 0.4196078431372549, 0.5843137254901961)
2309
+ # Queen pink: #E8CCD7: (232, 204, 215)
2310
+ QUEEN_PINK = RGB.new(0.9098039215686274, 0.8, 0.8431372549019608)
2311
+ # Quick Silver: #A6A6A6: (166, 166, 166)
2312
+ QUICK_SILVER = RGB.new(0.6509803921568628, 0.6509803921568628, 0.6509803921568628)
2313
+ # Quinacridone magenta: #8E3A59: (142, 58, 89)
2314
+ QUINACRIDONE_MAGENTA = RGB.new(0.5568627450980392, 0.22745098039215686, 0.34901960784313724)
2315
+ # Quincy: #6A5445: (106, 84, 69)
2316
+ QUINCY = RGB.new(0.41568627450980394, 0.32941176470588235, 0.27058823529411763)
2317
+ # Rackley: #5D8AA8: (93, 138, 168)
2318
+ RACKLEY = RGB.new(0.36470588235294116, 0.5411764705882353, 0.6588235294117647)
2319
+ # Radical Red: #FF355E: (255, 53, 94)
2320
+ RADICAL_RED = RGB.new(1.0, 0.20784313725490197, 0.3686274509803922)
2321
+ # Raisin black: #242124: (36, 33, 36)
2322
+ RAISIN_BLACK = RGB.new(0.1411764705882353, 0.12941176470588237, 0.1411764705882353)
2323
+ # Rajah: #FBAB60: (251, 171, 96)
2324
+ RAJAH = RGB.new(0.984313725490196, 0.6705882352941176, 0.3764705882352941)
2325
+ # Raspberry: #E30B5D: (227, 11, 92)
2326
+ RASPBERRY = RGB.new(0.8901960784313725, 0.043137254901960784, 0.3607843137254902)
2327
+ # Raspberry glace: #915F6D: (145, 95, 109)
2328
+ RASPBERRY_GLACE = RGB.new(0.5686274509803921, 0.37254901960784315, 0.42745098039215684)
2329
+ # Raspberry pink: #E25098: (226, 80, 152)
2330
+ RASPBERRY_PINK = RGB.new(0.8862745098039215, 0.3137254901960784, 0.596078431372549)
2331
+ # Raspberry rose: #B3446C: (179, 68, 108)
2332
+ RASPBERRY_ROSE = RGB.new(0.7019607843137254, 0.26666666666666666, 0.4235294117647059)
2333
+ # Raw Sienna: #D68A59: (214, 138, 89)
2334
+ RAW_SIENNA = RGB.new(0.8392156862745098, 0.5411764705882353, 0.34901960784313724)
2335
+ # Raw umber: #826644: (130, 102, 68)
2336
+ RAW_UMBER = RGB.new(0.5098039215686274, 0.4, 0.26666666666666666)
2337
+ # Razzle dazzle rose: #FF33CC: (255, 51, 204)
2338
+ RAZZLE_DAZZLE_ROSE = RGB.new(1.0, 0.2, 0.8)
2339
+ # Razzmatazz: #E3256B: (227, 37, 107)
2340
+ RAZZMATAZZ = RGB.new(0.8901960784313725, 0.1450980392156863, 0.4196078431372549)
2341
+ # Razzmic Berry: #8D4E85: (141, 78, 133)
2342
+ RAZZMIC_BERRY = RGB.new(0.5529411764705883, 0.3058823529411765, 0.5215686274509804)
2343
+ # Rebecca Purple: #663399: (102, 52, 153)
2344
+ REBECCA_PURPLE = RGB.new(0.4, 0.20392156862745098, 0.6)
2345
+ # Red: #FF0000: (255, 0, 0)
281
2346
  RED = RGB.new(1.0, 0.0, 0.0)
282
- # Red-violet: #C71585
283
- RED_VIOLET = RGB.new(0.780392156862745, 0.0823529411764706, 0.52156862745098)
284
- # Robin egg blue: #00CCCC
2347
+ # Red (Crayola): #EE204D: (238, 32, 77)
2348
+ RED_CRAYOLA = RGB.new(0.9333333333333333, 0.12549019607843137, 0.30196078431372547)
2349
+ # Red (Munsell): #F2003C: (242, 0, 60)
2350
+ RED_MUNSELL = RGB.new(0.9490196078431372, 0.0, 0.23529411764705882)
2351
+ # Red (NCS): #C40233: (196, 2, 51)
2352
+ RED_NCS = RGB.new(0.7686274509803922, 0.00784313725490196, 0.2)
2353
+ # Red (Pantone): #ED2939: (237, 41, 57)
2354
+ RED_PANTONE = RGB.new(0.9294117647058824, 0.1607843137254902, 0.2235294117647059)
2355
+ # Red (pigment): #ED1C24: (237, 28, 36)
2356
+ RED_PIGMENT = RGB.new(0.9294117647058824, 0.10980392156862745, 0.1411764705882353)
2357
+ # Red (RYB): #FE2712: (254, 39, 18)
2358
+ RED_RYB = RGB.new(0.996078431372549, 0.15294117647058825, 0.07058823529411765)
2359
+ # Red-brown: #A52A2A: (165, 42, 42)
2360
+ RED_BROWN = RGB.new(0.6470588235294118, 0.16470588235294117, 0.16470588235294117)
2361
+ # Red cola: #DF0118: (223, 1, 24)
2362
+ RED_COLA = RGB.new(0.8745098039215686, 0.00392156862745098, 0.09411764705882353)
2363
+ # Red devil: #860111: (134, 1, 17)
2364
+ RED_DEVIL = RGB.new(0.5254901960784314, 0.00392156862745098, 0.06666666666666667)
2365
+ # Red-orange: #FF5349: (255, 83, 73)
2366
+ RED_ORANGE = RGB.new(1.0, 0.3254901960784314, 0.28627450980392155)
2367
+ # Red-orange (Crayola): #FF681F: (255, 104, 31)
2368
+ RED_ORANGE_CRAYOLA = RGB.new(1.0, 0.40784313725490196, 0.12156862745098039)
2369
+ # Red-orange (Color wheel): #FF4500: (255, 69, 0)
2370
+ RED_ORANGE_COLOR_WHEEL = RGB.new(1.0, 0.27058823529411763, 0.0)
2371
+ # Red-purple: #E40078: (228, 0, 120)
2372
+ RED_PURPLE = RGB.new(0.8941176470588236, 0.0, 0.47058823529411764)
2373
+ # Red rum: #973A4A: (151, 58, 74)
2374
+ RED_RUM = RGB.new(0.592156862745098, 0.22745098039215686, 0.2901960784313726)
2375
+ # Red Salsa: #FD3A4A: (253, 58, 74)
2376
+ RED_SALSA = RGB.new(0.9921568627450981, 0.22745098039215686, 0.2901960784313726)
2377
+ # Red strawberry: #EC0304: (236, 3, 1)
2378
+ RED_STRAWBERRY = RGB.new(0.9254901960784314, 0.011764705882352941, 0.00392156862745098)
2379
+ # Red-violet: #C71585: (199, 21, 133)
2380
+ RED_VIOLET = RGB.new(0.7803921568627451, 0.08235294117647059, 0.5215686274509804)
2381
+ # Red-violet (Crayola): #C0448F: (192, 68, 143)
2382
+ RED_VIOLET_CRAYOLA = RGB.new(0.7529411764705882, 0.26666666666666666, 0.5607843137254902)
2383
+ # Red-violet (Color wheel): #922B3E: (146, 43, 62)
2384
+ RED_VIOLET_COLOR_WHEEL = RGB.new(0.5725490196078431, 0.16862745098039217, 0.24313725490196078)
2385
+ # Redwood: #A45A52: (164, 90, 82)
2386
+ REDWOOD = RGB.new(0.6431372549019608, 0.35294117647058826, 0.3215686274509804)
2387
+ # Registration black: #000000: (0, 0, 0)
2388
+ REGISTRATION_BLACK = RGB.new(0.0, 0.0, 0.0)
2389
+ # Resolution blue: #002387: (0, 35, 135)
2390
+ RESOLUTION_BLUE = RGB.new(0.0, 0.13725490196078433, 0.5294117647058824)
2391
+ # Rhythm: #777696: (119, 118, 150)
2392
+ RHYTHM = RGB.new(0.4666666666666667, 0.4627450980392157, 0.5882352941176471)
2393
+ # Rich brilliant lavender: #F1A7FE: (241, 167, 254)
2394
+ RICH_BRILLIANT_LAVENDER = RGB.new(0.9450980392156862, 0.6549019607843137, 0.996078431372549)
2395
+ # Rich electric blue: #0892D0: (8, 146, 208)
2396
+ RICH_ELECTRIC_BLUE = RGB.new(0.03137254901960784, 0.5725490196078431, 0.8156862745098039)
2397
+ # Rich lavender: #A76BCF: (167, 107, 207)
2398
+ RICH_LAVENDER = RGB.new(0.6549019607843137, 0.4196078431372549, 0.8117647058823529)
2399
+ # Rich lilac: #B666D2: (182, 102, 210)
2400
+ RICH_LILAC = RGB.new(0.7137254901960784, 0.4, 0.8235294117647058)
2401
+ # Rich maroon: #B03060: (176, 48, 96)
2402
+ RICH_MAROON = RGB.new(0.6901960784313725, 0.18823529411764706, 0.3764705882352941)
2403
+ # Rifle green: #444C38: (68, 76, 56)
2404
+ RIFLE_GREEN = RGB.new(0.26666666666666666, 0.2980392156862745, 0.2196078431372549)
2405
+ # Ripe mango: #FFC324: (255, 195, 36)
2406
+ RIPE_MANGO = RGB.new(1.0, 0.7647058823529411, 0.1411764705882353)
2407
+ # Roast coffee: #704241: (112, 66, 65)
2408
+ ROAST_COFFEE = RGB.new(0.4392156862745098, 0.25882352941176473, 0.2549019607843137)
2409
+ # Robin egg blue: #00CCCC: (0, 204, 204)
285
2410
  ROBIN_EGG_BLUE = RGB.new(0.0, 0.8, 0.8)
286
- # Rose: #FF007F
287
- ROSE = RGB.new(1.0, 0.0, 0.498039215686275)
288
- # Royal Blue: #4169E1
289
- ROYAL_BLUE = RGB.new(0.254901960784314, 0.411764705882353, 0.882352941176471)
290
- # Russet: #80461B
291
- RUSSET = RGB.new(0.501960784313725, 0.274509803921569, 0.105882352941176)
292
- # Rust: #B7410E
293
- RUST = RGB.new(0.717647058823529, 0.254901960784314, 0.0549019607843137)
294
- # Safety Orange (Blaze Orange): #FF6600
295
- SAFETY_ORANGE = RGB.new(1.0, 0.4, 0.0)
296
- BLAZE_ORANGE = SAFETY_ORANGE
297
- # Saffron: #F4C430
298
- SAFFRON = RGB.new(0.956862745098039, 0.768627450980392, 0.188235294117647)
299
- # Sapphire: #082567
300
- SAPPHIRE = RGB.new(0.0313725490196078, 0.145098039215686, 0.403921568627451)
301
- # Salmon: #FF8C69
302
- SALMON = RGB.new(1.0, 0.549019607843137, 0.411764705882353)
303
- # Sandy brown: #F4A460
304
- SANDY_BROWN = RGB.new(0.956862745098039, 0.643137254901961, 0.376470588235294)
305
- # Sangria: #92000A
306
- SANGRIA = RGB.new(0.572549019607843, 0.0, 0.0392156862745098)
307
- # Scarlet: #FF2400
308
- SCARLET = RGB.new(1.0, 0.141176470588235, 0.0)
309
- # School bus yellow: #FFD800
310
- SCHOOL_BUS_YELLOW = RGB.new(1.0, 0.847058823529412, 0.0)
311
- # Sea Green: #2E8B57
312
- SEA_GREEN = RGB.new(0.180392156862745, 0.545098039215686, 0.341176470588235)
313
- # Seashell: #FFF5EE
314
- SEASHELL = RGB.new(1.0, 0.96078431372549, 0.933333333333333)
315
- # Selective yellow: #FFBA00
316
- SELECTIVE_YELLOW = RGB.new(1.0, 0.729411764705882, 0.0)
317
- # Sepia: #704214
318
- SEPIA = RGB.new(0.43921568627451, 0.258823529411765, 0.0784313725490196)
319
- # Shocking Pink: #FC0FC0
320
- SHOCKING_PINK = RGB.new(0.988235294117647, 0.0588235294117647, 0.752941176470588)
321
- # Silver: #C0C0C0
322
- SILVER = RGB.new(0.752941176470588, 0.752941176470588, 0.752941176470588)
323
- # Slate gray: #708090
324
- SLATE_GRAY = RGB.new(0.43921568627451, 0.501960784313725, 0.564705882352941)
325
- # Smalt (Dark powder blue): #003399
326
- SMALT = RGB.new(0.0, 0.2, 0.6)
327
- DARK_POWDER_BLUE = SMALT
328
- # Spring Green: #00FF7F
329
- SPRING_GREEN = RGB.new(0.0, 1.0, 0.498039215686275)
330
- # Steel blue: #4682B4
331
- STEEL_BLUE = RGB.new(0.274509803921569, 0.509803921568627, 0.705882352941177)
332
- # Swamp green: #ACB78E
333
- SWAMP_GREEN = RGB.new(0.674509803921569, 0.717647058823529, 0.556862745098039)
334
- # Tan: #D2B48C
335
- TAN = RGB.new(0.823529411764706, 0.705882352941177, 0.549019607843137)
336
- # Tangerine: #FFCC00
337
- TANGERINE = RGB.new(1.0, 0.8, 0.0)
338
- # Taupe: #483C32
339
- TAUPE = RGB.new(0.282352941176471, 0.235294117647059, 0.196078431372549)
340
- # Tea Green: #D0F0C0
341
- TEA_GREEN = RGB.new(0.815686274509804, 0.941176470588235, 0.752941176470588)
342
- # Teal: #008080
343
- TEAL = RGB.new(0.0, 0.501960784313725, 0.501960784313725)
344
- # Tenn&eacute; (Tawny): #CD5700
345
- TENNE = RGB.new(0.803921568627451, 0.341176470588235, 0.0)
346
- TAWNY = TENNE
347
- # Terra cotta: #E2725B
348
- TERRA_COTTA = RGB.new(0.886274509803922, 0.447058823529412, 0.356862745098039)
349
- # Thistle: #D8BFD8
350
- THISTLE = RGB.new(0.847058823529412, 0.749019607843137, 0.847058823529412)
351
- # Turquoise: #30D5C8
352
- TURQUOISE = RGB.new(0.188235294117647, 0.835294117647059, 0.784313725490196)
353
- # Ultramarine: #120A8F
354
- ULTRAMARINE = RGB.new(0.0705882352941176, 0.0392156862745098, 0.56078431372549)
355
- # Vermilion: #FF4D00
356
- VERMILION = RGB.new(1.0, 0.301960784313725, 0.0)
357
- # Violet: #8B00FF
358
- VIOLET = RGB.new(0.545098039215686, 0.0, 1.0)
359
- # Violet-eggplant: #991199
360
- VIOLET_EGGPLANT = RGB.new(0.6, 0.0666666666666667, 0.6)
361
- # Viridian: #40826D
362
- VIRIDIAN = RGB.new(0.250980392156863, 0.509803921568627, 0.427450980392157)
363
- # Wheat: #F5DEB3
364
- WHEAT = RGB.new(0.96078431372549, 0.870588235294118, 0.701960784313725)
365
- # White: #FFFFFF
2411
+ # Rocket metallic: #8A7F80: (138, 127, 128)
2412
+ ROCKET_METALLIC = RGB.new(0.5411764705882353, 0.4980392156862745, 0.5019607843137255)
2413
+ # Roman silver: #838996: (131, 137, 150)
2414
+ ROMAN_SILVER = RGB.new(0.5137254901960784, 0.5372549019607843, 0.5882352941176471)
2415
+ # Root beer: #290E05: (41, 14, 5)
2416
+ ROOT_BEER = RGB.new(0.1607843137254902, 0.054901960784313725, 0.0196078431372549)
2417
+ # Rose: #FF007F: (255, 0, 127)
2418
+ ROSE = RGB.new(1.0, 0.0, 0.4980392156862745)
2419
+ # Rose bonbon: #F9429E: (249, 66, 158)
2420
+ ROSE_BONBON = RGB.new(0.9764705882352941, 0.25882352941176473, 0.6196078431372549)
2421
+ # Rose Dust: #9E5E6F: (158, 94, 111)
2422
+ ROSE_DUST = RGB.new(0.6196078431372549, 0.3686274509803922, 0.43529411764705883)
2423
+ # Rose ebony: #674846: (103, 72, 70)
2424
+ ROSE_EBONY = RGB.new(0.403921568627451, 0.2823529411764706, 0.27450980392156865)
2425
+ # Rose garnet: #960145: (150, 1, 69)
2426
+ ROSE_GARNET = RGB.new(0.5882352941176471, 0.00392156862745098, 0.27058823529411763)
2427
+ # Rose gold: #B76E79: (183, 110, 121)
2428
+ ROSE_GOLD = RGB.new(0.7176470588235294, 0.43137254901960786, 0.4745098039215686)
2429
+ # Rose madder: #E32636: (227, 38, 54)
2430
+ ROSE_MADDER = RGB.new(0.8901960784313725, 0.14901960784313725, 0.21176470588235294)
2431
+ # Rose pink: #FF66CC: (255, 102, 204)
2432
+ ROSE_PINK = RGB.new(1.0, 0.4, 0.8)
2433
+ # Rose quartz: #AA98A9: (170, 152, 169)
2434
+ ROSE_QUARTZ = RGB.new(0.6666666666666666, 0.596078431372549, 0.6627450980392157)
2435
+ # Rose quartz pink: #BD559C: (189, 85, 156)
2436
+ ROSE_QUARTZ_PINK = RGB.new(0.7411764705882353, 0.3333333333333333, 0.611764705882353)
2437
+ # Rose red: #C21E56: (194, 30, 86)
2438
+ ROSE_RED = RGB.new(0.7607843137254902, 0.11764705882352941, 0.33725490196078434)
2439
+ # Rose taupe: #905D5D: (144, 93, 93)
2440
+ ROSE_TAUPE = RGB.new(0.5647058823529412, 0.36470588235294116, 0.36470588235294116)
2441
+ # Rose vale: #AB4E52: (171, 78, 82)
2442
+ ROSE_VALE = RGB.new(0.6705882352941176, 0.3058823529411765, 0.3215686274509804)
2443
+ # Rosewood: #65000B: (101, 0, 11)
2444
+ ROSEWOOD = RGB.new(0.396078431372549, 0.0, 0.043137254901960784)
2445
+ # Rosy brown: #BC8F8F: (188, 143, 143)
2446
+ ROSY_BROWN = RGB.new(0.7372549019607844, 0.5607843137254902, 0.5607843137254902)
2447
+ # Royal azure: #0038A8: (0, 56, 168)
2448
+ ROYAL_AZURE = RGB.new(0.0, 0.2196078431372549, 0.6588235294117647)
2449
+ # Royal blue: #002366: (0, 35, 102)
2450
+ ROYAL_BLUE = RGB.new(0.0, 0.13725490196078433, 0.4)
2451
+ # Royal brown: #523B35: (82, 59, 53)
2452
+ ROYAL_BROWN = RGB.new(0.3215686274509804, 0.23137254901960785, 0.20784313725490197)
2453
+ # Royal fuchsia: #CA2C92: (202, 44, 146)
2454
+ ROYAL_FUCHSIA = RGB.new(0.792156862745098, 0.17254901960784313, 0.5725490196078431)
2455
+ # Royal green: #136207: (19, 98, 7)
2456
+ ROYAL_GREEN = RGB.new(0.07450980392156863, 0.3843137254901961, 0.027450980392156862)
2457
+ # Royal orange: #F99245: (249, 146, 69)
2458
+ ROYAL_ORANGE = RGB.new(0.9764705882352941, 0.5725490196078431, 0.27058823529411763)
2459
+ # Royal pink: #E73895: (231, 56, 149)
2460
+ ROYAL_PINK = RGB.new(0.9058823529411765, 0.2196078431372549, 0.5843137254901961)
2461
+ # Royal red: #9B1C31: (155, 28, 49)
2462
+ ROYAL_RED = RGB.new(0.6078431372549019, 0.10980392156862745, 0.19215686274509805)
2463
+ # Royal purple: #7851A9: (120, 81, 169)
2464
+ ROYAL_PURPLE = RGB.new(0.47058823529411764, 0.3176470588235294, 0.6627450980392157)
2465
+ # Royal yellow: #FADA5E: (250, 218, 94)
2466
+ ROYAL_YELLOW = RGB.new(0.9803921568627451, 0.8549019607843137, 0.3686274509803922)
2467
+ # Ruber: #CE4676: (206, 70, 118)
2468
+ RUBER = RGB.new(0.807843137254902, 0.27450980392156865, 0.4627450980392157)
2469
+ # Rubine red: #D10056: (209, 0, 86)
2470
+ RUBINE_RED = RGB.new(0.8196078431372549, 0.0, 0.33725490196078434)
2471
+ # Ruby: #E0115F: (224, 17, 95)
2472
+ RUBY = RGB.new(0.8784313725490196, 0.06666666666666667, 0.37254901960784315)
2473
+ # Ruby red: #9B111E: (155, 17, 30)
2474
+ RUBY_RED = RGB.new(0.6078431372549019, 0.06666666666666667, 0.11764705882352941)
2475
+ # Rufous: #A81C07: (168, 28, 7)
2476
+ RUFOUS = RGB.new(0.6588235294117647, 0.10980392156862745, 0.027450980392156862)
2477
+ # Rum: #9A4E40: (154, 78, 64)
2478
+ RUM = RGB.new(0.6039215686274509, 0.3058823529411765, 0.25098039215686274)
2479
+ # Russet: #80461B: (128, 70, 27)
2480
+ RUSSET = RGB.new(0.5019607843137255, 0.27450980392156865, 0.10588235294117647)
2481
+ # Russian green: #679267: (103, 146, 103)
2482
+ RUSSIAN_GREEN = RGB.new(0.403921568627451, 0.5725490196078431, 0.403921568627451)
2483
+ # Russian violet: #32174D: (50, 23, 77)
2484
+ RUSSIAN_VIOLET = RGB.new(0.19607843137254902, 0.09019607843137255, 0.30196078431372547)
2485
+ # Rust: #B7410E: (183, 65, 14)
2486
+ RUST = RGB.new(0.7176470588235294, 0.2549019607843137, 0.054901960784313725)
2487
+ # Rusty red: #DA2C43: (218, 44, 67)
2488
+ RUSTY_RED = RGB.new(0.8549019607843137, 0.17254901960784313, 0.2627450980392157)
2489
+ # Sacramento State green: #043927: (4, 57, 39)
2490
+ SACRAMENTO_STATE_GREEN = RGB.new(0.01568627450980392, 0.2235294117647059, 0.15294117647058825)
2491
+ # Saddle brown: #8B4513: (139, 69, 19)
2492
+ SADDLE_BROWN = RGB.new(0.5450980392156862, 0.27058823529411763, 0.07450980392156863)
2493
+ # Safety orange: #FF7800: (255, 120, 0)
2494
+ SAFETY_ORANGE = RGB.new(1.0, 0.47058823529411764, 0.0)
2495
+ # Safety orange (blaze orange): #FF6700: (255, 103, 0)
2496
+ SAFETY_ORANGE_BLAZE_ORANGE = RGB.new(1.0, 0.403921568627451, 0.0)
2497
+ # Safety yellow: #EED202: (238, 210, 2)
2498
+ SAFETY_YELLOW = RGB.new(0.9333333333333333, 0.8235294117647058, 0.00784313725490196)
2499
+ # Saffron: #F4C430: (244, 196, 48)
2500
+ SAFFRON = RGB.new(0.9568627450980393, 0.7686274509803922, 0.18823529411764706)
2501
+ # Sage: #BCB88A: (188, 184, 138)
2502
+ SAGE = RGB.new(0.7372549019607844, 0.7215686274509804, 0.5411764705882353)
2503
+ # St. Patrick's blue: #23297A: (35, 41, 122)
2504
+ ST_PATRICKS_BLUE = RGB.new(0.13725490196078433, 0.1607843137254902, 0.47843137254901963)
2505
+ # Salem: #177B4D: (23, 123, 77)
2506
+ SALEM = RGB.new(0.09019607843137255, 0.4823529411764706, 0.30196078431372547)
2507
+ # Salmon: #FA8072: (250, 128, 114)
2508
+ SALMON = RGB.new(0.9803921568627451, 0.5019607843137255, 0.4470588235294118)
2509
+ # Salmon Rose: #E7968B: (231, 150, 139)
2510
+ SALMON_ROSE = RGB.new(0.9058823529411765, 0.5882352941176471, 0.5450980392156862)
2511
+ # Salmon pink: #FF91A4: (255, 145, 164)
2512
+ SALMON_PINK = RGB.new(1.0, 0.5686274509803921, 0.6431372549019608)
2513
+ # Samsung blue: #12279E: (18, 39, 158)
2514
+ SAMSUNG_BLUE = RGB.new(0.07058823529411765, 0.15294117647058825, 0.6196078431372549)
2515
+ # Sand: #C2B280: (194, 178, 128)
2516
+ SAND = RGB.new(0.7607843137254902, 0.6980392156862745, 0.5019607843137255)
2517
+ # Sand dune: #967117: (150, 113, 23)
2518
+ SAND_DUNE = RGB.new(0.5882352941176471, 0.44313725490196076, 0.09019607843137255)
2519
+ # Sandstorm: #ECD540: (236, 213, 64)
2520
+ SANDSTORM = RGB.new(0.9254901960784314, 0.8352941176470589, 0.25098039215686274)
2521
+ # Sandy brown: #F4A460: (244, 164, 96)
2522
+ SANDY_BROWN = RGB.new(0.9568627450980393, 0.6431372549019608, 0.3764705882352941)
2523
+ # Sandy Tan: #FDD9B5: (253, 217, 181)
2524
+ SANDY_TAN = RGB.new(0.9921568627450981, 0.8509803921568627, 0.7098039215686275)
2525
+ # Sandy taupe: #967117: (150, 113, 23)
2526
+ SANDY_TAUPE = RGB.new(0.5882352941176471, 0.44313725490196076, 0.09019607843137255)
2527
+ # Sap green: #507D2A: (80, 125, 42)
2528
+ SAP_GREEN = RGB.new(0.3137254901960784, 0.49019607843137253, 0.16470588235294117)
2529
+ # Sapphire: #0F52BA: (15, 82, 186)
2530
+ SAPPHIRE = RGB.new(0.058823529411764705, 0.3215686274509804, 0.7294117647058823)
2531
+ # Sapphire blue: #0067A5: (0, 103, 165)
2532
+ SAPPHIRE_BLUE = RGB.new(0.0, 0.403921568627451, 0.6470588235294118)
2533
+ # Sasquatch Socks: #FF4681: (255, 70, 129)
2534
+ SASQUATCH_SOCKS = RGB.new(1.0, 0.27450980392156865, 0.5058823529411764)
2535
+ # Satin sheen gold: #CBA135: (203, 161, 53)
2536
+ SATIN_SHEEN_GOLD = RGB.new(0.796078431372549, 0.6313725490196078, 0.20784313725490197)
2537
+ # Scarlet: #FF2400: (255, 36, 0)
2538
+ SCARLET = RGB.new(1.0, 0.1411764705882353, 0.0)
2539
+ # Schauss pink: #FF91AF: (255, 145, 175)
2540
+ SCHAUSS_PINK = RGB.new(1.0, 0.5686274509803921, 0.6862745098039216)
2541
+ # School bus yellow: #FFD800: (255, 216, 0)
2542
+ SCHOOL_BUS_YELLOW = RGB.new(1.0, 0.8470588235294118, 0.0)
2543
+ # Screamin' Green: #66FF66: (102, 255, 102)
2544
+ SCREAMIN_GREEN = RGB.new(0.4, 1.0, 0.4)
2545
+ # Sea blue: #006994: (0, 105, 148)
2546
+ SEA_BLUE = RGB.new(0.0, 0.4117647058823529, 0.5803921568627451)
2547
+ # Sea Foam Green: #9FE2BF: (195, 226, 191)
2548
+ SEA_FOAM_GREEN = RGB.new(0.7647058823529411, 0.8862745098039215, 0.7490196078431373)
2549
+ # Sea green: #2E8B57: (46, 139, 87)
2550
+ SEA_GREEN = RGB.new(0.1803921568627451, 0.5450980392156862, 0.3411764705882353)
2551
+ # Sea green (Crayola): #00FFCD: (1, 255, 205)
2552
+ SEA_GREEN_CRAYOLA = RGB.new(0.00392156862745098, 1.0, 0.803921568627451)
2553
+ # Sea Serpent: #4BC7CF: (75, 199, 207)
2554
+ SEA_SERPENT = RGB.new(0.29411764705882354, 0.7803921568627451, 0.8117647058823529)
2555
+ # Seal brown: #59260B: (50, 20, 20)
2556
+ SEAL_BROWN = RGB.new(0.19607843137254902, 0.0784313725490196, 0.0784313725490196)
2557
+ # Seashell: #FFF5EE: (255, 245, 238)
2558
+ SEASHELL = RGB.new(1.0, 0.9607843137254902, 0.9333333333333333)
2559
+ # Selective yellow: #FFBA00: (255, 186, 0)
2560
+ SELECTIVE_YELLOW = RGB.new(1.0, 0.7294117647058823, 0.0)
2561
+ # Sepia: #704214: (112, 66, 20)
2562
+ SEPIA = RGB.new(0.4392156862745098, 0.25882352941176473, 0.0784313725490196)
2563
+ # Shadow: #8A795D: (138, 121, 93)
2564
+ SHADOW = RGB.new(0.5411764705882353, 0.4745098039215686, 0.36470588235294116)
2565
+ # Shadow blue: #778BA5: (119, 139, 165)
2566
+ SHADOW_BLUE = RGB.new(0.4666666666666667, 0.5450980392156862, 0.6470588235294118)
2567
+ # Shampoo: #FFCFF1: (255, 207, 241)
2568
+ SHAMPOO = RGB.new(1.0, 0.8117647058823529, 0.9450980392156862)
2569
+ # Shamrock green: #009E60: (0, 158, 96)
2570
+ SHAMROCK_GREEN = RGB.new(0.0, 0.6196078431372549, 0.3764705882352941)
2571
+ # Shandy: #FFE670: (255, 230, 112)
2572
+ SHANDY = RGB.new(1.0, 0.9019607843137255, 0.4392156862745098)
2573
+ # Sheen green: #8FD400: (143, 212, 0)
2574
+ SHEEN_GREEN = RGB.new(0.5607843137254902, 0.8313725490196079, 0.0)
2575
+ # Shimmering Blush: #D98695: (217, 134, 149)
2576
+ SHIMMERING_BLUSH = RGB.new(0.8509803921568627, 0.5254901960784314, 0.5843137254901961)
2577
+ # Shiny Shamrock: #5FA778: (95, 167, 120)
2578
+ SHINY_SHAMROCK = RGB.new(0.37254901960784315, 0.6549019607843137, 0.47058823529411764)
2579
+ # Shocking pink: #FC0FC0: (252, 15, 192)
2580
+ SHOCKING_PINK = RGB.new(0.9882352941176471, 0.058823529411764705, 0.7529411764705882)
2581
+ # Shocking pink (Crayola): #FF6FFF: (255, 111, 255)
2582
+ SHOCKING_PINK_CRAYOLA = RGB.new(1.0, 0.43529411764705883, 1.0)
2583
+ # Sienna: #882D17: (136, 45, 23)
2584
+ SIENNA = RGB.new(0.5333333333333333, 0.17647058823529413, 0.09019607843137255)
2585
+ # Silver: #C0C0C0: (192, 192, 192)
2586
+ SILVER = RGB.new(0.7529411764705882, 0.7529411764705882, 0.7529411764705882)
2587
+ # Silver (Crayola): #C9C0BB: (201, 192, 187)
2588
+ SILVER_CRAYOLA = RGB.new(0.788235294117647, 0.7529411764705882, 0.7333333333333333)
2589
+ # Silver (Metallic): #AAA9AD: (170, 169, 173)
2590
+ SILVER_METALLIC = RGB.new(0.6666666666666666, 0.6627450980392157, 0.6784313725490196)
2591
+ # Silver chalice: #ACACAC: (172, 172, 172)
2592
+ SILVER_CHALICE = RGB.new(0.6745098039215687, 0.6745098039215687, 0.6745098039215687)
2593
+ # Silver foil: #AFB1AE: (175, 177, 174)
2594
+ SILVER_FOIL = RGB.new(0.6862745098039216, 0.6941176470588235, 0.6823529411764706)
2595
+ # Silver Lake blue: #5D89BA: (93, 137, 186)
2596
+ SILVER_LAKE_BLUE = RGB.new(0.36470588235294116, 0.5372549019607843, 0.7294117647058823)
2597
+ # Silver pink: #C4AEAD: (196, 174, 173)
2598
+ SILVER_PINK = RGB.new(0.7686274509803922, 0.6823529411764706, 0.6784313725490196)
2599
+ # Silver sand: #BFC1C2: (191, 193, 194)
2600
+ SILVER_SAND = RGB.new(0.7490196078431373, 0.7568627450980392, 0.7607843137254902)
2601
+ # Sinopia: #CB410B: (203, 65, 11)
2602
+ SINOPIA = RGB.new(0.796078431372549, 0.2549019607843137, 0.043137254901960784)
2603
+ # Sizzling Red: #FF3855: (255, 56, 85)
2604
+ SIZZLING_RED = RGB.new(1.0, 0.2196078431372549, 0.3333333333333333)
2605
+ # Sizzling Sunrise: #FFDB00: (255, 219, 0)
2606
+ SIZZLING_SUNRISE = RGB.new(1.0, 0.8588235294117647, 0.0)
2607
+ # Skobeloff: #007474: (0, 116, 116)
2608
+ SKOBELOFF = RGB.new(0.0, 0.4549019607843137, 0.4549019607843137)
2609
+ # Sky blue: #87CEEB: (135, 206, 235)
2610
+ SKY_BLUE = RGB.new(0.5294117647058824, 0.807843137254902, 0.9215686274509803)
2611
+ # Sky blue (Crayola): #76D7EA: (118, 215, 234)
2612
+ SKY_BLUE_CRAYOLA = RGB.new(0.4627450980392157, 0.8431372549019608, 0.9176470588235294)
2613
+ # Sky magenta: #CF71AF: (207, 113, 175)
2614
+ SKY_MAGENTA = RGB.new(0.8117647058823529, 0.44313725490196076, 0.6862745098039216)
2615
+ # Slate blue: #6A5ACD: (106, 90, 205)
2616
+ SLATE_BLUE = RGB.new(0.41568627450980394, 0.35294117647058826, 0.803921568627451)
2617
+ # Slate gray: #708090: (112, 128, 144)
2618
+ SLATE_GRAY = RGB.new(0.4392156862745098, 0.5019607843137255, 0.5647058823529412)
2619
+ # Slimy green: #299617: (41, 150, 23)
2620
+ SLIMY_GREEN = RGB.new(0.1607843137254902, 0.5882352941176471, 0.09019607843137255)
2621
+ # Smalt (Dark powder blue): #003399: (0, 51, 153)
2622
+ SMALT_DARK_POWDER_BLUE = RGB.new(0.0, 0.2, 0.6)
2623
+ # Smashed Pumpkin: #FF6D3A: (255, 109, 58)
2624
+ SMASHED_PUMPKIN = RGB.new(1.0, 0.42745098039215684, 0.22745098039215686)
2625
+ # Smitten: #C84186: (200, 65, 134)
2626
+ SMITTEN = RGB.new(0.7843137254901961, 0.2549019607843137, 0.5254901960784314)
2627
+ # Smoke: #738276: (115, 130, 118)
2628
+ SMOKE = RGB.new(0.45098039215686275, 0.5098039215686274, 0.4627450980392157)
2629
+ # Smokey Topaz: #832A0D: (131, 42, 34)
2630
+ SMOKEY_TOPAZ = RGB.new(0.5137254901960784, 0.16470588235294117, 0.13333333333333333)
2631
+ # Smoky black: #100C08: (16, 12, 8)
2632
+ SMOKY_BLACK = RGB.new(0.06274509803921569, 0.047058823529411764, 0.03137254901960784)
2633
+ # Snow: #FFFAFA: (255, 250, 250)
2634
+ SNOW = RGB.new(1.0, 0.9803921568627451, 0.9803921568627451)
2635
+ # Soap: #CEC8EF: (206, 200, 239)
2636
+ SOAP = RGB.new(0.807843137254902, 0.7843137254901961, 0.9372549019607843)
2637
+ # Solid pink: #893843: (137, 56, 67)
2638
+ SOLID_PINK = RGB.new(0.5372549019607843, 0.2196078431372549, 0.2627450980392157)
2639
+ # Sonic silver: #757575: (117, 117, 117)
2640
+ SONIC_SILVER = RGB.new(0.4588235294117647, 0.4588235294117647, 0.4588235294117647)
2641
+ # Spartan Crimson: #9E1316: (158, 19, 22)
2642
+ SPARTAN_CRIMSON = RGB.new(0.6196078431372549, 0.07450980392156863, 0.08627450980392157)
2643
+ # Space cadet: #1D2951: (29, 41, 81)
2644
+ SPACE_CADET = RGB.new(0.11372549019607843, 0.1607843137254902, 0.3176470588235294)
2645
+ # Spanish bistre: #807532: (128, 117, 50)
2646
+ SPANISH_BISTRE = RGB.new(0.5019607843137255, 0.4588235294117647, 0.19607843137254902)
2647
+ # Spanish blue: #0070B8: (0, 112, 184)
2648
+ SPANISH_BLUE = RGB.new(0.0, 0.4392156862745098, 0.7215686274509804)
2649
+ # Spanish carmine: #D10047: (209, 0, 71)
2650
+ SPANISH_CARMINE = RGB.new(0.8196078431372549, 0.0, 0.2784313725490196)
2651
+ # Spanish crimson: #E51A4C: (229, 26, 76)
2652
+ SPANISH_CRIMSON = RGB.new(0.8980392156862745, 0.10196078431372549, 0.2980392156862745)
2653
+ # Spanish gray: #989898: (152, 152, 152)
2654
+ SPANISH_GRAY = RGB.new(0.596078431372549, 0.596078431372549, 0.596078431372549)
2655
+ # Spanish green: #009150: (0, 145, 80)
2656
+ SPANISH_GREEN = RGB.new(0.0, 0.5686274509803921, 0.3137254901960784)
2657
+ # Spanish orange: #E86100: (232, 97, 0)
2658
+ SPANISH_ORANGE = RGB.new(0.9098039215686274, 0.3803921568627451, 0.0)
2659
+ # Spanish pink: #F7BFBE: (247, 191, 190)
2660
+ SPANISH_PINK = RGB.new(0.9686274509803922, 0.7490196078431373, 0.7450980392156863)
2661
+ # Spanish purple: #66033C: (102, 3, 60)
2662
+ SPANISH_PURPLE = RGB.new(0.4, 0.011764705882352941, 0.23529411764705882)
2663
+ # Spanish red: #E60026: (230, 0, 38)
2664
+ SPANISH_RED = RGB.new(0.9019607843137255, 0.0, 0.14901960784313725)
2665
+ # Spanish sky blue: #00FFFF: (0, 255, 255)
2666
+ SPANISH_SKY_BLUE = RGB.new(0.0, 1.0, 1.0)
2667
+ # Spanish violet: #4C2882: (76, 40, 130)
2668
+ SPANISH_VIOLET = RGB.new(0.2980392156862745, 0.1568627450980392, 0.5098039215686274)
2669
+ # Spanish viridian: #007F5C: (0, 127, 92)
2670
+ SPANISH_VIRIDIAN = RGB.new(0.0, 0.4980392156862745, 0.3607843137254902)
2671
+ # Spanish yellow: #F6B511: (246, 181, 17)
2672
+ SPANISH_YELLOW = RGB.new(0.9647058823529412, 0.7098039215686275, 0.06666666666666667)
2673
+ # Spicy mix: #8B5f4D: (139, 95, 77)
2674
+ SPICY_MIX = RGB.new(0.5450980392156862, 0.37254901960784315, 0.30196078431372547)
2675
+ # Spiro Disco Ball: #0FC0FC: (15, 192, 252)
2676
+ SPIRO_DISCO_BALL = RGB.new(0.058823529411764705, 0.7529411764705882, 0.9882352941176471)
2677
+ # Spring bud: #A7FC00: (167, 252, 0)
2678
+ SPRING_BUD = RGB.new(0.6549019607843137, 0.9882352941176471, 0.0)
2679
+ # Spring Frost: #87FF2A: (135, 255, 42)
2680
+ SPRING_FROST = RGB.new(0.5294117647058824, 1.0, 0.16470588235294117)
2681
+ # Spring green: #00FF7F: (0, 255, 127)
2682
+ SPRING_GREEN = RGB.new(0.0, 1.0, 0.4980392156862745)
2683
+ # Spring green (Crayola): #ECEBBD: (236, 235, 189)
2684
+ SPRING_GREEN_CRAYOLA = RGB.new(0.9254901960784314, 0.9215686274509803, 0.7411764705882353)
2685
+ # Star command blue: #007BB8: (0, 123, 184)
2686
+ STAR_COMMAND_BLUE = RGB.new(0.0, 0.4823529411764706, 0.7215686274509804)
2687
+ # Steel blue: #4682B4: (70, 130, 180)
2688
+ STEEL_BLUE = RGB.new(0.27450980392156865, 0.5098039215686274, 0.7058823529411765)
2689
+ # Steel pink: #CC33CC: (204, 51, 204)
2690
+ STEEL_PINK = RGB.new(0.8, 0.2, 0.8)
2691
+ # Steel Teal: #5F8A8B: (95, 138, 139)
2692
+ STEEL_TEAL = RGB.new(0.37254901960784315, 0.5411764705882353, 0.5450980392156862)
2693
+ # Stil de grain yellow: #FADA5E: (250, 218, 94)
2694
+ STIL_DE_GRAIN_YELLOW = RGB.new(0.9803921568627451, 0.8549019607843137, 0.3686274509803922)
2695
+ # Straw: #E4D96F: (228, 217, 111)
2696
+ STRAW = RGB.new(0.8941176470588236, 0.8509803921568627, 0.43529411764705883)
2697
+ # Strawberry: #FC5A8D: (252, 90, 141)
2698
+ STRAWBERRY = RGB.new(0.9882352941176471, 0.35294117647058826, 0.5529411764705883)
2699
+ # Stop red: #CF142B: (207, 20, 43)
2700
+ STOP_RED = RGB.new(0.8117647058823529, 0.0784313725490196, 0.16862745098039217)
2701
+ # Strawberry iced tea: #FC5A8D: (252, 90, 141)
2702
+ STRAWBERRY_ICED_TEA = RGB.new(0.9882352941176471, 0.35294117647058826, 0.5529411764705883)
2703
+ # Strawberry red: #C83F49: (200, 63, 73)
2704
+ STRAWBERRY_RED = RGB.new(0.7843137254901961, 0.24705882352941178, 0.28627450980392155)
2705
+ # Sugar Plum: #914E75: (145, 78, 117)
2706
+ SUGAR_PLUM = RGB.new(0.5686274509803921, 0.3058823529411765, 0.4588235294117647)
2707
+ # Sunburnt Cyclops: #FF404C: (255, 64, 76)
2708
+ SUNBURNT_CYCLOPS = RGB.new(1.0, 0.25098039215686274, 0.2980392156862745)
2709
+ # Sunglow: #FFCC33: (255, 204, 51)
2710
+ SUNGLOW = RGB.new(1.0, 0.8, 0.2)
2711
+ # Sunny: #F2F27A: (242, 242, 122)
2712
+ SUNNY = RGB.new(0.9490196078431372, 0.9490196078431372, 0.47843137254901963)
2713
+ # Sunray: #E3AB57: (227, 171, 87)
2714
+ SUNRAY = RGB.new(0.8901960784313725, 0.6705882352941176, 0.3411764705882353)
2715
+ # Sunset: #FAD6A5: (250, 214, 165)
2716
+ SUNSET = RGB.new(0.9803921568627451, 0.8392156862745098, 0.6470588235294118)
2717
+ # Sunset orange: #FD5E53: (253, 94, 83)
2718
+ SUNSET_ORANGE = RGB.new(0.9921568627450981, 0.3686274509803922, 0.3254901960784314)
2719
+ # Super pink: #CF6BA9: (207, 107, 169)
2720
+ SUPER_PINK = RGB.new(0.8117647058823529, 0.4196078431372549, 0.6627450980392157)
2721
+ # Sweet Brown: #A83731: (168, 55, 49)
2722
+ SWEET_BROWN = RGB.new(0.6588235294117647, 0.21568627450980393, 0.19215686274509805)
2723
+ # Tan: #D2B48C: (210, 180, 140)
2724
+ TAN = RGB.new(0.8235294117647058, 0.7058823529411765, 0.5490196078431373)
2725
+ # Tan (Crayola): #D99A6C: (217, 154, 108)
2726
+ TAN_CRAYOLA = RGB.new(0.8509803921568627, 0.6039215686274509, 0.4235294117647059)
2727
+ # Tangelo: #F94D00: (249, 77, 0)
2728
+ TANGELO = RGB.new(0.9764705882352941, 0.30196078431372547, 0.0)
2729
+ # Tangerine: #F28500: (242, 133, 0)
2730
+ TANGERINE = RGB.new(0.9490196078431372, 0.5215686274509804, 0.0)
2731
+ # Tangerine yellow: #FFCC00: (255, 204, 0)
2732
+ TANGERINE_YELLOW = RGB.new(1.0, 0.8, 0.0)
2733
+ # Tango pink: #E4717A: (228, 113, 122)
2734
+ TANGO_PINK = RGB.new(0.8941176470588236, 0.44313725490196076, 0.47843137254901963)
2735
+ # Tart Orange: #FB4D46: (251, 77, 70)
2736
+ TART_ORANGE = RGB.new(0.984313725490196, 0.30196078431372547, 0.27450980392156865)
2737
+ # Taupe: #483C32: (72, 60, 50)
2738
+ TAUPE = RGB.new(0.2823529411764706, 0.23529411764705882, 0.19607843137254902)
2739
+ # Taupe gray: #8B8589: (139, 133, 137)
2740
+ TAUPE_GRAY = RGB.new(0.5450980392156862, 0.5215686274509804, 0.5372549019607843)
2741
+ # Tea green: #D0F0C0: (208, 240, 192)
2742
+ TEA_GREEN = RGB.new(0.8156862745098039, 0.9411764705882353, 0.7529411764705882)
2743
+ # Tea rose: #F88379: (248, 131, 121)
2744
+ TEA_ROSE = RGB.new(0.9725490196078431, 0.5137254901960784, 0.4745098039215686)
2745
+ # Teal: #008080: (0, 128, 128)
2746
+ TEAL = RGB.new(0.0, 0.5019607843137255, 0.5019607843137255)
2747
+ # Teal blue: #367588: (54, 117, 136)
2748
+ TEAL_BLUE = RGB.new(0.21176470588235294, 0.4588235294117647, 0.5333333333333333)
2749
+ # Teal deer: #99E6B3: (153, 230, 179)
2750
+ TEAL_DEER = RGB.new(0.6, 0.9019607843137255, 0.7019607843137254)
2751
+ # Teal green: #00827F: (0, 130, 127)
2752
+ TEAL_GREEN = RGB.new(0.0, 0.5098039215686274, 0.4980392156862745)
2753
+ # Telemagenta: #CF3476: (207, 52, 118)
2754
+ TELEMAGENTA = RGB.new(0.8117647058823529, 0.20392156862745098, 0.4627450980392157)
2755
+ # Temptress: #3C2126: (60, 33, 38)
2756
+ TEMPTRESS = RGB.new(0.23529411764705882, 0.12941176470588237, 0.14901960784313725)
2757
+ # Tenné (tawny): #CD5700: (205, 87, 0)
2758
+ TAWNY = RGB.new(0.803921568627451, 0.3411764705882353, 0.0)
2759
+ # Terra cotta: #E2725B: (226, 114, 91)
2760
+ TERRA_COTTA = RGB.new(0.8862745098039215, 0.4470588235294118, 0.3568627450980392)
2761
+ # Thistle: #D8BFD8: (216, 191, 216)
2762
+ THISTLE = RGB.new(0.8470588235294118, 0.7490196078431373, 0.8470588235294118)
2763
+ # Thistle (Crayola): #EBB0D7: (235, 176, 215)
2764
+ THISTLE_CRAYOLA = RGB.new(0.9215686274509803, 0.6901960784313725, 0.8431372549019608)
2765
+ # Thulian pink: #DE6FA1: (222, 111, 161)
2766
+ THULIAN_PINK = RGB.new(0.8705882352941177, 0.43529411764705883, 0.6313725490196078)
2767
+ # Tickle Me Pink: #FC89AC: (252, 137, 172)
2768
+ TICKLE_ME_PINK = RGB.new(0.9882352941176471, 0.5372549019607843, 0.6745098039215687)
2769
+ # Tiffany Blue: #0ABAB5: (10, 186, 181)
2770
+ TIFFANY_BLUE = RGB.new(0.0392156862745098, 0.7294117647058823, 0.7098039215686275)
2771
+ # Tiger's eye: #E08D3C: (224, 141, 60)
2772
+ TIGERS_EYE = RGB.new(0.8784313725490196, 0.5529411764705883, 0.23529411764705882)
2773
+ # Timberwolf: #DBD7D2: (219, 215, 210)
2774
+ TIMBERWOLF = RGB.new(0.8588235294117647, 0.8431372549019608, 0.8235294117647058)
2775
+ # Titanium: #878681: (135, 134, 129)
2776
+ TITANIUM = RGB.new(0.5294117647058824, 0.5254901960784314, 0.5058823529411764)
2777
+ # Titanium yellow: #EEE600: (238, 230, 0)
2778
+ TITANIUM_YELLOW = RGB.new(0.9333333333333333, 0.9019607843137255, 0.0)
2779
+ # Tomato: #FF6347: (255, 99, 71)
2780
+ TOMATO = RGB.new(1.0, 0.38823529411764707, 0.2784313725490196)
2781
+ # Tomato sauce: #B21807: (178, 24, 7)
2782
+ TOMATO_SAUCE = RGB.new(0.6980392156862745, 0.09411764705882353, 0.027450980392156862)
2783
+ # Toolbox: #746CC0: (116, 108, 192)
2784
+ TOOLBOX = RGB.new(0.4549019607843137, 0.4235294117647059, 0.7529411764705882)
2785
+ # Tooth: #FFFAFA: (255, 250, 250)
2786
+ TOOTH = RGB.new(1.0, 0.9803921568627451, 0.9803921568627451)
2787
+ # Topaz: #FFC87C: (255, 200, 124)
2788
+ TOPAZ = RGB.new(1.0, 0.7843137254901961, 0.48627450980392156)
2789
+ # Tractor red: #FD0E35: (253, 14, 53)
2790
+ TRACTOR_RED = RGB.new(0.9921568627450981, 0.054901960784313725, 0.20784313725490197)
2791
+ # Trolley grey: #808080: (128, 128, 128)
2792
+ TROLLEY_GREY = RGB.new(0.5019607843137255, 0.5019607843137255, 0.5019607843137255)
2793
+ # Tropical rain forest: #00755E: (0, 117, 94)
2794
+ TROPICAL_RAIN_FOREST = RGB.new(0.0, 0.4588235294117647, 0.3686274509803922)
2795
+ # Tropical violet: #CDA4DE: (205, 164, 222)
2796
+ TROPICAL_VIOLET = RGB.new(0.803921568627451, 0.6431372549019608, 0.8705882352941177)
2797
+ # True blue: #0073CF: (0, 115, 207)
2798
+ TRUE_BLUE = RGB.new(0.0, 0.45098039215686275, 0.8117647058823529)
2799
+ # Tufts blue: #3E8EDE: (62, 142, 222)
2800
+ TUFTS_BLUE = RGB.new(0.24313725490196078, 0.5568627450980392, 0.8705882352941177)
2801
+ # Tulip: #FF878D: (255, 135, 141)
2802
+ TULIP = RGB.new(1.0, 0.5294117647058824, 0.5529411764705883)
2803
+ # Tumbleweed: #DEAA88: (222, 170, 136)
2804
+ TUMBLEWEED = RGB.new(0.8705882352941177, 0.6666666666666666, 0.5333333333333333)
2805
+ # Turkish rose: #B57281: (181, 114, 129)
2806
+ TURKISH_ROSE = RGB.new(0.7098039215686275, 0.4470588235294118, 0.5058823529411764)
2807
+ # Turquoise: #40E0D0: (64, 224, 208)
2808
+ TURQUOISE = RGB.new(0.25098039215686274, 0.8784313725490196, 0.8156862745098039)
2809
+ # Turquoise blue: #00FFEF: (0, 255, 239)
2810
+ TURQUOISE_BLUE = RGB.new(0.0, 1.0, 0.9372549019607843)
2811
+ # Turquoise green: #A0D6B4: (160, 214, 180)
2812
+ TURQUOISE_GREEN = RGB.new(0.6274509803921569, 0.8392156862745098, 0.7058823529411765)
2813
+ # Turquoise Surf: #00C5CD: (0, 197, 205)
2814
+ TURQUOISE_SURF = RGB.new(0.0, 0.7725490196078432, 0.803921568627451)
2815
+ # Turtle green: #8A9A5B: (138, 154, 91)
2816
+ TURTLE_GREEN = RGB.new(0.5411764705882353, 0.6039215686274509, 0.3568627450980392)
2817
+ # Tuscan: #FAD6A5: (250, 214, 165)
2818
+ TUSCAN = RGB.new(0.9803921568627451, 0.8392156862745098, 0.6470588235294118)
2819
+ # Tuscan brown: #6F4E37: (111, 78, 55)
2820
+ TUSCAN_BROWN = RGB.new(0.43529411764705883, 0.3058823529411765, 0.21568627450980393)
2821
+ # Tuscan red: #7C4848: (124, 72, 72)
2822
+ TUSCAN_RED = RGB.new(0.48627450980392156, 0.2823529411764706, 0.2823529411764706)
2823
+ # Tuscan tan: #A67B5B: (166, 123, 91)
2824
+ TUSCAN_TAN = RGB.new(0.6509803921568628, 0.4823529411764706, 0.3568627450980392)
2825
+ # Tuscany: #C09999: (192, 153, 153)
2826
+ TUSCANY = RGB.new(0.7529411764705882, 0.6, 0.6)
2827
+ # Twilight lavender: #8A496B: (138, 73, 107)
2828
+ TWILIGHT_LAVENDER = RGB.new(0.5411764705882353, 0.28627450980392155, 0.4196078431372549)
2829
+ # Twitter blue: #26A7DE: (38, 167, 222)
2830
+ TWITTER_BLUE = RGB.new(0.14901960784313725, 0.6549019607843137, 0.8705882352941177)
2831
+ # Tyrian purple: #66023C: (102, 2, 60)
2832
+ TYRIAN_PURPLE = RGB.new(0.4, 0.00784313725490196, 0.23529411764705882)
2833
+ # Ultramarine: #3F00FF: (18, 10, 143)
2834
+ ULTRAMARINE = RGB.new(0.07058823529411765, 0.0392156862745098, 0.5607843137254902)
2835
+ # Ultramarine blue: #4166F5: (65, 102, 245)
2836
+ ULTRAMARINE_BLUE = RGB.new(0.2549019607843137, 0.4, 0.9607843137254902)
2837
+ # Ultramarine blue (Caran d'Ache): #2111EF: (33, 17, 239)
2838
+ ULTRAMARINE_BLUE_CARAN_DACHE = RGB.new(0.12941176470588237, 0.06666666666666667, 0.9372549019607843)
2839
+ # Ultra pink: #FF6FFF: (255, 111, 255)
2840
+ ULTRA_PINK = RGB.new(1.0, 0.43529411764705883, 1.0)
2841
+ # Ultra red: #FC6C85: (252, 108, 133)
2842
+ ULTRA_RED = RGB.new(0.9882352941176471, 0.4235294117647059, 0.5215686274509804)
2843
+ # Umber: #635147: (99, 81, 71)
2844
+ UMBER = RGB.new(0.38823529411764707, 0.3176470588235294, 0.2784313725490196)
2845
+ # Unbleached silk: #FFDDCA: (255, 221, 202)
2846
+ UNBLEACHED_SILK = RGB.new(1.0, 0.8666666666666667, 0.792156862745098)
2847
+ # United Nations blue: #5B92E5: (91, 146, 229)
2848
+ UNITED_NATIONS_BLUE = RGB.new(0.3568627450980392, 0.5725490196078431, 0.8980392156862745)
2849
+ # Unmellow yellow: #FFFF66: (255, 255, 102)
2850
+ UNMELLOW_YELLOW = RGB.new(1.0, 1.0, 0.4)
2851
+ # UP maroon: #7B1113: (123, 17, 19)
2852
+ UP_MAROON = RGB.new(0.4823529411764706, 0.06666666666666667, 0.07450980392156863)
2853
+ # Upsdell red: #AE2029: (174, 32, 41)
2854
+ UPSDELL_RED = RGB.new(0.6823529411764706, 0.12549019607843137, 0.1607843137254902)
2855
+ # Urobilin: #E1AD21: (225, 173, 33)
2856
+ UROBILIN = RGB.new(0.8823529411764706, 0.6784313725490196, 0.12941176470588237)
2857
+ # Vampire black: #080808: (8, 8, 8)
2858
+ VAMPIRE_BLACK = RGB.new(0.03137254901960784, 0.03137254901960784, 0.03137254901960784)
2859
+ # Van Dyke brown: #664228: (102, 66, 40)
2860
+ VAN_DYKE_BROWN = RGB.new(0.4, 0.25882352941176473, 0.1568627450980392)
2861
+ # Vanilla: #F3E5AB: (243, 229, 171)
2862
+ VANILLA = RGB.new(0.9529411764705882, 0.8980392156862745, 0.6705882352941176)
2863
+ # Vanilla ice: #F38FA9: (243, 143, 169)
2864
+ VANILLA_ICE = RGB.new(0.9529411764705882, 0.5607843137254902, 0.6627450980392157)
2865
+ # Vegas gold: #C5B358: (197, 179, 88)
2866
+ VEGAS_GOLD = RGB.new(0.7725490196078432, 0.7019607843137254, 0.34509803921568627)
2867
+ # Venetian red: #C80815: (200, 8, 21)
2868
+ VENETIAN_RED = RGB.new(0.7843137254901961, 0.03137254901960784, 0.08235294117647059)
2869
+ # Verdigris: #43B3AE: (67, 179, 174)
2870
+ VERDIGRIS = RGB.new(0.2627450980392157, 0.7019607843137254, 0.6823529411764706)
2871
+ # Vermilion: #E34234: (227, 66, 52)
2872
+ VERMILION = RGB.new(0.8901960784313725, 0.25882352941176473, 0.20392156862745098)
2873
+ # Veronica: #A020F0: (160, 32, 240)
2874
+ VERONICA = RGB.new(0.6274509803921569, 0.12549019607843137, 0.9411764705882353)
2875
+ # Verse green: #18880d: (24, 136, 13)
2876
+ VERSE_GREEN = RGB.new(0.09411764705882353, 0.5333333333333333, 0.050980392156862744)
2877
+ # Very light azure: #74BBFB: (116, 187, 251)
2878
+ VERY_LIGHT_AZURE = RGB.new(0.4549019607843137, 0.7333333333333333, 0.984313725490196)
2879
+ # Very light blue: #6666FF: (102, 102, 255)
2880
+ VERY_LIGHT_BLUE = RGB.new(0.4, 0.4, 1.0)
2881
+ # Very light malachite green: #64E986: (100, 233, 134)
2882
+ VERY_LIGHT_MALACHITE_GREEN = RGB.new(0.39215686274509803, 0.9137254901960784, 0.5254901960784314)
2883
+ # Very light tangelo: #FFB077: (255, 176, 119)
2884
+ VERY_LIGHT_TANGELO = RGB.new(1.0, 0.6901960784313725, 0.4666666666666667)
2885
+ # Very pale orange: #FFDFBF: (255, 223, 191)
2886
+ VERY_PALE_ORANGE = RGB.new(1.0, 0.8745098039215686, 0.7490196078431373)
2887
+ # Very pale yellow: #FFFFBF: (255, 255, 191)
2888
+ VERY_PALE_YELLOW = RGB.new(1.0, 1.0, 0.7490196078431373)
2889
+ # Vine Green: #164010: (22, 64, 16)
2890
+ VINE_GREEN = RGB.new(0.08627450980392157, 0.25098039215686274, 0.06274509803921569)
2891
+ # Violet: #8F00FF: (143, 0, 255)
2892
+ VIOLET = RGB.new(0.5607843137254902, 0.0, 1.0)
2893
+ # Violet (Caran d'Ache): #6E00C0: (110, 0, 192)
2894
+ VIOLET_CARAN_DACHE = RGB.new(0.43137254901960786, 0.0, 0.7529411764705882)
2895
+ # Violet (color wheel): #7F00FF: (127, 0, 255)
2896
+ VIOLET_COLOR_WHEEL = RGB.new(0.4980392156862745, 0.0, 1.0)
2897
+ # Violet (crayola): #963D7F: (150, 61, 127)
2898
+ VIOLET_CRAYOLA = RGB.new(0.5882352941176471, 0.23921568627450981, 0.4980392156862745)
2899
+ # Violet (RYB): #8601AF: (134, 1, 175)
2900
+ VIOLET_RYB = RGB.new(0.5254901960784314, 0.00392156862745098, 0.6862745098039216)
2901
+ # Violet (web): #EE82EE: (238, 130, 238)
2902
+ VIOLET_WEB = RGB.new(0.9333333333333333, 0.5098039215686274, 0.9333333333333333)
2903
+ # Violet-blue: #324AB2: (50, 74, 178)
2904
+ VIOLET_BLUE = RGB.new(0.19607843137254902, 0.2901960784313726, 0.6980392156862745)
2905
+ # Violet-blue (Crayola): #766EC8: (118, 110, 200)
2906
+ VIOLET_BLUE_CRAYOLA = RGB.new(0.4627450980392157, 0.43137254901960786, 0.7843137254901961)
2907
+ # Violet-red: #F75394: (247, 83, 148)
2908
+ VIOLET_RED = RGB.new(0.9686274509803922, 0.3254901960784314, 0.5803921568627451)
2909
+ # Violin Brown: #674403: (103, 68, 3)
2910
+ VIOLIN_BROWN = RGB.new(0.403921568627451, 0.26666666666666666, 0.011764705882352941)
2911
+ # Viridian: #40826D: (64, 130, 109)
2912
+ VIRIDIAN = RGB.new(0.25098039215686274, 0.5098039215686274, 0.42745098039215684)
2913
+ # Viridian green: #009698: (0, 150, 152)
2914
+ VIRIDIAN_GREEN = RGB.new(0.0, 0.5882352941176471, 0.596078431372549)
2915
+ # Vista blue: #7C9ED9: (124, 158, 217)
2916
+ VISTA_BLUE = RGB.new(0.48627450980392156, 0.6196078431372549, 0.8509803921568627)
2917
+ # Vivid amber: #cc9900: (204, 153, 0)
2918
+ VIVID_AMBER = RGB.new(0.8, 0.6, 0.0)
2919
+ # Vivid auburn: #922724: (146, 39, 36)
2920
+ VIVID_AUBURN = RGB.new(0.5725490196078431, 0.15294117647058825, 0.1411764705882353)
2921
+ # Vivid burgundy: #9F1D35: (159, 29, 53)
2922
+ VIVID_BURGUNDY = RGB.new(0.6235294117647059, 0.11372549019607843, 0.20784313725490197)
2923
+ # Vivid cerise: #DA1D81: (218, 29, 129)
2924
+ VIVID_CERISE = RGB.new(0.8549019607843137, 0.11372549019607843, 0.5058823529411764)
2925
+ # Vivid cerulean: #00AAEE: (0, 170, 238)
2926
+ VIVID_CERULEAN = RGB.new(0.0, 0.6666666666666666, 0.9333333333333333)
2927
+ # Vivid crimson: #CC0033: (204, 0, 51)
2928
+ VIVID_CRIMSON = RGB.new(0.8, 0.0, 0.2)
2929
+ # Vivid gamboge: #FF9900: (255, 153, 0)
2930
+ VIVID_GAMBOGE = RGB.new(1.0, 0.6, 0.0)
2931
+ # Vivid lime green: #a6d608: (166, 214, 8)
2932
+ VIVID_LIME_GREEN = RGB.new(0.6509803921568628, 0.8392156862745098, 0.03137254901960784)
2933
+ # Vivid malachite: #00cc33: (0, 204, 51)
2934
+ VIVID_MALACHITE = RGB.new(0.0, 0.8, 0.2)
2935
+ # Vivid mulberry: #B80CE3: (184, 12, 227)
2936
+ VIVID_MULBERRY = RGB.new(0.7215686274509804, 0.047058823529411764, 0.8901960784313725)
2937
+ # Vivid orange: #FF5F00: (255, 95, 0)
2938
+ VIVID_ORANGE = RGB.new(1.0, 0.37254901960784315, 0.0)
2939
+ # Vivid orange peel: #FFA000: (255, 160, 0)
2940
+ VIVID_ORANGE_PEEL = RGB.new(1.0, 0.6274509803921569, 0.0)
2941
+ # Vivid orchid: #CC00FF: (204, 0, 255)
2942
+ VIVID_ORCHID = RGB.new(0.8, 0.0, 1.0)
2943
+ # Vivid raspberry: #FF006C: (255, 0, 108)
2944
+ VIVID_RASPBERRY = RGB.new(1.0, 0.0, 0.4235294117647059)
2945
+ # Vivid red: #F70D1A: (247, 13, 26)
2946
+ VIVID_RED = RGB.new(0.9686274509803922, 0.050980392156862744, 0.10196078431372549)
2947
+ # Vivid red-tangelo: #DF6124: (223, 97, 36)
2948
+ VIVID_RED_TANGELO = RGB.new(0.8745098039215686, 0.3803921568627451, 0.1411764705882353)
2949
+ # Vivid sky blue: #00CCFF: (0, 204, 255)
2950
+ VIVID_SKY_BLUE = RGB.new(0.0, 0.8, 1.0)
2951
+ # Vivid tangelo: #F07427: (240, 116, 39)
2952
+ VIVID_TANGELO = RGB.new(0.9411764705882353, 0.4549019607843137, 0.15294117647058825)
2953
+ # Vivid tangerine: #FFA089: (255, 160, 137)
2954
+ VIVID_TANGERINE = RGB.new(1.0, 0.6274509803921569, 0.5372549019607843)
2955
+ # Vivid vermilion: #e56024: (229, 96, 36)
2956
+ VIVID_VERMILION = RGB.new(0.8980392156862745, 0.3764705882352941, 0.1411764705882353)
2957
+ # Vivid violet: #9F00FF: (159, 0, 255)
2958
+ VIVID_VIOLET = RGB.new(0.6235294117647059, 0.0, 1.0)
2959
+ # Vivid yellow: #FFE302: (255, 227, 2)
2960
+ VIVID_YELLOW = RGB.new(1.0, 0.8901960784313725, 0.00784313725490196)
2961
+ # Water: #D4F1F9: (212, 241, 249)
2962
+ WATER = RGB.new(0.8313725490196079, 0.9450980392156862, 0.9764705882352941)
2963
+ # Watermelon: #F05C85: (240, 92, 133)
2964
+ WATERMELON = RGB.new(0.9411764705882353, 0.3607843137254902, 0.5215686274509804)
2965
+ # Watermelon red: #BF4147: (190, 65, 71)
2966
+ WATERMELON_RED = RGB.new(0.7450980392156863, 0.2549019607843137, 0.2784313725490196)
2967
+ # Watermelon Yellow: #EEFF1B: (238, 255, 27)
2968
+ WATERMELON_YELLOW = RGB.new(0.9333333333333333, 1.0, 0.10588235294117647)
2969
+ # Waterspout: #A4F4F9: (164, 244, 249)
2970
+ WATERSPOUT = RGB.new(0.6431372549019608, 0.9568627450980393, 0.9764705882352941)
2971
+ # Weldon Blue: #7C98AB: (124, 152, 171)
2972
+ WELDON_BLUE = RGB.new(0.48627450980392156, 0.596078431372549, 0.6705882352941176)
2973
+ # Wenge: #645452: (100, 84, 82)
2974
+ WENGE = RGB.new(0.39215686274509803, 0.32941176470588235, 0.3215686274509804)
2975
+ # Wheat: #F5DEB3: (245, 222, 179)
2976
+ WHEAT = RGB.new(0.9607843137254902, 0.8705882352941177, 0.7019607843137254)
2977
+ # White: #FFFFFF: (255, 255, 255)
366
2978
  WHITE = RGB.new(1.0, 1.0, 1.0)
367
- # Wisteria: #C9A0DC
368
- WISTERIA = RGB.new(0.788235294117647, 0.627450980392157, 0.862745098039216)
369
- # Yellow: #FFFF00
2979
+ # White chocolate: #EDE6D6: (237, 230, 214)
2980
+ WHITE_CHOCOLATE = RGB.new(0.9294117647058824, 0.9019607843137255, 0.8392156862745098)
2981
+ # White coffee: #E6E0D4: (230, 224, 212)
2982
+ WHITE_COFFEE = RGB.new(0.9019607843137255, 0.8784313725490196, 0.8313725490196079)
2983
+ # White smoke: #F5F5F5: (245, 245, 245)
2984
+ WHITE_SMOKE = RGB.new(0.9607843137254902, 0.9607843137254902, 0.9607843137254902)
2985
+ # Wild orchid: #D470A2: (212, 112, 162)
2986
+ WILD_ORCHID = RGB.new(0.8313725490196079, 0.4392156862745098, 0.6352941176470588)
2987
+ # Wild Strawberry: #FF43A4: (255, 67, 164)
2988
+ WILD_STRAWBERRY = RGB.new(1.0, 0.2627450980392157, 0.6431372549019608)
2989
+ # Wild watermelon: #FC6C85: (252, 108, 133)
2990
+ WILD_WATERMELON = RGB.new(0.9882352941176471, 0.4235294117647059, 0.5215686274509804)
2991
+ # Willpower orange: #FD5800: (253, 88, 0)
2992
+ WILLPOWER_ORANGE = RGB.new(0.9921568627450981, 0.34509803921568627, 0.0)
2993
+ # Windsor tan: #A75502: (167, 85, 2)
2994
+ WINDSOR_TAN = RGB.new(0.6549019607843137, 0.3333333333333333, 0.00784313725490196)
2995
+ # Wine: #722F37: (114, 47, 55)
2996
+ WINE = RGB.new(0.4470588235294118, 0.1843137254901961, 0.21568627450980393)
2997
+ # Wine dregs: #673147: (103, 49, 71)
2998
+ WINE_DREGS = RGB.new(0.403921568627451, 0.19215686274509805, 0.2784313725490196)
2999
+ # Wine red: #B11226: (177, 18, 38)
3000
+ WINE_RED = RGB.new(0.6941176470588235, 0.07058823529411765, 0.14901960784313725)
3001
+ # Winter Sky: #FF007C: (255, 0, 124)
3002
+ WINTER_SKY = RGB.new(1.0, 0.0, 0.48627450980392156)
3003
+ # Winter Wizard: #A0E6FF: (160, 230, 255)
3004
+ WINTER_WIZARD = RGB.new(0.6274509803921569, 0.9019607843137255, 1.0)
3005
+ # Wintergreen Dream: #56887D: (86, 136, 125)
3006
+ WINTERGREEN_DREAM = RGB.new(0.33725490196078434, 0.5333333333333333, 0.49019607843137253)
3007
+ # Wisteria: #C9A0DC: (201, 160, 220)
3008
+ WISTERIA = RGB.new(0.788235294117647, 0.6274509803921569, 0.8627450980392157)
3009
+ # Wood brown: #C19A6B: (193, 154, 107)
3010
+ WOOD_BROWN = RGB.new(0.7568627450980392, 0.6039215686274509, 0.4196078431372549)
3011
+ # Xanadu: #738678: (115, 134, 120)
3012
+ XANADU = RGB.new(0.45098039215686275, 0.5254901960784314, 0.47058823529411764)
3013
+ # Yellow: #FFFF00: (255, 255, 0)
370
3014
  YELLOW = RGB.new(1.0, 1.0, 0.0)
371
- # Zinnwaldite: #EBC2AF
372
- ZINNWALDITE = RGB.new(0.92156862745098, 0.76078431372549, 0.686274509803922)
3015
+ # Yellow (Crayola): #FCE883: (252, 232, 131)
3016
+ YELLOW_CRAYOLA = RGB.new(0.9882352941176471, 0.9098039215686274, 0.5137254901960784)
3017
+ # Yellow (Munsell): #EFCC00: (239, 204, 0)
3018
+ YELLOW_MUNSELL = RGB.new(0.9372549019607843, 0.8, 0.0)
3019
+ # Yellow (NCS): #FFD300: (255, 211, 0)
3020
+ YELLOW_NCS = RGB.new(1.0, 0.8274509803921568, 0.0)
3021
+ # Yellow (Pantone): #FEDF00: (254, 223, 0)
3022
+ YELLOW_PANTONE = RGB.new(0.996078431372549, 0.8745098039215686, 0.0)
3023
+ # Yellow (process): #FFEF00: (255, 239, 0)
3024
+ YELLOW_PROCESS = RGB.new(1.0, 0.9372549019607843, 0.0)
3025
+ # Yellow (RYB): #FEFE33: (254, 254, 51)
3026
+ YELLOW_RYB = RGB.new(0.996078431372549, 0.996078431372549, 0.2)
3027
+ # Yellow-green: #9ACD32: (154, 205, 50)
3028
+ YELLOW_GREEN = RGB.new(0.6039215686274509, 0.803921568627451, 0.19607843137254902)
3029
+ # Yellow-green (Crayola): #C5E384: (197, 227, 132)
3030
+ YELLOW_GREEN_CRAYOLA = RGB.new(0.7725490196078432, 0.8901960784313725, 0.5176470588235295)
3031
+ # Yellow Orange: #FFAE42: (255, 174, 66)
3032
+ YELLOW_ORANGE = RGB.new(1.0, 0.6823529411764706, 0.25882352941176473)
3033
+ # Yellow Orange (Color Wheel): #FF9505: (255, 149, 5)
3034
+ YELLOW_ORANGE_COLOR_WHEEL = RGB.new(1.0, 0.5843137254901961, 0.0196078431372549)
3035
+ # Yellow rose: #FFF000: (255, 240, 0)
3036
+ YELLOW_ROSE = RGB.new(1.0, 0.9411764705882353, 0.0)
3037
+ # Yellow Sunshine: #FFF700: (255, 247, 0)
3038
+ YELLOW_SUNSHINE = RGB.new(1.0, 0.9686274509803922, 0.0)
3039
+ # YInMn Blue: #2E5090: (46, 80, 144)
3040
+ YINMN_BLUE = RGB.new(0.1803921568627451, 0.3137254901960784, 0.5647058823529412)
3041
+ # Zaffre: #0014A8: (0, 20, 168)
3042
+ ZAFFRE = RGB.new(0.0, 0.0784313725490196, 0.6588235294117647)
3043
+ # Zebra White: #F5F5F5: (245, 245, 245)
3044
+ ZEBRA_WHITE = RGB.new(0.9607843137254902, 0.9607843137254902, 0.9607843137254902)
3045
+ # Zinnwaldite: #2C1608: (44, 22, 8)
3046
+ ZINNWALDITE = RGB.new(0.17254901960784313, 0.08627450980392157, 0.03137254901960784)
3047
+
373
3048
  module X11
374
- # Gray: #BEBEBE
375
- GRAY = RGB.new(0.745098039215686, 0.745098039215686, 0.745098039215686)
376
- # Green: #00FF00
377
- GREEN = RGB.new(0.0, 1.0, 0.0)
378
- # Maroon: #B03060
379
- MAROON = RGB.new(0.690196078431373, 0.188235294117647, 0.376470588235294)
380
- # Purple: #A020F0
381
- PURPLE = RGB.new(0.627450980392157, 0.125490196078431, 0.941176470588235)
382
- # Alice Blue: #F0F8FF
383
- ALICE_BLUE = RGB.new(0.941176470588235, 0.972549019607843, 1.0)
384
- # Antique White: #FAEBD7
385
- ANTIQUE_WHITE = RGB.new(0.980392156862745, 0.92156862745098, 0.843137254901961)
386
- # Aqua: #00FFFF
3049
+ # Alice Blue: #F0F8FF: (240, 248, 255)
3050
+ ALICE_BLUE = RGB.new(0.9411764705882353, 0.9725490196078431, 1.0)
3051
+ # Antique White: #FAEBD7: (250, 235, 215)
3052
+ ANTIQUE_WHITE = RGB.new(0.9803921568627451, 0.9215686274509803, 0.8431372549019608)
3053
+ # Aqua: #00FFFF: (0, 255, 255)
387
3054
  AQUA = RGB.new(0.0, 1.0, 1.0)
388
- # Aquamarine: #7FFFD4
389
- AQUAMARINE = RGB.new(0.498039215686275, 1.0, 0.831372549019608)
390
- # Azure: #F0FFFF
391
- AZURE = RGB.new(0.941176470588235, 1.0, 1.0)
392
- # Beige: #F5F5DC
393
- BEIGE = RGB.new(0.96078431372549, 0.96078431372549, 0.862745098039216)
394
- # Bisque: #FFE4C4
395
- BISQUE = RGB.new(1.0, 0.894117647058824, 0.768627450980392)
396
- # Black: #000000
3055
+ # Aquamarine: #7FFFD4: (127, 255, 212)
3056
+ AQUAMARINE = RGB.new(0.4980392156862745, 1.0, 0.8313725490196079)
3057
+ # Azure: #F0FFFF: (240, 255, 255)
3058
+ AZURE = RGB.new(0.9411764705882353, 1.0, 1.0)
3059
+ # Beige: #F5F5DC: (245, 245, 220)
3060
+ BEIGE = RGB.new(0.9607843137254902, 0.9607843137254902, 0.8627450980392157)
3061
+ # Bisque: #FFE4C4: (255, 228, 196)
3062
+ BISQUE = RGB.new(1.0, 0.8941176470588236, 0.7686274509803922)
3063
+ # Black: #000000: (0, 0, 0)
397
3064
  BLACK = RGB.new(0.0, 0.0, 0.0)
398
- # Blanched Almond: #FFEBCD
399
- BLANCHED_ALMOND = RGB.new(1.0, 0.92156862745098, 0.803921568627451)
400
- # Blue: #0000FF
3065
+ # Blanched Almond: #FFEBCD: (255, 235, 205)
3066
+ BLANCHED_ALMOND = RGB.new(1.0, 0.9215686274509803, 0.803921568627451)
3067
+ # Blue: #0000FF: (0, 0, 255)
401
3068
  BLUE = RGB.new(0.0, 0.0, 1.0)
402
- # Blue Violet: #8A2BE2
403
- BLUE_VIOLET = RGB.new(0.541176470588235, 0.168627450980392, 0.886274509803922)
404
- # Brown: #A52A2A
405
- BROWN = RGB.new(0.647058823529412, 0.164705882352941, 0.164705882352941)
406
- # Burly Wood: #DEB887
407
- BURLY_WOOD = RGB.new(0.870588235294118, 0.72156862745098, 0.529411764705882)
408
- # Cadet Blue: #5F9EA0
409
- CADET_BLUE = RGB.new(0.372549019607843, 0.619607843137255, 0.627450980392157)
410
- # Chartreuse: #7FFF00
411
- CHARTREUSE = RGB.new(0.498039215686275, 1.0, 0.0)
412
- # Chocolate: #D2691E
413
- CHOCOLATE = RGB.new(0.823529411764706, 0.411764705882353, 0.117647058823529)
414
- # Coral: #FF7F50
415
- CORAL = RGB.new(1.0, 0.498039215686275, 0.313725490196078)
416
- # Cornflower Blue: #6495ED
417
- CORNFLOWER_BLUE = RGB.new(0.392156862745098, 0.584313725490196, 0.929411764705882)
418
- # Cornsilk: #FFF8DC
419
- CORNSILK = RGB.new(1.0, 0.972549019607843, 0.862745098039216)
420
- # Crimson: #DC143C
421
- CRIMSON = RGB.new(0.862745098039216, 0.0784313725490196, 0.235294117647059)
422
- # Cyan: #00FFFF
3069
+ # Blue Violet: #8A2BE2: (138, 43, 226)
3070
+ BLUE_VIOLET = RGB.new(0.5411764705882353, 0.16862745098039217, 0.8862745098039215)
3071
+ # Brown: #A52A2A: (165, 42, 42)
3072
+ BROWN = RGB.new(0.6470588235294118, 0.16470588235294117, 0.16470588235294117)
3073
+ # Burlywood: #DEB887: (222, 184, 135)
3074
+ BURLYWOOD = RGB.new(0.8705882352941177, 0.7215686274509804, 0.5294117647058824)
3075
+ # Cadet Blue: #5F9EA0: (95, 158, 160)
3076
+ CADET_BLUE = RGB.new(0.37254901960784315, 0.6196078431372549, 0.6274509803921569)
3077
+ # Chartreuse: #7FFF00: (127, 255, 0)
3078
+ CHARTREUSE = RGB.new(0.4980392156862745, 1.0, 0.0)
3079
+ # Chocolate: #D2691E: (210, 105, 30)
3080
+ CHOCOLATE = RGB.new(0.8235294117647058, 0.4117647058823529, 0.11764705882352941)
3081
+ # Coral: #FF7F50: (255, 127, 80)
3082
+ CORAL = RGB.new(1.0, 0.4980392156862745, 0.3137254901960784)
3083
+ # Cornflower Blue: #6495ED: (100, 149, 237)
3084
+ CORNFLOWER_BLUE = RGB.new(0.39215686274509803, 0.5843137254901961, 0.9294117647058824)
3085
+ # Cornsilk: #FFF8DC: (255, 248, 220)
3086
+ CORNSILK = RGB.new(1.0, 0.9725490196078431, 0.8627450980392157)
3087
+ # Crimson: #DC143C: (220, 20, 60)
3088
+ CRIMSON = RGB.new(0.8627450980392157, 0.0784313725490196, 0.23529411764705882)
3089
+ # Cyan: #00FFFF: (0, 255, 255)
423
3090
  CYAN = RGB.new(0.0, 1.0, 1.0)
424
- # Dark Blue: #00008B
425
- DARK_BLUE = RGB.new(0.0, 0.0, 0.545098039215686)
426
- # Dark Cyan: #008B8B
427
- DARK_CYAN = RGB.new(0.0, 0.545098039215686, 0.545098039215686)
428
- # Dark Goldenrod: #B8860B
429
- DARK_GOLDENROD = RGB.new(0.72156862745098, 0.525490196078431, 0.0431372549019608)
430
- # Dark Gray: #A9A9A9
431
- DARK_GRAY = RGB.new(0.662745098039216, 0.662745098039216, 0.662745098039216)
432
- # Dark Green: #006400
433
- DARK_GREEN = RGB.new(0.0, 0.392156862745098, 0.0)
434
- # Dark Khaki: #BDB76B
435
- DARK_KHAKI = RGB.new(0.741176470588235, 0.717647058823529, 0.419607843137255)
436
- # Dark Magenta: #8B008B
437
- DARK_MAGENTA = RGB.new(0.545098039215686, 0.0, 0.545098039215686)
438
- # Dark Olive Green: #556B2F
439
- DARK_OLIVE_GREEN = RGB.new(0.333333333333333, 0.419607843137255, 0.184313725490196)
440
- # Dark Orange: #FF8C00
441
- DARK_ORANGE = RGB.new(1.0, 0.549019607843137, 0.0)
442
- # Dark Orchid: #9932CC
443
- DARK_ORCHID = RGB.new(0.6, 0.196078431372549, 0.8)
444
- # Dark Red: #8B0000
445
- DARK_RED = RGB.new(0.545098039215686, 0.0, 0.0)
446
- # Dark Salmon: #E9967A
447
- DARK_SALMON = RGB.new(0.913725490196078, 0.588235294117647, 0.47843137254902)
448
- # Dark Sea Green: #8FBC8F
449
- DARK_SEA_GREEN = RGB.new(0.56078431372549, 0.737254901960784, 0.56078431372549)
450
- # Dark Slate Blue: #483D8B
451
- DARK_SLATE_BLUE = RGB.new(0.282352941176471, 0.23921568627451, 0.545098039215686)
452
- # Dark Slate Gray: #2F4F4F
453
- DARK_SLATE_GRAY = RGB.new(0.184313725490196, 0.309803921568627, 0.309803921568627)
454
- # Dark Turquoise: #00CED1
455
- DARK_TURQUOISE = RGB.new(0.0, 0.807843137254902, 0.819607843137255)
456
- # Dark Violet: #9400D3
457
- DARK_VIOLET = RGB.new(0.580392156862745, 0.0, 0.827450980392157)
458
- # Deep Pink: #FF1493
459
- DEEP_PINK = RGB.new(1.0, 0.0784313725490196, 0.576470588235294)
460
- # Deep Sky Blue: #00BFFF
461
- DEEP_SKY_BLUE = RGB.new(0.0, 0.749019607843137, 1.0)
462
- # Dim Gray: #696969
463
- DIM_GRAY = RGB.new(0.411764705882353, 0.411764705882353, 0.411764705882353)
464
- # Dodger Blue: #1E90FF
465
- DODGER_BLUE = RGB.new(0.117647058823529, 0.564705882352941, 1.0)
466
- # Fire Brick: #B22222
467
- FIRE_BRICK = RGB.new(0.698039215686274, 0.133333333333333, 0.133333333333333)
468
- # Floral White: #FFFAF0
469
- FLORAL_WHITE = RGB.new(1.0, 0.980392156862745, 0.941176470588235)
470
- # Forest Green: #228B22
471
- FOREST_GREEN = RGB.new(0.133333333333333, 0.545098039215686, 0.133333333333333)
472
- # Fuchsia: #FF00FF
3091
+ # Dark Blue: #00008B: (0, 0, 139)
3092
+ DARK_BLUE = RGB.new(0.0, 0.0, 0.5450980392156862)
3093
+ # Dark Cyan: #008B8B: (0, 139, 139)
3094
+ DARK_CYAN = RGB.new(0.0, 0.5450980392156862, 0.5450980392156862)
3095
+ # Dark Goldenrod: #B8860B: (184, 134, 11)
3096
+ DARK_GOLDENROD = RGB.new(0.7215686274509804, 0.5254901960784314, 0.043137254901960784)
3097
+ # Dark Gray: #A9A9A9: (169, 169, 169)
3098
+ DARK_GRAY = RGB.new(0.6627450980392157, 0.6627450980392157, 0.6627450980392157)
3099
+ # Dark Green: #006400: (0, 100, 0)
3100
+ DARK_GREEN = RGB.new(0.0, 0.39215686274509803, 0.0)
3101
+ # Dark Khaki: #BDB76B: (189, 183, 107)
3102
+ DARK_KHAKI = RGB.new(0.7411764705882353, 0.7176470588235294, 0.4196078431372549)
3103
+ # Dark Magenta: #8B008B: (139, 0, 139)
3104
+ DARK_MAGENTA = RGB.new(0.5450980392156862, 0.0, 0.5450980392156862)
3105
+ # Dark Olive Green: #556B2F: (85, 107, 47)
3106
+ DARK_OLIVE_GREEN = RGB.new(0.3333333333333333, 0.4196078431372549, 0.1843137254901961)
3107
+ # Dark Orange: #FF8C00: (255, 140, 0)
3108
+ DARK_ORANGE = RGB.new(1.0, 0.5490196078431373, 0.0)
3109
+ # Dark Orchid: #9932CC: (153, 50, 204)
3110
+ DARK_ORCHID = RGB.new(0.6, 0.19607843137254902, 0.8)
3111
+ # Dark Red: #8B0000: (139, 0, 0)
3112
+ DARK_RED = RGB.new(0.5450980392156862, 0.0, 0.0)
3113
+ # Dark Salmon: #E9967A: (233, 150, 122)
3114
+ DARK_SALMON = RGB.new(0.9137254901960784, 0.5882352941176471, 0.47843137254901963)
3115
+ # Dark Sea Green: #8FBC8F: (143, 188, 143)
3116
+ DARK_SEA_GREEN = RGB.new(0.5607843137254902, 0.7372549019607844, 0.5607843137254902)
3117
+ # Dark Slate Blue: #483D8B: (72, 61, 139)
3118
+ DARK_SLATE_BLUE = RGB.new(0.2823529411764706, 0.23921568627450981, 0.5450980392156862)
3119
+ # Dark Slate Gray: #2F4F4F: (47, 79, 79)
3120
+ DARK_SLATE_GRAY = RGB.new(0.1843137254901961, 0.30980392156862746, 0.30980392156862746)
3121
+ # Dark Turquoise: #00CED1: (0, 206, 209)
3122
+ DARK_TURQUOISE = RGB.new(0.0, 0.807843137254902, 0.8196078431372549)
3123
+ # Dark Violet: #9400D3: (148, 0, 211)
3124
+ DARK_VIOLET = RGB.new(0.5803921568627451, 0.0, 0.8274509803921568)
3125
+ # Deep Pink: #FF1493: (255, 20, 147)
3126
+ DEEP_PINK = RGB.new(1.0, 0.0784313725490196, 0.5764705882352941)
3127
+ # Deep Sky Blue: #00BFFF: (0, 191, 255)
3128
+ DEEP_SKY_BLUE = RGB.new(0.0, 0.7490196078431373, 1.0)
3129
+ # Dim Gray: #696969: (105, 105, 105)
3130
+ DIM_GRAY = RGB.new(0.4117647058823529, 0.4117647058823529, 0.4117647058823529)
3131
+ # Dodger Blue: #1E90FF: (30, 144, 255)
3132
+ DODGER_BLUE = RGB.new(0.11764705882352941, 0.5647058823529412, 1.0)
3133
+ # Firebrick: #B22222: (178, 34, 34)
3134
+ FIREBRICK = RGB.new(0.6980392156862745, 0.13333333333333333, 0.13333333333333333)
3135
+ # Floral White: #FFFAF0: (255, 250, 240)
3136
+ FLORAL_WHITE = RGB.new(1.0, 0.9803921568627451, 0.9411764705882353)
3137
+ # Forest Green: #228B22: (34, 139, 34)
3138
+ FOREST_GREEN = RGB.new(0.13333333333333333, 0.5450980392156862, 0.13333333333333333)
3139
+ # Fuchsia: #FF00FF: (255, 0, 255)
473
3140
  FUCHSIA = RGB.new(1.0, 0.0, 1.0)
474
- # Gainsboro: #DCDCDC
475
- GAINSBORO = RGB.new(0.862745098039216, 0.862745098039216, 0.862745098039216)
476
- # Ghost White: #F8F8FF
477
- GHOST_WHITE = RGB.new(0.972549019607843, 0.972549019607843, 1.0)
478
- # Gold: #FFD700
479
- GOLD = RGB.new(1.0, 0.843137254901961, 0.0)
480
- # Goldenrod: #DAA520
481
- GOLDENROD = RGB.new(0.854901960784314, 0.647058823529412, 0.125490196078431)
482
- # Green Yellow: #ADFF2F
483
- GREEN_YELLOW = RGB.new(0.67843137254902, 1.0, 0.184313725490196)
484
- # Honeydew: #F0FFF0
485
- HONEYDEW = RGB.new(0.941176470588235, 1.0, 0.941176470588235)
486
- # Hot Pink: #FF69B4
487
- HOT_PINK = RGB.new(1.0, 0.411764705882353, 0.705882352941177)
488
- # Indian Red: #CD5C5C
489
- INDIAN_RED = RGB.new(0.803921568627451, 0.36078431372549, 0.36078431372549)
490
- # Indigo: #4B0082
491
- INDIGO = RGB.new(0.294117647058824, 0.0, 0.509803921568627)
492
- # Ivory: #FFFFF0
493
- IVORY = RGB.new(1.0, 1.0, 0.941176470588235)
494
- # Khaki: #F0E68C
495
- KHAKI = RGB.new(0.941176470588235, 0.901960784313726, 0.549019607843137)
496
- # Lavender: #E6E6FA
497
- LAVENDER = RGB.new(0.901960784313726, 0.901960784313726, 0.980392156862745)
498
- # Lavender Blush: #FFF0F5
499
- LAVENDER_BLUSH = RGB.new(1.0, 0.941176470588235, 0.96078431372549)
500
- # Lawn Green: #7CFC00
501
- LAWN_GREEN = RGB.new(0.486274509803922, 0.988235294117647, 0.0)
502
- # Lemon Chiffon: #FFFACD
503
- LEMON_CHIFFON = RGB.new(1.0, 0.980392156862745, 0.803921568627451)
504
- # Light Blue: #ADD8E6
505
- LIGHT_BLUE = RGB.new(0.67843137254902, 0.847058823529412, 0.901960784313726)
506
- # Light Coral: #F08080
507
- LIGHT_CORAL = RGB.new(0.941176470588235, 0.501960784313725, 0.501960784313725)
508
- # Light Cyan: #E0FFFF
509
- LIGHT_CYAN = RGB.new(0.87843137254902, 1.0, 1.0)
510
- # Light Goldenrod Yellow: #FAFAD2
511
- LIGHT_GOLDENROD_YELLOW = RGB.new(0.980392156862745, 0.980392156862745, 0.823529411764706)
512
- # Light Green: #90EE90
513
- LIGHT_GREEN = RGB.new(0.564705882352941, 0.933333333333333, 0.564705882352941)
514
- # Light Grey: #D3D3D3
515
- LIGHT_GREY = RGB.new(0.827450980392157, 0.827450980392157, 0.827450980392157)
516
- # Light Pink: #FFB6C1
517
- LIGHT_PINK = RGB.new(1.0, 0.713725490196078, 0.756862745098039)
518
- # Light Salmon: #FFA07A
519
- LIGHT_SALMON = RGB.new(1.0, 0.627450980392157, 0.47843137254902)
520
- # Light Sea Green: #20B2AA
521
- LIGHT_SEA_GREEN = RGB.new(0.125490196078431, 0.698039215686274, 0.666666666666667)
522
- # Light Sky Blue: #87CEFA
523
- LIGHT_SKY_BLUE = RGB.new(0.529411764705882, 0.807843137254902, 0.980392156862745)
524
- # Light Slate Gray: #778899
525
- LIGHT_SLATE_GRAY = RGB.new(0.466666666666667, 0.533333333333333, 0.6)
526
- # Light Steel Blue: #B0C4DE
527
- LIGHT_STEEL_BLUE = RGB.new(0.690196078431373, 0.768627450980392, 0.870588235294118)
528
- # Light Yellow: #FFFFE0
529
- LIGHT_YELLOW = RGB.new(1.0, 1.0, 0.87843137254902)
530
- # Lime: #00FF00
3141
+ # Gainsboro: #DCDCDC: (220, 220, 220)
3142
+ GAINSBORO = RGB.new(0.8627450980392157, 0.8627450980392157, 0.8627450980392157)
3143
+ # Ghost White: #F8F8FF: (248, 248, 255)
3144
+ GHOST_WHITE = RGB.new(0.9725490196078431, 0.9725490196078431, 1.0)
3145
+ # Gold: #FFD700: (255, 215, 0)
3146
+ GOLD = RGB.new(1.0, 0.8431372549019608, 0.0)
3147
+ # Goldenrod: #DAA520: (218, 165, 32)
3148
+ GOLDENROD = RGB.new(0.8549019607843137, 0.6470588235294118, 0.12549019607843137)
3149
+ # Gray: #BEBEBE: (190, 190, 190)
3150
+ GRAY = RGB.new(0.7450980392156863, 0.7450980392156863, 0.7450980392156863)
3151
+ # Web Gray: #808080: (128, 128, 128)
3152
+ WEB_GRAY = RGB.new(0.5019607843137255, 0.5019607843137255, 0.5019607843137255)
3153
+ # Green: #00FF00: (0, 255, 0)
3154
+ GREEN = RGB.new(0.0, 1.0, 0.0)
3155
+ # Web Green: #008000: (0, 128, 0)
3156
+ WEB_GREEN = RGB.new(0.0, 0.5019607843137255, 0.0)
3157
+ # Green Yellow: #ADFF2F: (173, 255, 47)
3158
+ GREEN_YELLOW = RGB.new(0.6784313725490196, 1.0, 0.1843137254901961)
3159
+ # Honeydew: #F0FFF0: (240, 255, 240)
3160
+ HONEYDEW = RGB.new(0.9411764705882353, 1.0, 0.9411764705882353)
3161
+ # Hot Pink: #FF69B4: (255, 105, 180)
3162
+ HOT_PINK = RGB.new(1.0, 0.4117647058823529, 0.7058823529411765)
3163
+ # Indian Red: #CD5C5C: (205, 92, 92)
3164
+ INDIAN_RED = RGB.new(0.803921568627451, 0.3607843137254902, 0.3607843137254902)
3165
+ # Indigo: #4B0082: (75, 0, 130)
3166
+ INDIGO = RGB.new(0.29411764705882354, 0.0, 0.5098039215686274)
3167
+ # Ivory: #FFFFF0: (255, 255, 240)
3168
+ IVORY = RGB.new(1.0, 1.0, 0.9411764705882353)
3169
+ # Khaki: #F0E68C: (240, 230, 140)
3170
+ KHAKI = RGB.new(0.9411764705882353, 0.9019607843137255, 0.5490196078431373)
3171
+ # Lavender: #E6E6FA: (230, 230, 250)
3172
+ LAVENDER = RGB.new(0.9019607843137255, 0.9019607843137255, 0.9803921568627451)
3173
+ # Lavender Blush: #FFF0F5: (255, 240, 245)
3174
+ LAVENDER_BLUSH = RGB.new(1.0, 0.9411764705882353, 0.9607843137254902)
3175
+ # Lawn Green: #7CFC00: (124, 252, 0)
3176
+ LAWN_GREEN = RGB.new(0.48627450980392156, 0.9882352941176471, 0.0)
3177
+ # Lemon Chiffon: #FFFACD: (255, 250, 205)
3178
+ LEMON_CHIFFON = RGB.new(1.0, 0.9803921568627451, 0.803921568627451)
3179
+ # Light Blue: #ADD8E6: (173, 216, 230)
3180
+ LIGHT_BLUE = RGB.new(0.6784313725490196, 0.8470588235294118, 0.9019607843137255)
3181
+ # Light Coral: #F08080: (240, 128, 128)
3182
+ LIGHT_CORAL = RGB.new(0.9411764705882353, 0.5019607843137255, 0.5019607843137255)
3183
+ # Light Cyan: #E0FFFF: (224, 255, 255)
3184
+ LIGHT_CYAN = RGB.new(0.8784313725490196, 1.0, 1.0)
3185
+ # Light Goldenrod: #FAFAD2: (250, 250, 210)
3186
+ LIGHT_GOLDENROD = RGB.new(0.9803921568627451, 0.9803921568627451, 0.8235294117647058)
3187
+ # Light Gray: #D3D3D3: (211, 211, 211)
3188
+ LIGHT_GRAY = RGB.new(0.8274509803921568, 0.8274509803921568, 0.8274509803921568)
3189
+ # Light Green: #90EE90: (144, 238, 144)
3190
+ LIGHT_GREEN = RGB.new(0.5647058823529412, 0.9333333333333333, 0.5647058823529412)
3191
+ # Light Pink: #FFB6C1: (255, 182, 193)
3192
+ LIGHT_PINK = RGB.new(1.0, 0.7137254901960784, 0.7568627450980392)
3193
+ # Light Salmon: #FFA07A: (255, 160, 122)
3194
+ LIGHT_SALMON = RGB.new(1.0, 0.6274509803921569, 0.47843137254901963)
3195
+ # Light Sea Green: #20B2AA: (32, 178, 170)
3196
+ LIGHT_SEA_GREEN = RGB.new(0.12549019607843137, 0.6980392156862745, 0.6666666666666666)
3197
+ # Light Sky Blue: #87CEFA: (135, 206, 250)
3198
+ LIGHT_SKY_BLUE = RGB.new(0.5294117647058824, 0.807843137254902, 0.9803921568627451)
3199
+ # Light Slate Gray: #778899: (119, 136, 153)
3200
+ LIGHT_SLATE_GRAY = RGB.new(0.4666666666666667, 0.5333333333333333, 0.6)
3201
+ # Light Steel Blue: #B0C4DE: (176, 196, 222)
3202
+ LIGHT_STEEL_BLUE = RGB.new(0.6901960784313725, 0.7686274509803922, 0.8705882352941177)
3203
+ # Light Yellow: #FFFFE0: (255, 255, 224)
3204
+ LIGHT_YELLOW = RGB.new(1.0, 1.0, 0.8784313725490196)
3205
+ # Lime: #00FF00: (0, 255, 0)
531
3206
  LIME = RGB.new(0.0, 1.0, 0.0)
532
- # Lime Green: #32CD32
533
- LIME_GREEN = RGB.new(0.196078431372549, 0.803921568627451, 0.196078431372549)
534
- # Linen: #FAF0E6
535
- LINEN = RGB.new(0.980392156862745, 0.941176470588235, 0.901960784313726)
536
- # Magenta: #FF00FF
3207
+ # Lime Green: #32CD32: (50, 205, 50)
3208
+ LIME_GREEN = RGB.new(0.19607843137254902, 0.803921568627451, 0.19607843137254902)
3209
+ # Linen: #FAF0E6: (250, 240, 230)
3210
+ LINEN = RGB.new(0.9803921568627451, 0.9411764705882353, 0.9019607843137255)
3211
+ # Magenta: #FF00FF: (255, 0, 255)
537
3212
  MAGENTA = RGB.new(1.0, 0.0, 1.0)
538
- # Medium Aquamarine: #66CDAA
539
- MEDIUM_AQUAMARINE = RGB.new(0.4, 0.803921568627451, 0.666666666666667)
540
- # Medium Blue: #0000CD
3213
+ # Maroon: #B03060: (176, 48, 96)
3214
+ MAROON = RGB.new(0.6901960784313725, 0.18823529411764706, 0.3764705882352941)
3215
+ # Web Maroon: #800000: (128, 0, 0)
3216
+ WEB_MAROON = RGB.new(0.5019607843137255, 0.0, 0.0)
3217
+ # Medium Aquamarine: #66CDAA: (102, 205, 170)
3218
+ MEDIUM_AQUAMARINE = RGB.new(0.4, 0.803921568627451, 0.6666666666666666)
3219
+ # Medium Blue: #0000CD: (0, 0, 205)
541
3220
  MEDIUM_BLUE = RGB.new(0.0, 0.0, 0.803921568627451)
542
- # Medium Orchid: #BA55D3
543
- MEDIUM_ORCHID = RGB.new(0.729411764705882, 0.333333333333333, 0.827450980392157)
544
- # Medium Purple: #9370DB
545
- MEDIUM_PURPLE = RGB.new(0.576470588235294, 0.43921568627451, 0.858823529411765)
546
- # Medium Sea Green: #3CB371
547
- MEDIUM_SEA_GREEN = RGB.new(0.235294117647059, 0.701960784313725, 0.443137254901961)
548
- # Medium Slate Blue: #7B68EE
549
- MEDIUM_SLATE_BLUE = RGB.new(0.482352941176471, 0.407843137254902, 0.933333333333333)
550
- # Medium Spring Green: #00FA9A
551
- MEDIUM_SPRING_GREEN = RGB.new(0.0, 0.980392156862745, 0.603921568627451)
552
- # Medium Turquoise: #48D1CC
553
- MEDIUM_TURQUOISE = RGB.new(0.282352941176471, 0.819607843137255, 0.8)
554
- # Medium Violet Red: #C71585
555
- MEDIUM_VIOLET_RED = RGB.new(0.780392156862745, 0.0823529411764706, 0.52156862745098)
556
- # Midnight Blue: #191970
557
- MIDNIGHT_BLUE = RGB.new(0.0980392156862745, 0.0980392156862745, 0.43921568627451)
558
- # Mint Cream: #F5FFFA
559
- MINT_CREAM = RGB.new(0.96078431372549, 1.0, 0.980392156862745)
560
- # Misty Rose: #FFE4E1
561
- MISTY_ROSE = RGB.new(1.0, 0.894117647058824, 0.882352941176471)
562
- # Moccasin: #FFE4B5
563
- MOCCASIN = RGB.new(1.0, 0.894117647058824, 0.709803921568627)
564
- # Navajo White: #FFDEAD
565
- NAVAJO_WHITE = RGB.new(1.0, 0.870588235294118, 0.67843137254902)
566
- # Old Lace: #FDF5E6
567
- OLD_LACE = RGB.new(0.992156862745098, 0.96078431372549, 0.901960784313726)
568
- # Olive: #808000
569
- OLIVE = RGB.new(0.501960784313725, 0.501960784313725, 0.0)
570
- # Olive Drab: #6B8E23
571
- OLIVE_DRAB = RGB.new(0.419607843137255, 0.556862745098039, 0.137254901960784)
572
- # Orange: #FFA500
573
- ORANGE = RGB.new(1.0, 0.647058823529412, 0.0)
574
- # Orange Red: #FF4500
575
- ORANGE_RED = RGB.new(1.0, 0.270588235294118, 0.0)
576
- # Orchid: #DA70D6
577
- ORCHID = RGB.new(0.854901960784314, 0.43921568627451, 0.83921568627451)
578
- # Pale Goldenrod: #EEE8AA
579
- PALE_GOLDENROD = RGB.new(0.933333333333333, 0.909803921568627, 0.666666666666667)
580
- # Pale Green: #98FB98
3221
+ # Medium Orchid: #BA55D3: (186, 85, 211)
3222
+ MEDIUM_ORCHID = RGB.new(0.7294117647058823, 0.3333333333333333, 0.8274509803921568)
3223
+ # Medium Purple: #9370DB: (147, 112, 219)
3224
+ MEDIUM_PURPLE = RGB.new(0.5764705882352941, 0.4392156862745098, 0.8588235294117647)
3225
+ # Medium Sea Green: #3CB371: (60, 179, 113)
3226
+ MEDIUM_SEA_GREEN = RGB.new(0.23529411764705882, 0.7019607843137254, 0.44313725490196076)
3227
+ # Medium Slate Blue: #7B68EE: (123, 104, 238)
3228
+ MEDIUM_SLATE_BLUE = RGB.new(0.4823529411764706, 0.40784313725490196, 0.9333333333333333)
3229
+ # Medium Spring Green: #00FA9A: (0, 250, 154)
3230
+ MEDIUM_SPRING_GREEN = RGB.new(0.0, 0.9803921568627451, 0.6039215686274509)
3231
+ # Medium Turquoise: #48D1CC: (72, 209, 204)
3232
+ MEDIUM_TURQUOISE = RGB.new(0.2823529411764706, 0.8196078431372549, 0.8)
3233
+ # Medium Violet Red: #C71585: (199, 21, 133)
3234
+ MEDIUM_VIOLET_RED = RGB.new(0.7803921568627451, 0.08235294117647059, 0.5215686274509804)
3235
+ # Midnight Blue: #191970: (25, 25, 112)
3236
+ MIDNIGHT_BLUE = RGB.new(0.09803921568627451, 0.09803921568627451, 0.4392156862745098)
3237
+ # Mint Cream: #F5FFFA: (245, 255, 250)
3238
+ MINT_CREAM = RGB.new(0.9607843137254902, 1.0, 0.9803921568627451)
3239
+ # Misty Rose: #FFE4E1: (255, 228, 225)
3240
+ MISTY_ROSE = RGB.new(1.0, 0.8941176470588236, 0.8823529411764706)
3241
+ # Moccasin: #FFE4B5: (255, 228, 181)
3242
+ MOCCASIN = RGB.new(1.0, 0.8941176470588236, 0.7098039215686275)
3243
+ # Navajo White: #FFDEAD: (255, 222, 173)
3244
+ NAVAJO_WHITE = RGB.new(1.0, 0.8705882352941177, 0.6784313725490196)
3245
+ # Navy Blue: #000080: (0, 0, 128)
3246
+ NAVY_BLUE = RGB.new(0.0, 0.0, 0.5019607843137255)
3247
+ # Old Lace: #FDF5E6: (253, 245, 230)
3248
+ OLD_LACE = RGB.new(0.9921568627450981, 0.9607843137254902, 0.9019607843137255)
3249
+ # Olive: #808000: (128, 128, 0)
3250
+ OLIVE = RGB.new(0.5019607843137255, 0.5019607843137255, 0.0)
3251
+ # Olive Drab: #6B8E23: (107, 142, 35)
3252
+ OLIVE_DRAB = RGB.new(0.4196078431372549, 0.5568627450980392, 0.13725490196078433)
3253
+ # Orange: #FFA500: (255, 165, 0)
3254
+ ORANGE = RGB.new(1.0, 0.6470588235294118, 0.0)
3255
+ # Orange Red: #FF4500: (255, 69, 0)
3256
+ ORANGE_RED = RGB.new(1.0, 0.27058823529411763, 0.0)
3257
+ # Orchid: #DA70D6: (218, 112, 214)
3258
+ ORCHID = RGB.new(0.8549019607843137, 0.4392156862745098, 0.8392156862745098)
3259
+ # Pale Goldenrod: #EEE8AA: (238, 232, 170)
3260
+ PALE_GOLDENROD = RGB.new(0.9333333333333333, 0.9098039215686274, 0.6666666666666666)
3261
+ # Pale Green: #98FB98: (152, 251, 152)
581
3262
  PALE_GREEN = RGB.new(0.596078431372549, 0.984313725490196, 0.596078431372549)
582
- # Pale Turquoise: #AFEEEE
583
- PALE_TURQUOISE = RGB.new(0.686274509803922, 0.933333333333333, 0.933333333333333)
584
- # Pale Violet Red: #DB7093
585
- PALE_VIOLET_RED = RGB.new(0.858823529411765, 0.43921568627451, 0.576470588235294)
586
- # Papaya Whip: #FFEFD5
587
- PAPAYA_WHIP = RGB.new(1.0, 0.937254901960784, 0.835294117647059)
588
- # Peach Puff: #FFDAB9
589
- PEACH_PUFF = RGB.new(1.0, 0.854901960784314, 0.725490196078431)
590
- # Peru: #CD853F
591
- PERU = RGB.new(0.803921568627451, 0.52156862745098, 0.247058823529412)
592
- # Pink: #FFC0CB
593
- PINK = RGB.new(1.0, 0.752941176470588, 0.796078431372549)
594
- # Plum: #DDA0DD
595
- PLUM = RGB.new(0.866666666666667, 0.627450980392157, 0.866666666666667)
596
- # Powder Blue: #B0E0E6
597
- POWDER_BLUE = RGB.new(0.690196078431373, 0.87843137254902, 0.901960784313726)
598
- # Red: #FF0000
3263
+ # Pale Turquoise: #AFEEEE: (175, 238, 238)
3264
+ PALE_TURQUOISE = RGB.new(0.6862745098039216, 0.9333333333333333, 0.9333333333333333)
3265
+ # Pale Violet Red: #DB7093: (219, 112, 147)
3266
+ PALE_VIOLET_RED = RGB.new(0.8588235294117647, 0.4392156862745098, 0.5764705882352941)
3267
+ # Papaya Whip: #FFEFD5: (255, 239, 213)
3268
+ PAPAYA_WHIP = RGB.new(1.0, 0.9372549019607843, 0.8352941176470589)
3269
+ # Peach Puff: #FFDAB9: (255, 218, 185)
3270
+ PEACH_PUFF = RGB.new(1.0, 0.8549019607843137, 0.7254901960784313)
3271
+ # Peru: #CD853F: (205, 133, 63)
3272
+ PERU = RGB.new(0.803921568627451, 0.5215686274509804, 0.24705882352941178)
3273
+ # Pink: #FFC0CB: (255, 192, 203)
3274
+ PINK = RGB.new(1.0, 0.7529411764705882, 0.796078431372549)
3275
+ # Plum: #DDA0DD: (221, 160, 221)
3276
+ PLUM = RGB.new(0.8666666666666667, 0.6274509803921569, 0.8666666666666667)
3277
+ # Powder Blue: #B0E0E6: (176, 224, 230)
3278
+ POWDER_BLUE = RGB.new(0.6901960784313725, 0.8784313725490196, 0.9019607843137255)
3279
+ # Purple: #A020F0: (160, 32, 240)
3280
+ PURPLE = RGB.new(0.6274509803921569, 0.12549019607843137, 0.9411764705882353)
3281
+ # Web Purple: #800080: (128, 0, 128)
3282
+ WEB_PURPLE = RGB.new(0.5019607843137255, 0.0, 0.5019607843137255)
3283
+ # Rebecca Purple: #663399: (102, 51, 153)
3284
+ REBECCA_PURPLE = RGB.new(0.4, 0.2, 0.6)
3285
+ # Red: #FF0000: (255, 0, 0)
599
3286
  RED = RGB.new(1.0, 0.0, 0.0)
600
- # Rosy Brown: #BC8F8F
601
- ROSY_BROWN = RGB.new(0.737254901960784, 0.56078431372549, 0.56078431372549)
602
- # Royal Blue: #4169E1
603
- ROYAL_BLUE = RGB.new(0.254901960784314, 0.411764705882353, 0.882352941176471)
604
- # Saddle Brown: #8B4513
605
- SADDLE_BROWN = RGB.new(0.545098039215686, 0.270588235294118, 0.0745098039215686)
606
- # Salmon: #FA8072
607
- SALMON = RGB.new(0.980392156862745, 0.501960784313725, 0.447058823529412)
608
- # Sandy Brown: #F4A460
609
- SANDY_BROWN = RGB.new(0.956862745098039, 0.643137254901961, 0.376470588235294)
610
- # Sea Green: #2E8B57
611
- SEA_GREEN = RGB.new(0.180392156862745, 0.545098039215686, 0.341176470588235)
612
- # Seashell: #FFF5EE
613
- SEASHELL = RGB.new(1.0, 0.96078431372549, 0.933333333333333)
614
- # Sienna: #A0522D
615
- SIENNA = RGB.new(0.627450980392157, 0.32156862745098, 0.176470588235294)
616
- # Silver: #C0C0C0
617
- SILVER = RGB.new(0.752941176470588, 0.752941176470588, 0.752941176470588)
618
- # Sky Blue: #87CEEB
619
- SKY_BLUE = RGB.new(0.529411764705882, 0.807843137254902, 0.92156862745098)
620
- # Slate Blue: #6A5ACD
621
- SLATE_BLUE = RGB.new(0.415686274509804, 0.352941176470588, 0.803921568627451)
622
- # Slate Gray: #708090
623
- SLATE_GRAY = RGB.new(0.43921568627451, 0.501960784313725, 0.564705882352941)
624
- # Snow: #FFFAFA
625
- SNOW = RGB.new(1.0, 0.980392156862745, 0.980392156862745)
626
- # Spring Green: #00FF7F
627
- SPRING_GREEN = RGB.new(0.0, 1.0, 0.498039215686275)
628
- # Steel Blue: #4682B4
629
- STEEL_BLUE = RGB.new(0.274509803921569, 0.509803921568627, 0.705882352941177)
630
- # Tan: #D2B48C
631
- TAN = RGB.new(0.823529411764706, 0.705882352941177, 0.549019607843137)
632
- # Teal: #008080
633
- TEAL = RGB.new(0.0, 0.501960784313725, 0.501960784313725)
634
- # Thistle: #D8BFD8
635
- THISTLE = RGB.new(0.847058823529412, 0.749019607843137, 0.847058823529412)
636
- # Tomato: #FF6347
637
- TOMATO = RGB.new(1.0, 0.388235294117647, 0.27843137254902)
638
- # Turquoise: #40E0D0
639
- TURQUOISE = RGB.new(0.250980392156863, 0.87843137254902, 0.815686274509804)
640
- # Violet: #EE82EE
641
- VIOLET = RGB.new(0.933333333333333, 0.509803921568627, 0.933333333333333)
642
- # Wheat: #F5DEB3
643
- WHEAT = RGB.new(0.96078431372549, 0.870588235294118, 0.701960784313725)
644
- # White: #FFFFFF
3287
+ # Rosy Brown: #BC8F8F: (188, 143, 143)
3288
+ ROSY_BROWN = RGB.new(0.7372549019607844, 0.5607843137254902, 0.5607843137254902)
3289
+ # Royal Blue: #4169E1: (65, 105, 225)
3290
+ ROYAL_BLUE = RGB.new(0.2549019607843137, 0.4117647058823529, 0.8823529411764706)
3291
+ # Saddle Brown: #8B4513: (139, 69, 19)
3292
+ SADDLE_BROWN = RGB.new(0.5450980392156862, 0.27058823529411763, 0.07450980392156863)
3293
+ # Salmon: #FA8072: (250, 128, 114)
3294
+ SALMON = RGB.new(0.9803921568627451, 0.5019607843137255, 0.4470588235294118)
3295
+ # Sandy Brown: #F4A460: (244, 164, 96)
3296
+ SANDY_BROWN = RGB.new(0.9568627450980393, 0.6431372549019608, 0.3764705882352941)
3297
+ # Sea Green: #2E8B57: (46, 139, 87)
3298
+ SEA_GREEN = RGB.new(0.1803921568627451, 0.5450980392156862, 0.3411764705882353)
3299
+ # Seashell: #FFF5EE: (255, 245, 238)
3300
+ SEASHELL = RGB.new(1.0, 0.9607843137254902, 0.9333333333333333)
3301
+ # Sienna: #A0522D: (160, 82, 45)
3302
+ SIENNA = RGB.new(0.6274509803921569, 0.3215686274509804, 0.17647058823529413)
3303
+ # Silver: #C0C0C0: (192, 192, 192)
3304
+ SILVER = RGB.new(0.7529411764705882, 0.7529411764705882, 0.7529411764705882)
3305
+ # Sky Blue: #87CEEB: (135, 206, 235)
3306
+ SKY_BLUE = RGB.new(0.5294117647058824, 0.807843137254902, 0.9215686274509803)
3307
+ # Slate Blue: #6A5ACD: (106, 90, 205)
3308
+ SLATE_BLUE = RGB.new(0.41568627450980394, 0.35294117647058826, 0.803921568627451)
3309
+ # Slate Gray: #708090: (112, 128, 144)
3310
+ SLATE_GRAY = RGB.new(0.4392156862745098, 0.5019607843137255, 0.5647058823529412)
3311
+ # Snow: #FFFAFA: (255, 250, 250)
3312
+ SNOW = RGB.new(1.0, 0.9803921568627451, 0.9803921568627451)
3313
+ # Spring Green: #00FF7F: (0, 255, 127)
3314
+ SPRING_GREEN = RGB.new(0.0, 1.0, 0.4980392156862745)
3315
+ # Steel Blue: #4682B4: (70, 130, 180)
3316
+ STEEL_BLUE = RGB.new(0.27450980392156865, 0.5098039215686274, 0.7058823529411765)
3317
+ # Tan: #D2B48C: (210, 180, 140)
3318
+ TAN = RGB.new(0.8235294117647058, 0.7058823529411765, 0.5490196078431373)
3319
+ # Teal: #008080: (0, 128, 128)
3320
+ TEAL = RGB.new(0.0, 0.5019607843137255, 0.5019607843137255)
3321
+ # Thistle: #D8BFD8: (216, 191, 216)
3322
+ THISTLE = RGB.new(0.8470588235294118, 0.7490196078431373, 0.8470588235294118)
3323
+ # Tomato: #FF6347: (255, 99, 71)
3324
+ TOMATO = RGB.new(1.0, 0.38823529411764707, 0.2784313725490196)
3325
+ # Turquoise: #40E0D0: (64, 224, 208)
3326
+ TURQUOISE = RGB.new(0.25098039215686274, 0.8784313725490196, 0.8156862745098039)
3327
+ # Violet: #EE82EE: (238, 130, 238)
3328
+ VIOLET = RGB.new(0.9333333333333333, 0.5098039215686274, 0.9333333333333333)
3329
+ # Wheat: #F5DEB3: (245, 222, 179)
3330
+ WHEAT = RGB.new(0.9607843137254902, 0.8705882352941177, 0.7019607843137254)
3331
+ # White: #FFFFFF: (255, 255, 255)
645
3332
  WHITE = RGB.new(1.0, 1.0, 1.0)
646
- # White Smoke: #F5F5F5
647
- WHITE_SMOKE = RGB.new(0.96078431372549, 0.96078431372549, 0.96078431372549)
648
- # Yellow: #FFFF00
3333
+ # White Smoke: #F5F5F5: (245, 245, 245)
3334
+ WHITE_SMOKE = RGB.new(0.9607843137254902, 0.9607843137254902, 0.9607843137254902)
3335
+ # Yellow: #FFFF00: (255, 255, 0)
649
3336
  YELLOW = RGB.new(1.0, 1.0, 0.0)
650
- # Yellow Green: #9ACD32
651
- YELLOW_GREEN = RGB.new(0.603921568627451, 0.803921568627451, 0.196078431372549)
3337
+ # Yellow Green: #9ACD32: (154, 205, 50)
3338
+ YELLOW_GREEN = RGB.new(0.6039215686274509, 0.803921568627451, 0.19607843137254902)
652
3339
  end
653
3340
  include X11
654
-
655
3341
  end
656
3342
  end