tiedye 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +15 -3
  3. data/lib/tiedye/version.rb +1 -1
  4. data/lib/tiedye.rb +523 -2
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NjYxMGJlMTgxZDU5NjZkOWNmMTBmY2QwODlkMzcyMjRmZGJkNDdhZQ==
4
+ Y2RlM2U5MDRmM2ZiYmI1ZGYwNjg0YjIzMDJjNTVhMTY3YjE3MWQxNQ==
5
5
  data.tar.gz: !binary |-
6
- MTQ3MjA4MjM0OWNmNzE4OTUzOTU0NDI0MGQ4ZGRhMmU3MTJmOTQ3Zg==
6
+ NTBlOTljMDk3YWY1Nzk1MDI3OGRkYWQ1YzE1MzQyZjkyODhlZmM1YQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- OTEyYjZmMWY2NzIxYzllZmMxM2U3NTQzOTNlZWYwYzQ2ZDAyNmM1NmYzNTQ4
10
- MTYzY2JlYjY5OTUxZGM5MTY2Njc0NTQ0MmU5NGI2MjRiNjNlOThhYzEyNDU3
11
- OTg4OTg0ZTkwNDUzZTI1NGJmOGU0N2QxZTA4OGM5YjMwYTlmNjM=
9
+ Mzk1ZjQ3ODAzOTc0YTVmY2VkYmNjNmI3NGQ3YWJmZTMxMzNhMDhiZjlkNjc3
10
+ NjJlYTQ1NzlhYjE4YWVlOTdiNjZmNzhlY2FlM2ViNGZlZGQ4OTU3MGE3YmVk
11
+ MWEzODM0ZDQ4Yjc4OTE0ZTIxODNjMWQ5MjE5ZDJmNmQ2NjI5NjI=
12
12
  data.tar.gz: !binary |-
13
- MTc1M2NhZTFlOTE2ZjcyZDM1MDcxMTU5YzNiYTYzMTMwYzZjY2Y2ZjM1MGVl
14
- NTZmMzlkYzcyODBkZjQ4M2M3Mzk3MzI3MTIyZTVhYzI2MTU1ZjBiYTdkOTk4
15
- ZDc5MWZlMmNiZTYyNzY1Y2E3OTc0MTE0NDM0YTVkNzc5MjgxNGE=
13
+ ZGIwNzQwYWRkMTUxYTVhYjU5MjAzODNhODZjYTkzODk5MTA3ZGUyMTIwNGVl
14
+ MmI1MWRmZTkyMjYyNmI4NzM1ZjA5ZmI4ZWZmYzdmYjNmYjAwYjQzNWFkMDc0
15
+ YjZmYmY5ZDhhYTExMThiMWY3ZmVkNDZkM2RlNzA3ZDc3ZDUyODI=
data/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  # Tiedye
2
2
 
3
- TODO: Write a gem description
4
-
5
3
  ## Installation
6
4
 
7
5
  Add this line to your application's Gemfile:
@@ -18,7 +16,21 @@ Or install it yourself as:
18
16
 
19
17
  ## Usage
20
18
 
21
- TODO: Write usage instructions here
19
+ Tiedye.all_colors.count => 504
20
+
21
+ Tiedye.all_colors => ["alice_blue", "antique_white", "antique_white1", .....]
22
+
23
+ You can call Tiedye.any_named_color.
24
+
25
+ Tiedye.alice_blue => "#f0f8ff"
26
+
27
+ Tiedye.red => "#ff0000"
28
+
29
+ Tiedye.to_rgb("#ff0000") => [255, 0, 0]
30
+
31
+ Tiedye.to_hex([255, 0, 0]) => "#FF0000"
32
+
33
+ Tiedye.to_hex(255, 0, 0) => "#FF0000"
22
34
 
23
35
  ## Contributing
24
36
 
@@ -1,3 +1,3 @@
1
1
  module Tiedye
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
data/lib/tiedye.rb CHANGED
@@ -12,6 +12,12 @@ module Tiedye
12
12
  end
13
13
 
14
14
  def self.to_hex(r = "x", g = "x", b = "x")
15
+ if r.class == Array
16
+ temp = r
17
+ r = temp[0]
18
+ g = temp[1]
19
+ b = temp[2]
20
+ end
15
21
  return random_hex if invalid(r, g, b)
16
22
  r, g, b = rgb_float_to_int(r, g, b)
17
23
  return "#" + hex_digit(r) + hex_digit(g) + hex_digit(b)
@@ -22,9 +28,13 @@ module Tiedye
22
28
  return name
23
29
  end
24
30
 
31
+ def self.all_colors
32
+ return COLORS.keys
33
+ end
34
+
25
35
  private
26
36
  def self.hex_pair_to_rgb_digit(hex_pair)
27
- hexz = hex_pair.split("")
37
+ hexz = hex_pair.upcase.split("")
28
38
  number = HEX_DIGIT.key(hexz[0]) * 16
29
39
  number += HEX_DIGIT.key(hexz[1])
30
40
  return number
@@ -81,6 +91,517 @@ private
81
91
  10 => "A", 11 => "B", 12 => "C", 13 => "D", 14 => "E", 15 => "F",
82
92
  }
83
93
 
84
- COLORS = {"blue" => "#003DFF", "red" => "#FF0014"}
94
+ COLORS = {
95
+ "alice_blue" => "#f0f8ff",
96
+ "antique_white" => "#faebd7",
97
+ "antique_white" => "#ffefdb",
98
+ "antique_white2" => "#eedfcc",
99
+ "antique_white3" => "#cdc0b0",
100
+ "antique_white4" => "#8b8378",
101
+ "aquamarine" => "#7fffd4",
102
+ "aquamarine2" => "#76eec6",
103
+ "aquamarine4" => "#458b74",
104
+ "azure" => "#f0ffff",
105
+ "azure2" => "#e0eeee",
106
+ "azure3" => "#c1cdcd",
107
+ "azure4" => "#838b8b",
108
+ "beige" => "#f5f5dc",
109
+ "bisque" => "#ffe4c4",
110
+ "bisque2" => "#eed5b7",
111
+ "bisque3" => "#cdb79e",
112
+ "bisque4" => "#8b7d6b",
113
+ "black" => "#000000",
114
+ "blanched_almond" => "#ffebcd",
115
+ "blue" => "#0000ff",
116
+ "blue2" => "#0000ee",
117
+ "blue4" => "#00008b",
118
+ "blue_violet" => "#8a2be2",
119
+ "brown" => "#a52a2a",
120
+ "brown" => "#ff4040",
121
+ "brown2" => "#ee3b3b",
122
+ "brown3" => "#cd3333",
123
+ "brown4" => "#8b2323",
124
+ "burlywood" => "#deb887",
125
+ "burlywood" => "#ffd39b",
126
+ "burlywood2" => "#eec591",
127
+ "burlywood3" => "#cdaa7d",
128
+ "burlywood4" => "#8b7355",
129
+ "cadet_blue" => "#5f9ea0",
130
+ "cadet_blue" => "#98f5ff",
131
+ "cadet_blue2" => "#8ee5ee",
132
+ "cadet_blue3" => "#7ac5cd",
133
+ "cadet_blue4" => "#53868b",
134
+ "chartreuse" => "#7fff00",
135
+ "chartreuse2" => "#76ee00",
136
+ "chartreuse3" => "#66cd00",
137
+ "chartreuse4" => "#458b00",
138
+ "chocolate" => "#d2691e",
139
+ "chocolate" => "#ff7f24",
140
+ "chocolate2" => "#ee7621",
141
+ "chocolate3" => "#cd661d",
142
+ "coral" => "#ff7f50",
143
+ "coral" => "#ff7256",
144
+ "coral2" => "#ee6a50",
145
+ "coral3" => "#cd5b45",
146
+ "coral4" => "#8b3e2f",
147
+ "cornflower_blue" => "#6495ed",
148
+ "cornsilk" => "#fff8dc",
149
+ "cornsilk2" => "#eee8cd",
150
+ "cornsilk3" => "#cdc8b1",
151
+ "cornsilk4" => "#8b8878",
152
+ "cyan" => "#00ffff",
153
+ "cyan2" => "#00eeee",
154
+ "cyan3" => "#00cdcd",
155
+ "cyan4" => "#008b8b",
156
+ "dark_goldenrod" => "#b8860b",
157
+ "dark_goldenrod" => "#ffb90f",
158
+ "dark_goldenrod2" => "#eead0e",
159
+ "dark_goldenrod3" => "#cd950c",
160
+ "dark_goldenrod4" => "#8b6508",
161
+ "dark_green" => "#006400",
162
+ "dark_khaki" => "#bdb76b",
163
+ "dark_oliveGreen" => "#556b2f",
164
+ "dark_oliveGreen" => "#caff70",
165
+ "dark_oliveGreen2" => "#bcee68",
166
+ "dark_oliveGreen3" => "#a2cd5a",
167
+ "dark_oliveGreen4" => "#6e8b3d",
168
+ "dark_orange" => "#ff8c00",
169
+ "dark_orange" => "#ff7f00",
170
+ "dark_orange2" => "#ee7600",
171
+ "dark_orange3" => "#cd6600",
172
+ "dark_orange4" => "#8b4500",
173
+ "dark_orchid" => "#9932cc",
174
+ "dark_orchid" => "#bf3eff",
175
+ "dark_orchid2" => "#b23aee",
176
+ "dark_orchid3" => "#9a32cd",
177
+ "dark_orchid4" => "#68228b",
178
+ "dark_salmon" => "#e9967a",
179
+ "dark_seaGreen" => "#8fbc8f",
180
+ "dark_seaGreen" => "#c1ffc1",
181
+ "dark_seaGreen2" => "#b4eeb4",
182
+ "dark_seaGreen3" => "#9bcd9b",
183
+ "dark_seaGreen4" => "#698b69",
184
+ "dark_slateBlue" => "#483d8b",
185
+ "dark_slateGray" => "#2f4f4f",
186
+ "dark_slateGray" => "#97ffff",
187
+ "dark_slateGray2" => "#8deeee",
188
+ "dark_slateGray3" => "#79cdcd",
189
+ "dark_slateGray4" => "#528b8b",
190
+ "dark_turquoise" => "#00ced1",
191
+ "dark_violet" => "#9400d3",
192
+ "deep_pink" => "#ff1493",
193
+ "deep_pink2" => "#ee1289",
194
+ "deep_pink3" => "#cd1076",
195
+ "deep_pink4" => "#8b0a50",
196
+ "deep_skyBlue" => "#00bfff",
197
+ "deep_skyBlue2" => "#00b2ee",
198
+ "deep_skyBlue3" => "#009acd",
199
+ "deep_skyBlue4" => "#00688b",
200
+ "dim_gray" => "#696969",
201
+ "dodger_blue" => "#1e90ff",
202
+ "dodger_blue2" => "#1c86ee",
203
+ "dodger_blue3" => "#1874cd",
204
+ "dodger_blue4" => "#104e8b",
205
+ "firebrick" => "#b22222",
206
+ "firebrick" => "#ff3030",
207
+ "firebrick2" => "#ee2c2c",
208
+ "firebrick3" => "#cd2626",
209
+ "firebrick4" => "#8b1a1a",
210
+ "floral_white" => "#fffaf0",
211
+ "forest_green" => "#228b22",
212
+ "gainsboro" => "#dcdcdc",
213
+ "ghost_white" => "#f8f8ff",
214
+ "gold" => "#ffd700",
215
+ "gold2" => "#eec900",
216
+ "gold3" => "#cdad00",
217
+ "gold4" => "#8b7500",
218
+ "goldenrod" => "#daa520",
219
+ "goldenrod" => "#ffc125",
220
+ "goldenrod2" => "#eeb422",
221
+ "goldenrod3" => "#cd9b1d",
222
+ "goldenrod4" => "#8b6914",
223
+ "gray" => "#bebebe",
224
+ "gray" => "#030303",
225
+ "gray10" => "#1a1a1a",
226
+ "gray11" => "#1c1c1c",
227
+ "gray12" => "#1f1f1f",
228
+ "gray13" => "#212121",
229
+ "gray14" => "#242424",
230
+ "gray15" => "#262626",
231
+ "gray16" => "#292929",
232
+ "gray17" => "#2b2b2b",
233
+ "gray18" => "#2e2e2e",
234
+ "gray19" => "#303030",
235
+ "gray2" => "#050505",
236
+ "gray20" => "#333333",
237
+ "gray21" => "#363636",
238
+ "gray22" => "#383838",
239
+ "gray23" => "#3b3b3b",
240
+ "gray24" => "#3d3d3d",
241
+ "gray25" => "#404040",
242
+ "gray26" => "#424242",
243
+ "gray27" => "#454545",
244
+ "gray28" => "#474747",
245
+ "gray29" => "#4a4a4a",
246
+ "gray3" => "#080808",
247
+ "gray30" => "#4d4d4d",
248
+ "gray31" => "#4f4f4f",
249
+ "gray32" => "#525252",
250
+ "gray33" => "#545454",
251
+ "gray34" => "#575757",
252
+ "gray35" => "#595959",
253
+ "gray36" => "#5c5c5c",
254
+ "gray37" => "#5e5e5e",
255
+ "gray38" => "#616161",
256
+ "gray39" => "#636363",
257
+ "gray4" => "#0a0a0a",
258
+ "gray40" => "#666666",
259
+ "gray41" => "#696969",
260
+ "gray42" => "#6b6b6b",
261
+ "gray43" => "#6e6e6e",
262
+ "gray44" => "#707070",
263
+ "gray45" => "#737373",
264
+ "gray46" => "#757575",
265
+ "gray47" => "#787878",
266
+ "gray48" => "#7a7a7a",
267
+ "gray49" => "#7d7d7d",
268
+ "gray5" => "#0d0d0d",
269
+ "gray50" => "#7f7f7f",
270
+ "gray51" => "#828282",
271
+ "gray52" => "#858585",
272
+ "gray53" => "#878787",
273
+ "gray54" => "#8a8a8a",
274
+ "gray55" => "#8c8c8c",
275
+ "gray56" => "#8f8f8f",
276
+ "gray57" => "#919191",
277
+ "gray58" => "#949494",
278
+ "gray59" => "#969696",
279
+ "gray6" => "#0f0f0f",
280
+ "gray60" => "#999999",
281
+ "gray61" => "#9c9c9c",
282
+ "gray62" => "#9e9e9e",
283
+ "gray63" => "#a1a1a1",
284
+ "gray64" => "#a3a3a3",
285
+ "gray65" => "#a6a6a6",
286
+ "gray66" => "#a8a8a8",
287
+ "gray67" => "#ababab",
288
+ "gray68" => "#adadad",
289
+ "gray69" => "#b0b0b0",
290
+ "gray7" => "#121212",
291
+ "gray70" => "#b3b3b3",
292
+ "gray71" => "#b5b5b5",
293
+ "gray72" => "#b8b8b8",
294
+ "gray73" => "#bababa",
295
+ "gray74" => "#bdbdbd",
296
+ "gray75" => "#bfbfbf",
297
+ "gray76" => "#c2c2c2",
298
+ "gray77" => "#c4c4c4",
299
+ "gray78" => "#c7c7c7",
300
+ "gray79" => "#c9c9c9",
301
+ "gray8" => "#141414",
302
+ "gray80" => "#cccccc",
303
+ "gray81" => "#cfcfcf",
304
+ "gray82" => "#d1d1d1",
305
+ "gray83" => "#d4d4d4",
306
+ "gray84" => "#d6d6d6",
307
+ "gray85" => "#d9d9d9",
308
+ "gray86" => "#dbdbdb",
309
+ "gray87" => "#dedede",
310
+ "gray88" => "#e0e0e0",
311
+ "gray89" => "#e3e3e3",
312
+ "gray9" => "#171717",
313
+ "gray90" => "#e5e5e5",
314
+ "gray91" => "#e8e8e8",
315
+ "gray92" => "#ebebeb",
316
+ "gray93" => "#ededed",
317
+ "gray94" => "#f0f0f0",
318
+ "gray95" => "#f2f2f2",
319
+ "gray97" => "#f7f7f7",
320
+ "gray98" => "#fafafa",
321
+ "gray99" => "#fcfcfc",
322
+ "green" => "#00ff00",
323
+ "green2" => "#00ee00",
324
+ "green3" => "#00cd00",
325
+ "green4" => "#008b00",
326
+ "green_yellow" => "#adff2f",
327
+ "honeydew" => "#f0fff0",
328
+ "honeydew2" => "#e0eee0",
329
+ "honeydew3" => "#c1cdc1",
330
+ "honeydew4" => "#838b83",
331
+ "hot_pink" => "#ff69b4",
332
+ "hot_pink" => "#ff6eb4",
333
+ "hot_pink2" => "#ee6aa7",
334
+ "hot_pink3" => "#cd6090",
335
+ "hot_pink4" => "#8b3a62",
336
+ "indian_red" => "#cd5c5c",
337
+ "indian_red" => "#ff6a6a",
338
+ "indian_red2" => "#ee6363",
339
+ "indian_red3" => "#cd5555",
340
+ "indian_red4" => "#8b3a3a",
341
+ "ivory" => "#fffff0",
342
+ "ivory2" => "#eeeee0",
343
+ "ivory3" => "#cdcdc1",
344
+ "ivory4" => "#8b8b83",
345
+ "khaki" => "#f0e68c",
346
+ "khaki2" => "#fff68f",
347
+ "khaki3" => "#eee685",
348
+ "khaki4" => "#cdc673",
349
+ "khaki5" => "#8b864e",
350
+ "lavender" => "#e6e6fa",
351
+ "lavender_blush" => "#fff0f5",
352
+ "lavender_blush2" => "#eee0e5",
353
+ "lavender_blush3" => "#cdc1c5",
354
+ "lavender_blush4" => "#8b8386",
355
+ "lawn_green" => "#7cfc00",
356
+ "lemon_chiffon" => "#fffacd",
357
+ "lemon_chiffon2" => "#eee9bf",
358
+ "lemon_chiffon3" => "#cdc9a5",
359
+ "lemon_chiffon4" => "#8b8970",
360
+ "light" => "#eedd82",
361
+ "light_blue" => "#add8e6",
362
+ "light_blue2" => "#bfefff",
363
+ "light_blue3" => "#b2dfee",
364
+ "light_blue4" => "#9ac0cd",
365
+ "light_blue5" => "#68838b",
366
+ "light_coral" => "#f08080",
367
+ "light_cyan" => "#e0ffff",
368
+ "light_cyan2" => "#d1eeee",
369
+ "light_cyan3" => "#b4cdcd",
370
+ "light_cyan4" => "#7a8b8b",
371
+ "light_goldenrod" => "#ffec8b",
372
+ "light_goldenrod2" => "#eedc82",
373
+ "light_goldenrod3" => "#cdbe70",
374
+ "light_goldenrod4" => "#8b814c",
375
+ "light_goldenrodYellow" => "#fafad2",
376
+ "light_gray" => "#d3d3d3",
377
+ "light_pink" => "#ffb6c1",
378
+ "light_pink2" => "#ffaeb9",
379
+ "light_pink3" => "#eea2ad",
380
+ "light_pink4" => "#cd8c95",
381
+ "light_pink5" => "#8b5f65",
382
+ "light_salmon" => "#ffa07a",
383
+ "light_salmon2" => "#ee9572",
384
+ "light_salmon3" => "#cd8162",
385
+ "light_salmon4" => "#8b5742",
386
+ "light_seaGreen" => "#20b2aa",
387
+ "light_skyBlue" => "#87cefa",
388
+ "light_skyBlue2" => "#b0e2ff",
389
+ "light_skyBlue3" => "#a4d3ee",
390
+ "light_skyBlue4" => "#8db6cd",
391
+ "light_skyBlue5" => "#607b8b",
392
+ "light_slateBlue" => "#8470ff",
393
+ "light_slateGray" => "#778899",
394
+ "light_steelBlue" => "#b0c4de",
395
+ "light_steelBlue2" => "#cae1ff",
396
+ "light_steelBlue3" => "#bcd2ee",
397
+ "light_steelBlue4" => "#a2b5cd",
398
+ "light_steelBlue5" => "#6e7b8b",
399
+ "light_yellow" => "#ffffe0",
400
+ "light_yellow2" => "#eeeed1",
401
+ "light_yellow3" => "#cdcdb4",
402
+ "light_yellow4" => "#8b8b7a",
403
+ "lime_green" => "#32cd32",
404
+ "linen" => "#faf0e6",
405
+ "magenta" => "#ff00ff",
406
+ "magenta2" => "#ee00ee",
407
+ "magenta3" => "#cd00cd",
408
+ "magenta4" => "#8b008b",
409
+ "maroon" => "#b03060",
410
+ "maroon2" => "#ff34b3",
411
+ "maroon3" => "#ee30a7",
412
+ "maroon4" => "#cd2990",
413
+ "maroon5" => "#8b1c62",
414
+ "medium" => "#66cdaa",
415
+ "medium_aquamarine" => "#66cdaa",
416
+ "medium_blue" => "#0000cd",
417
+ "medium_orchid" => "#ba55d3",
418
+ "medium_orchid2" => "#e066ff",
419
+ "medium_orchid3" => "#d15fee",
420
+ "medium_orchid4" => "#b452cd",
421
+ "medium_orchid5" => "#7a378b",
422
+ "medium_purple" => "#9370db",
423
+ "medium_purple2" => "#ab82ff",
424
+ "medium_purple3" => "#9f79ee",
425
+ "medium_purple4" => "#8968cd",
426
+ "medium_purple5" => "#5d478b",
427
+ "medium_seaGreen" => "#3cb371",
428
+ "medium_slateBlue" => "#7b68ee",
429
+ "medium_springGreen" => "#00fa9a",
430
+ "medium_turquoise" => "#48d1cc",
431
+ "medium_violetRed" => "#c71585",
432
+ "midnight_blue" => "#191970",
433
+ "mint_cream" => "#f5fffa",
434
+ "misty_rose" => "#ffe4e1",
435
+ "misty_rose2" => "#eed5d2",
436
+ "misty_rose3" => "#cdb7b5",
437
+ "misty_rose4" => "#8b7d7b",
438
+ "moccasin" => "#ffe4b5",
439
+ "navajo_white" => "#ffdead",
440
+ "navajo_white2" => "#eecfa1",
441
+ "navajo_white3" => "#cdb38b",
442
+ "navajo_white4" => "#8b795e",
443
+ "navy_blue" => "#000080",
444
+ "old_lace" => "#fdf5e6",
445
+ "olive_drab" => "#6b8e23",
446
+ "olive_drab2" => "#c0ff3e",
447
+ "olive_drab3" => "#b3ee3a",
448
+ "olive_drab4" => "#698b22",
449
+ "orange" => "#ffa500",
450
+ "orange2" => "#ee9a00",
451
+ "orange3" => "#cd8500",
452
+ "orange4" => "#8b5a00",
453
+ "orange_red" => "#ff4500",
454
+ "orange_red2" => "#ee4000",
455
+ "orange_red3" => "#cd3700",
456
+ "orange_red4" => "#8b2500",
457
+ "orchid" => "#da70d6",
458
+ "orchid2" => "#ff83fa",
459
+ "orchid3" => "#ee7ae9",
460
+ "orchid4" => "#cd69c9",
461
+ "orchid5" => "#8b4789",
462
+ "pale" => "#db7093",
463
+ "pale_goldenrod" => "#eee8aa",
464
+ "pale_green" => "#98fb98",
465
+ "pale_green2" => "#9aff9a",
466
+ "pale_green3" => "#90ee90",
467
+ "pale_green4" => "#7ccd7c",
468
+ "pale_green5" => "#548b54",
469
+ "pale_turquoise" => "#afeeee",
470
+ "pale_turquoise2" => "#bbffff",
471
+ "pale_turquoise3" => "#aeeeee",
472
+ "pale_turquoise4" => "#96cdcd",
473
+ "pale_turquoise5" => "#668b8b",
474
+ "pale_violetRed" => "#db7093",
475
+ "pale_violetRed2" => "#ff82ab",
476
+ "pale_violetRed3" => "#ee799f",
477
+ "pale_violetRed4" => "#cd6889",
478
+ "pale_violetRed5" => "#8b475d",
479
+ "papaya_whip" => "#ffefd5",
480
+ "peach_puff" => "#ffdab9",
481
+ "peach_puff2" => "#eecbad",
482
+ "peach_puff3" => "#cdaf95",
483
+ "peach_puff4" => "#8b7765",
484
+ "pink" => "#ffc0cb",
485
+ "pink2" => "#ffb5c5",
486
+ "pink3" => "#eea9b8",
487
+ "pink4" => "#cd919e",
488
+ "pink5" => "#8b636c",
489
+ "plum" => "#dda0dd",
490
+ "plum2" => "#ffbbff",
491
+ "plum3" => "#eeaeee",
492
+ "plum4" => "#cd96cd",
493
+ "plum5" => "#8b668b",
494
+ "powder_blue" => "#b0e0e6",
495
+ "purple" => "#a020f0",
496
+ "purple2" => "#9b30ff",
497
+ "purple3" => "#912cee",
498
+ "purple4" => "#7d26cd",
499
+ "purple5" => "#551a8b",
500
+ "red" => "#ff0000",
501
+ "red2" => "#ee0000",
502
+ "red3" => "#cd0000",
503
+ "red4" => "#8b0000",
504
+ "rosy_brown" => "#bc8f8f",
505
+ "rosy_brown2" => "#ffc1c1",
506
+ "rosy_brown3" => "#eeb4b4",
507
+ "rosy_brown4" => "#cd9b9b",
508
+ "rosy_brown5" => "#8b6969",
509
+ "royal_blue" => "#4169e1",
510
+ "royal_blue2" => "#4876ff",
511
+ "royal_blue3" => "#436eee",
512
+ "royal_blue4" => "#3a5fcd",
513
+ "royal_blue5" => "#27408b",
514
+ "saddle_brown" => "#8b4513",
515
+ "salmon" => "#fa8072",
516
+ "salmon2" => "#ff8c69",
517
+ "salmon3" => "#ee8262",
518
+ "salmon4" => "#cd7054",
519
+ "salmon5" => "#8b4c39",
520
+ "sandy_brown" => "#f4a460",
521
+ "sea_green" => "#54ff9f",
522
+ "sea_green2" => "#4eee94",
523
+ "sea_green3" => "#43cd80",
524
+ "sea_green4" => "#2e8b57",
525
+ "seashell" => "#fff5ee",
526
+ "seashell2" => "#eee5de",
527
+ "seashell3" => "#cdc5bf",
528
+ "seashell4" => "#8b8682",
529
+ "sienna" => "#a0522d",
530
+ "sienna2" => "#ff8247",
531
+ "sienna3" => "#ee7942",
532
+ "sienna4" => "#cd6839",
533
+ "sienna5" => "#8b4726",
534
+ "sky_blue" => "#87ceeb",
535
+ "sky_blue2" => "#87ceff",
536
+ "sky_blue3" => "#7ec0ee",
537
+ "sky_blue4" => "#6ca6cd",
538
+ "sky_blue5" => "#4a708b",
539
+ "slate_blue" => "#6a5acd",
540
+ "slate_blue2" => "#836fff",
541
+ "slate_blue3" => "#7a67ee",
542
+ "slate_blue4" => "#6959cd",
543
+ "slate_blue5" => "#473c8b",
544
+ "slate_gray" => "#708090",
545
+ "slate_gray2" => "#c6e2ff",
546
+ "slate_gray4" => "#b9d3ee",
547
+ "slate_gray5" => "#9fb6cd",
548
+ "slate_gray6" => "#6c7b8b",
549
+ "snow" => "#fffafa",
550
+ "snow2" => "#eee9e9",
551
+ "snow3" => "#cdc9c9",
552
+ "snow4" => "#8b8989",
553
+ "spring_green" => "#00ff7f",
554
+ "spring_green2" => "#00ee76",
555
+ "spring_green3" => "#00cd66",
556
+ "spring_green4" => "#008b45",
557
+ "steel_blue" => "#4682b4",
558
+ "steel_blue2" => "#63b8ff",
559
+ "steel_blue3" => "#5cacee",
560
+ "steel_blue4" => "#4f94cd",
561
+ "steel_blue5" => "#36648b",
562
+ "tan" => "#d2b48c",
563
+ "tan2" => "#ffa54f",
564
+ "tan3" => "#ee9a49",
565
+ "tan4" => "#cd853f",
566
+ "tan5" => "#8b5a2b",
567
+ "thistle" => "#d8bfd8",
568
+ "thistle2" => "#ffe1ff",
569
+ "thistle3" => "#eed2ee",
570
+ "thistle4" => "#cdb5cd",
571
+ "thistle5" => "#8b7b8b",
572
+ "tomato" => "#ff6347",
573
+ "tomato2" => "#ee5c42",
574
+ "tomato3" => "#cd4f39",
575
+ "tomato4" => "#8b3626",
576
+ "turquoise" => "#40e0d0",
577
+ "turquoise2" => "#00f5ff",
578
+ "turquoise3" => "#00e5ee",
579
+ "turquoise4" => "#00c5cd",
580
+ "turquoise5" => "#00868b",
581
+ "violet" => "#ee82ee",
582
+ "violet_red" => "#d02090",
583
+ "violet_red2" => "#ff3e96",
584
+ "violet_red3" => "#ee3a8c",
585
+ "violet_red4" => "#cd3278",
586
+ "violet_red5" => "#8b2252",
587
+ "wheat" => "#f5deb3",
588
+ "wheat2" => "#ffe7ba",
589
+ "wheat3" => "#eed8ae",
590
+ "wheat4" => "#cdba96",
591
+ "wheat5" => "#8b7e66",
592
+ "white" => "#ffffff",
593
+ "white_smoke" => "#f5f5f5",
594
+ "yellow" => "#ffff00",
595
+ "yellow2" => "#eeee00",
596
+ "yellow3" => "#cdcd00",
597
+ "yellow4" => "#8b8b00",
598
+ "yellow_green" => "#9acd32"}
85
599
  end
86
600
 
601
+
602
+
603
+
604
+
605
+
606
+
607
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiedye
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Maddux
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-25 00:00:00.000000000 Z
11
+ date: 2014-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler