blue_shoes 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +5 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +29 -0
- data/LICENSE +20 -0
- data/README.md +74 -0
- data/Rakefile +17 -0
- data/blue_shoes.gemspec +20 -0
- data/lib/blue_shoes/app.rb +777 -0
- data/lib/blue_shoes/canvas.rb +4 -0
- data/lib/blue_shoes/color.rb +707 -0
- data/lib/blue_shoes/dialog.rb +4 -0
- data/lib/blue_shoes/download.rb +4 -0
- data/lib/blue_shoes/effect.rb +4 -0
- data/lib/blue_shoes/exception.rb +14 -0
- data/lib/blue_shoes/flow.rb +11 -0
- data/lib/blue_shoes/image.rb +28 -0
- data/lib/blue_shoes/link_url.rb +4 -0
- data/lib/blue_shoes/mask.rb +4 -0
- data/lib/blue_shoes/mouse.rb +4 -0
- data/lib/blue_shoes/native.rb +242 -0
- data/lib/blue_shoes/pattern.rb +72 -0
- data/lib/blue_shoes/search.rb +4 -0
- data/lib/blue_shoes/shape.rb +4 -0
- data/lib/blue_shoes/stack.rb +19 -0
- data/lib/blue_shoes/text.rb +48 -0
- data/lib/blue_shoes/text_block.rb +66 -0
- data/lib/blue_shoes/timer_base.rb +32 -0
- data/lib/blue_shoes/version.rb +4 -0
- data/lib/blue_shoes/video.rb +39 -0
- data/lib/blue_shoes/widget.rb +4 -0
- data/lib/blue_shoes/window.rb +4 -0
- data/lib/blue_shoes.rb +31 -0
- data/samples/hello.rb +9 -0
- data/samples/simple-anim-shapes.rb +23 -0
- data/static/blue_shoes.jpg +0 -0
- metadata +113 -0
@@ -0,0 +1,707 @@
|
|
1
|
+
module Shoes
|
2
|
+
class Color
|
3
|
+
end
|
4
|
+
|
5
|
+
# these colors cry out for some metaprogramming.
|
6
|
+
# right now, they just get vim-macro'd
|
7
|
+
|
8
|
+
def aliceblue
|
9
|
+
# rgb(240, 248, 255)
|
10
|
+
throw NotImplementedError
|
11
|
+
end
|
12
|
+
|
13
|
+
def antiquewhite
|
14
|
+
# rgb(250, 235, 215)
|
15
|
+
throw NotImplementedError
|
16
|
+
end
|
17
|
+
|
18
|
+
def aqua
|
19
|
+
# rgb(0, 255, 255)
|
20
|
+
throw NotImplementedError
|
21
|
+
end
|
22
|
+
|
23
|
+
def aquamarine
|
24
|
+
# rgb(127, 255, 212)
|
25
|
+
throw NotImplementedError
|
26
|
+
end
|
27
|
+
|
28
|
+
def azure
|
29
|
+
# rgb(240, 255, 255)
|
30
|
+
throw NotImplementedError
|
31
|
+
end
|
32
|
+
|
33
|
+
def beige
|
34
|
+
# rgb(245, 245, 220)
|
35
|
+
throw NotImplementedError
|
36
|
+
end
|
37
|
+
|
38
|
+
def bisque
|
39
|
+
# rgb(255, 228, 196)
|
40
|
+
throw NotImplementedError
|
41
|
+
end
|
42
|
+
|
43
|
+
def black
|
44
|
+
# rgb(0, 0, 0)
|
45
|
+
throw NotImplementedError
|
46
|
+
end
|
47
|
+
|
48
|
+
def blanchedalmond
|
49
|
+
# rgb(255, 235, 205)
|
50
|
+
throw NotImplementedError
|
51
|
+
end
|
52
|
+
|
53
|
+
def blue
|
54
|
+
# rgb(0, 0, 255)
|
55
|
+
throw NotImplementedError
|
56
|
+
end
|
57
|
+
|
58
|
+
def blueviolet
|
59
|
+
# rgb(138, 43, 226)
|
60
|
+
throw NotImplementedError
|
61
|
+
end
|
62
|
+
|
63
|
+
def brown
|
64
|
+
# rgb(165, 42, 42)
|
65
|
+
throw NotImplementedError
|
66
|
+
end
|
67
|
+
|
68
|
+
def burlywood
|
69
|
+
# rgb(222, 184, 135)
|
70
|
+
throw NotImplementedError
|
71
|
+
end
|
72
|
+
|
73
|
+
def cadetblue
|
74
|
+
# rgb(95, 158, 160)
|
75
|
+
throw NotImplementedError
|
76
|
+
end
|
77
|
+
|
78
|
+
def chartreuse
|
79
|
+
# rgb(127, 255, 0)
|
80
|
+
throw NotImplementedError
|
81
|
+
end
|
82
|
+
|
83
|
+
def chocolate
|
84
|
+
# rgb(210, 105, 30)
|
85
|
+
throw NotImplementedError
|
86
|
+
end
|
87
|
+
|
88
|
+
def coral
|
89
|
+
# rgb(255, 127, 80)
|
90
|
+
throw NotImplementedError
|
91
|
+
end
|
92
|
+
|
93
|
+
def cornflowerblue
|
94
|
+
# rgb(100, 149, 237)
|
95
|
+
throw NotImplementedError
|
96
|
+
end
|
97
|
+
|
98
|
+
def cornsilk
|
99
|
+
# rgb(255, 248, 220)
|
100
|
+
throw NotImplementedError
|
101
|
+
end
|
102
|
+
|
103
|
+
def crimson
|
104
|
+
# rgb(220, 20, 60)
|
105
|
+
throw NotImplementedError
|
106
|
+
end
|
107
|
+
|
108
|
+
def cyan
|
109
|
+
# rgb(0, 255, 255)
|
110
|
+
throw NotImplementedError
|
111
|
+
end
|
112
|
+
|
113
|
+
def darkblue
|
114
|
+
# rgb(0, 0, 139)
|
115
|
+
throw NotImplementedError
|
116
|
+
end
|
117
|
+
|
118
|
+
def darkcyan
|
119
|
+
# rgb(0, 139, 139)
|
120
|
+
throw NotImplementedError
|
121
|
+
end
|
122
|
+
|
123
|
+
def darkgoldenrod
|
124
|
+
# rgb(184, 134, 11)
|
125
|
+
throw NotImplementedError
|
126
|
+
end
|
127
|
+
|
128
|
+
def darkgray
|
129
|
+
# rgb(169, 169, 169)
|
130
|
+
throw NotImplementedError
|
131
|
+
end
|
132
|
+
|
133
|
+
def darkgreen
|
134
|
+
# rgb(0, 100, 0)
|
135
|
+
throw NotImplementedError
|
136
|
+
end
|
137
|
+
|
138
|
+
def darkkhaki
|
139
|
+
# rgb(189, 183, 107)
|
140
|
+
throw NotImplementedError
|
141
|
+
end
|
142
|
+
|
143
|
+
def darkmagenta
|
144
|
+
# rgb(139, 0, 139)
|
145
|
+
throw NotImplementedError
|
146
|
+
end
|
147
|
+
|
148
|
+
def darkolivegreen
|
149
|
+
# rgb(85, 107, 47)
|
150
|
+
throw NotImplementedError
|
151
|
+
end
|
152
|
+
|
153
|
+
def darkorange
|
154
|
+
# rgb(255, 140, 0)
|
155
|
+
throw NotImplementedError
|
156
|
+
end
|
157
|
+
|
158
|
+
def darkorchid
|
159
|
+
# rgb(153, 50, 204)
|
160
|
+
throw NotImplementedError
|
161
|
+
end
|
162
|
+
|
163
|
+
def darkred
|
164
|
+
# rgb(139, 0, 0)
|
165
|
+
throw NotImplementedError
|
166
|
+
end
|
167
|
+
|
168
|
+
def darksalmon
|
169
|
+
# rgb(233, 150, 122)
|
170
|
+
throw NotImplementedError
|
171
|
+
end
|
172
|
+
|
173
|
+
def darkseagreen
|
174
|
+
# rgb(143, 188, 143)
|
175
|
+
throw NotImplementedError
|
176
|
+
end
|
177
|
+
|
178
|
+
def darkslateblue
|
179
|
+
# rgb(72, 61, 139)
|
180
|
+
throw NotImplementedError
|
181
|
+
end
|
182
|
+
|
183
|
+
def darkslategray
|
184
|
+
# rgb(47, 79, 79)
|
185
|
+
throw NotImplementedError
|
186
|
+
end
|
187
|
+
|
188
|
+
def darkturquoise
|
189
|
+
# rgb(0, 206, 209)
|
190
|
+
throw NotImplementedError
|
191
|
+
end
|
192
|
+
|
193
|
+
def darkviolet
|
194
|
+
# rgb(148, 0, 211)
|
195
|
+
throw NotImplementedError
|
196
|
+
end
|
197
|
+
|
198
|
+
def deeppink
|
199
|
+
# rgb(255, 20, 147)
|
200
|
+
throw NotImplementedError
|
201
|
+
end
|
202
|
+
|
203
|
+
def deepskyblue
|
204
|
+
# rgb(0, 191, 255)
|
205
|
+
throw NotImplementedError
|
206
|
+
end
|
207
|
+
|
208
|
+
def dimgray
|
209
|
+
# rgb(105, 105, 105)
|
210
|
+
throw NotImplementedError
|
211
|
+
end
|
212
|
+
|
213
|
+
def dodgerblue
|
214
|
+
# rgb(30, 144, 255)
|
215
|
+
throw NotImplementedError
|
216
|
+
end
|
217
|
+
|
218
|
+
def firebrick
|
219
|
+
# rgb(178, 34, 34)
|
220
|
+
throw NotImplementedError
|
221
|
+
end
|
222
|
+
|
223
|
+
def floralwhite
|
224
|
+
# rgb(255, 250, 240)
|
225
|
+
throw NotImplementedError
|
226
|
+
end
|
227
|
+
|
228
|
+
def forestgreen
|
229
|
+
# rgb(34, 139, 34)
|
230
|
+
throw NotImplementedError
|
231
|
+
end
|
232
|
+
|
233
|
+
def fuchsia
|
234
|
+
# rgb(255, 0, 255)
|
235
|
+
throw NotImplementedError
|
236
|
+
end
|
237
|
+
|
238
|
+
def gainsboro
|
239
|
+
# rgb(220, 220, 220)
|
240
|
+
throw NotImplementedError
|
241
|
+
end
|
242
|
+
|
243
|
+
def ghostwhite
|
244
|
+
# rgb(248, 248, 255)
|
245
|
+
throw NotImplementedError
|
246
|
+
end
|
247
|
+
|
248
|
+
def gold
|
249
|
+
# rgb(255, 215, 0)
|
250
|
+
throw NotImplementedError
|
251
|
+
end
|
252
|
+
|
253
|
+
def goldenrod
|
254
|
+
# rgb(218, 165, 32)
|
255
|
+
throw NotImplementedError
|
256
|
+
end
|
257
|
+
|
258
|
+
def gray
|
259
|
+
# rgb(128, 128, 128)
|
260
|
+
throw NotImplementedError
|
261
|
+
end
|
262
|
+
|
263
|
+
def green
|
264
|
+
# rgb(0, 128, 0)
|
265
|
+
throw NotImplementedError
|
266
|
+
end
|
267
|
+
|
268
|
+
def greenyellow
|
269
|
+
# rgb(173, 255, 47)
|
270
|
+
throw NotImplementedError
|
271
|
+
end
|
272
|
+
|
273
|
+
def honeydew
|
274
|
+
# rgb(240, 255, 240)
|
275
|
+
throw NotImplementedError
|
276
|
+
end
|
277
|
+
|
278
|
+
def hotpink
|
279
|
+
# rgb(255, 105, 180)
|
280
|
+
throw NotImplementedError
|
281
|
+
end
|
282
|
+
|
283
|
+
def indianred
|
284
|
+
# rgb(205, 92, 92)
|
285
|
+
throw NotImplementedError
|
286
|
+
end
|
287
|
+
|
288
|
+
def indigo
|
289
|
+
# rgb(75, 0, 130)
|
290
|
+
throw NotImplementedError
|
291
|
+
end
|
292
|
+
|
293
|
+
def ivory
|
294
|
+
# rgb(255, 255, 240)
|
295
|
+
throw NotImplementedError
|
296
|
+
end
|
297
|
+
|
298
|
+
def khaki
|
299
|
+
# rgb(240, 230, 140)
|
300
|
+
throw NotImplementedError
|
301
|
+
end
|
302
|
+
|
303
|
+
def lavender
|
304
|
+
# rgb(230, 230, 250)
|
305
|
+
throw NotImplementedError
|
306
|
+
end
|
307
|
+
|
308
|
+
def lavenderblush
|
309
|
+
# rgb(255, 240, 245)
|
310
|
+
throw NotImplementedError
|
311
|
+
end
|
312
|
+
|
313
|
+
def lawngreen
|
314
|
+
# rgb(124, 252, 0)
|
315
|
+
throw NotImplementedError
|
316
|
+
end
|
317
|
+
|
318
|
+
def lemonchiffon
|
319
|
+
# rgb(255, 250, 205)
|
320
|
+
throw NotImplementedError
|
321
|
+
end
|
322
|
+
|
323
|
+
def lightblue
|
324
|
+
# rgb(173, 216, 230)
|
325
|
+
throw NotImplementedError
|
326
|
+
end
|
327
|
+
|
328
|
+
def lightcoral
|
329
|
+
# rgb(240, 128, 128)
|
330
|
+
throw NotImplementedError
|
331
|
+
end
|
332
|
+
|
333
|
+
def lightcyan
|
334
|
+
# rgb(224, 255, 255)
|
335
|
+
throw NotImplementedError
|
336
|
+
end
|
337
|
+
|
338
|
+
def lightgoldenrodyellow
|
339
|
+
# rgb(250, 250, 210)
|
340
|
+
throw NotImplementedError
|
341
|
+
end
|
342
|
+
|
343
|
+
def lightgreen
|
344
|
+
# rgb(144, 238, 144)
|
345
|
+
throw NotImplementedError
|
346
|
+
end
|
347
|
+
|
348
|
+
def lightgrey
|
349
|
+
# rgb(211, 211, 211)
|
350
|
+
throw NotImplementedError
|
351
|
+
end
|
352
|
+
|
353
|
+
def lightpink
|
354
|
+
# rgb(255, 182, 193)
|
355
|
+
throw NotImplementedError
|
356
|
+
end
|
357
|
+
|
358
|
+
def lightsalmon
|
359
|
+
# rgb(255, 160, 122)
|
360
|
+
throw NotImplementedError
|
361
|
+
end
|
362
|
+
|
363
|
+
def lightseagreen
|
364
|
+
# rgb(32, 178, 170)
|
365
|
+
throw NotImplementedError
|
366
|
+
end
|
367
|
+
|
368
|
+
def lightskyblue
|
369
|
+
# rgb(135, 206, 250)
|
370
|
+
throw NotImplementedError
|
371
|
+
end
|
372
|
+
|
373
|
+
def lightslategray
|
374
|
+
# rgb(119, 136, 153)
|
375
|
+
throw NotImplementedError
|
376
|
+
end
|
377
|
+
|
378
|
+
def lightsteelblue
|
379
|
+
# rgb(176, 196, 222)
|
380
|
+
throw NotImplementedError
|
381
|
+
end
|
382
|
+
|
383
|
+
def lightyellow
|
384
|
+
# rgb(255, 255, 224)
|
385
|
+
throw NotImplementedError
|
386
|
+
end
|
387
|
+
|
388
|
+
def lime
|
389
|
+
# rgb(0, 255, 0)
|
390
|
+
throw NotImplementedError
|
391
|
+
end
|
392
|
+
|
393
|
+
def limegreen
|
394
|
+
# rgb(50, 205, 50)
|
395
|
+
throw NotImplementedError
|
396
|
+
end
|
397
|
+
|
398
|
+
def linen
|
399
|
+
# rgb(250, 240, 230)
|
400
|
+
throw NotImplementedError
|
401
|
+
end
|
402
|
+
|
403
|
+
def magenta
|
404
|
+
# rgb(255, 0, 255)
|
405
|
+
throw NotImplementedError
|
406
|
+
end
|
407
|
+
|
408
|
+
def maroon
|
409
|
+
# rgb(128, 0, 0)
|
410
|
+
throw NotImplementedError
|
411
|
+
end
|
412
|
+
|
413
|
+
def mediumaquamarine
|
414
|
+
# rgb(102, 205, 170)
|
415
|
+
throw NotImplementedError
|
416
|
+
end
|
417
|
+
|
418
|
+
def mediumblue
|
419
|
+
# rgb(0, 0, 205)
|
420
|
+
throw NotImplementedError
|
421
|
+
end
|
422
|
+
|
423
|
+
def mediumorchid
|
424
|
+
# rgb(186, 85, 211)
|
425
|
+
throw NotImplementedError
|
426
|
+
end
|
427
|
+
|
428
|
+
def mediumpurple
|
429
|
+
# rgb(147, 112, 219)
|
430
|
+
throw NotImplementedError
|
431
|
+
end
|
432
|
+
|
433
|
+
def mediumseagreen
|
434
|
+
# rgb(60, 179, 113)
|
435
|
+
throw NotImplementedError
|
436
|
+
end
|
437
|
+
|
438
|
+
def mediumslateblue
|
439
|
+
# rgb(123, 104, 238)
|
440
|
+
throw NotImplementedError
|
441
|
+
end
|
442
|
+
|
443
|
+
def mediumspringgreen
|
444
|
+
# rgb(0, 250, 154)
|
445
|
+
throw NotImplementedError
|
446
|
+
end
|
447
|
+
|
448
|
+
def mediumturquoise
|
449
|
+
# rgb(72, 209, 204)
|
450
|
+
throw NotImplementedError
|
451
|
+
end
|
452
|
+
|
453
|
+
def mediumvioletred
|
454
|
+
# rgb(199, 21, 133)
|
455
|
+
throw NotImplementedError
|
456
|
+
end
|
457
|
+
|
458
|
+
def midnightblue
|
459
|
+
# rgb(25, 25, 112)
|
460
|
+
throw NotImplementedError
|
461
|
+
end
|
462
|
+
|
463
|
+
def mintcream
|
464
|
+
# rgb(245, 255, 250)
|
465
|
+
throw NotImplementedError
|
466
|
+
end
|
467
|
+
|
468
|
+
def mistyrose
|
469
|
+
# rgb(255, 228, 225)
|
470
|
+
throw NotImplementedError
|
471
|
+
end
|
472
|
+
|
473
|
+
def moccasin
|
474
|
+
# rgb(255, 228, 181)
|
475
|
+
throw NotImplementedError
|
476
|
+
end
|
477
|
+
|
478
|
+
def navajowhite
|
479
|
+
# rgb(255, 222, 173)
|
480
|
+
throw NotImplementedError
|
481
|
+
end
|
482
|
+
|
483
|
+
def navy
|
484
|
+
# rgb(0, 0, 128)
|
485
|
+
throw NotImplementedError
|
486
|
+
end
|
487
|
+
|
488
|
+
def oldlace
|
489
|
+
# rgb(253, 245, 230)
|
490
|
+
throw NotImplementedError
|
491
|
+
end
|
492
|
+
|
493
|
+
def olive
|
494
|
+
# rgb(128, 128, 0)
|
495
|
+
throw NotImplementedError
|
496
|
+
end
|
497
|
+
|
498
|
+
def olivedrab
|
499
|
+
# rgb(107, 142, 35)
|
500
|
+
throw NotImplementedError
|
501
|
+
end
|
502
|
+
|
503
|
+
def orange
|
504
|
+
# rgb(255, 165, 0)
|
505
|
+
throw NotImplementedError
|
506
|
+
end
|
507
|
+
|
508
|
+
def orangered
|
509
|
+
# rgb(255, 69, 0)
|
510
|
+
throw NotImplementedError
|
511
|
+
end
|
512
|
+
|
513
|
+
def orchid
|
514
|
+
# rgb(218, 112, 214)
|
515
|
+
throw NotImplementedError
|
516
|
+
end
|
517
|
+
|
518
|
+
def palegoldenrod
|
519
|
+
# rgb(238, 232, 170)
|
520
|
+
throw NotImplementedError
|
521
|
+
end
|
522
|
+
|
523
|
+
def palegreen
|
524
|
+
# rgb(152, 251, 152)
|
525
|
+
throw NotImplementedError
|
526
|
+
end
|
527
|
+
|
528
|
+
def paleturquoise
|
529
|
+
# rgb(175, 238, 238)
|
530
|
+
throw NotImplementedError
|
531
|
+
end
|
532
|
+
|
533
|
+
def palevioletred
|
534
|
+
# rgb(219, 112, 147)
|
535
|
+
throw NotImplementedError
|
536
|
+
end
|
537
|
+
|
538
|
+
def papayawhip
|
539
|
+
# rgb(255, 239, 213)
|
540
|
+
throw NotImplementedError
|
541
|
+
end
|
542
|
+
|
543
|
+
def peachpuff
|
544
|
+
# rgb(255, 218, 185)
|
545
|
+
throw NotImplementedError
|
546
|
+
end
|
547
|
+
|
548
|
+
def peru
|
549
|
+
# rgb(205, 133, 63)
|
550
|
+
throw NotImplementedError
|
551
|
+
end
|
552
|
+
|
553
|
+
def pink
|
554
|
+
# rgb(255, 192, 203)
|
555
|
+
throw NotImplementedError
|
556
|
+
end
|
557
|
+
|
558
|
+
def plum
|
559
|
+
# rgb(221, 160, 221)
|
560
|
+
throw NotImplementedError
|
561
|
+
end
|
562
|
+
|
563
|
+
def powderblue
|
564
|
+
# rgb(176, 224, 230)
|
565
|
+
throw NotImplementedError
|
566
|
+
end
|
567
|
+
|
568
|
+
def purple
|
569
|
+
# rgb(128, 0, 128)
|
570
|
+
throw NotImplementedError
|
571
|
+
end
|
572
|
+
|
573
|
+
def red
|
574
|
+
# rgb(255, 0, 0)
|
575
|
+
throw NotImplementedError
|
576
|
+
end
|
577
|
+
|
578
|
+
def rosybrown
|
579
|
+
# rgb(188, 143, 143)
|
580
|
+
throw NotImplementedError
|
581
|
+
end
|
582
|
+
|
583
|
+
def royalblue
|
584
|
+
# rgb(65, 105, 225)
|
585
|
+
throw NotImplementedError
|
586
|
+
end
|
587
|
+
|
588
|
+
def saddlebrown
|
589
|
+
# rgb(139, 69, 19)
|
590
|
+
throw NotImplementedError
|
591
|
+
end
|
592
|
+
|
593
|
+
def salmon
|
594
|
+
# rgb(250, 128, 114)
|
595
|
+
throw NotImplementedError
|
596
|
+
end
|
597
|
+
|
598
|
+
def sandybrown
|
599
|
+
# rgb(244, 164, 96)
|
600
|
+
throw NotImplementedError
|
601
|
+
end
|
602
|
+
|
603
|
+
def seagreen
|
604
|
+
# rgb(46, 139, 87)
|
605
|
+
throw NotImplementedError
|
606
|
+
end
|
607
|
+
|
608
|
+
def seashell
|
609
|
+
# rgb(255, 245, 238)
|
610
|
+
throw NotImplementedError
|
611
|
+
end
|
612
|
+
|
613
|
+
def sienna
|
614
|
+
# rgb(160, 82, 45)
|
615
|
+
throw NotImplementedError
|
616
|
+
end
|
617
|
+
|
618
|
+
def silver
|
619
|
+
# rgb(192, 192, 192)
|
620
|
+
throw NotImplementedError
|
621
|
+
end
|
622
|
+
|
623
|
+
def skyblue
|
624
|
+
# rgb(135, 206, 235)
|
625
|
+
throw NotImplementedError
|
626
|
+
end
|
627
|
+
|
628
|
+
def slateblue
|
629
|
+
# rgb(106, 90, 205)
|
630
|
+
throw NotImplementedError
|
631
|
+
end
|
632
|
+
|
633
|
+
def slategray
|
634
|
+
# rgb(112, 128, 144)
|
635
|
+
throw NotImplementedError
|
636
|
+
end
|
637
|
+
|
638
|
+
def snow
|
639
|
+
# rgb(255, 250, 250)
|
640
|
+
throw NotImplementedError
|
641
|
+
end
|
642
|
+
|
643
|
+
def springgreen
|
644
|
+
# rgb(0, 255, 127)
|
645
|
+
throw NotImplementedError
|
646
|
+
end
|
647
|
+
|
648
|
+
def steelblue
|
649
|
+
# rgb(70, 130, 180)
|
650
|
+
throw NotImplementedError
|
651
|
+
end
|
652
|
+
|
653
|
+
def tan
|
654
|
+
# rgb(210, 180, 140)
|
655
|
+
throw NotImplementedError
|
656
|
+
end
|
657
|
+
|
658
|
+
def teal
|
659
|
+
# rgb(0, 128, 128)
|
660
|
+
throw NotImplementedError
|
661
|
+
end
|
662
|
+
|
663
|
+
def thistle
|
664
|
+
# rgb(216, 191, 216)
|
665
|
+
throw NotImplementedError
|
666
|
+
end
|
667
|
+
|
668
|
+
def tomato
|
669
|
+
# rgb(255, 99, 71)
|
670
|
+
throw NotImplementedError
|
671
|
+
end
|
672
|
+
|
673
|
+
def turquoise
|
674
|
+
# rgb(64, 224, 208)
|
675
|
+
throw NotImplementedError
|
676
|
+
end
|
677
|
+
|
678
|
+
def violet
|
679
|
+
# rgb(238, 130, 238)
|
680
|
+
throw NotImplementedError
|
681
|
+
end
|
682
|
+
|
683
|
+
def wheat
|
684
|
+
# rgb(245, 222, 179)
|
685
|
+
throw NotImplementedError
|
686
|
+
end
|
687
|
+
|
688
|
+
def white
|
689
|
+
# rgb(255, 255, 255)
|
690
|
+
throw NotImplementedError
|
691
|
+
end
|
692
|
+
|
693
|
+
def whitesmoke
|
694
|
+
# rgb(245, 245, 245)
|
695
|
+
throw NotImplementedError
|
696
|
+
end
|
697
|
+
|
698
|
+
def yellow
|
699
|
+
# rgb(255, 255, 0)
|
700
|
+
throw NotImplementedError
|
701
|
+
end
|
702
|
+
|
703
|
+
def yellowgreen
|
704
|
+
# rgb(154, 205, 50)
|
705
|
+
throw NotImplementedError
|
706
|
+
end
|
707
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
class StandardError < Exception; end
|
2
|
+
|
3
|
+
module Shoes
|
4
|
+
class ImageError < StandardError; end
|
5
|
+
|
6
|
+
class InvalidModeError < StandardError; end
|
7
|
+
|
8
|
+
class NotImplementedError < StandardError; end
|
9
|
+
|
10
|
+
class SettingUp < StandardError; end
|
11
|
+
|
12
|
+
class VideoError < StandardError; end
|
13
|
+
end
|
14
|
+
|