Module: Shoes

Defined in:
lib/blue_shoes.rb,
lib/blue_shoes/app.rb,
lib/blue_shoes/flow.rb,
lib/blue_shoes/mask.rb,
lib/blue_shoes/text.rb,
lib/blue_shoes/color.rb,
lib/blue_shoes/image.rb,
lib/blue_shoes/mouse.rb,
lib/blue_shoes/shape.rb,
lib/blue_shoes/stack.rb,
lib/blue_shoes/video.rb,
lib/blue_shoes/canvas.rb,
lib/blue_shoes/dialog.rb,
lib/blue_shoes/effect.rb,
lib/blue_shoes/native.rb,
lib/blue_shoes/search.rb,
lib/blue_shoes/widget.rb,
lib/blue_shoes/window.rb,
lib/blue_shoes/pattern.rb,
lib/blue_shoes/download.rb,
lib/blue_shoes/link_url.rb,
lib/blue_shoes/exception.rb,
lib/blue_shoes/text_block.rb,
lib/blue_shoes/timer_base.rb

Defined Under Namespace

Classes: Animation, App, Background, Banner, Border, Button, Canvas, Caption, Check, Code, Color, Del, Dialog, Download, EditBox, EditLine, Effect, Em, Every, Flow, Image, ImageError, Ins, Inscription, InvalidModeError, Link, LinkHover, LinkUrl, ListBox, Mask, Mouse, Native, NotImplementedError, Para, Pattern, Progress, Radio, Search, SettingUp, Shape, Slider, Span, Stack, Strong, Sub, Subtitle, Sup, Tagline, Text, TextBlock, Timer, TimerBase, Title, Video, VideoError, Widget, Window

Constant Summary collapse

RELEASE_NAME =

this is the code name for this release of Shoes.

"Suede"
RELEASE_ID =

this is the ID, I haven’t decided how to generate them yet.

1337
REVISION =

this is the specific git revision. Haven’t decided if I’m keeping it.

"e3dce7d0b5c2a45f67b2a0d453aa8c31ecd4422e"
FONTS =

a list of fonts

[]
APPS =

all the currently running apps, as Shoes::App objects

[]

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.app(opts = {}, &blk) ⇒ Object



53
54
55
# File 'lib/blue_shoes.rb', line 53

def self.app opts = {}, &blk
  Shoes::App.new opts, blk
end

Instance Method Details

#aliceblueObject

these colors cry out for some metaprogramming. right now, they just get vim-macro’d



8
9
10
11
# File 'lib/blue_shoes/color.rb', line 8

def aliceblue
  # rgb(240, 248, 255)
  throw NotImplementedError
end

#antiquewhiteObject



13
14
15
16
# File 'lib/blue_shoes/color.rb', line 13

def antiquewhite
  # rgb(250, 235, 215)
  throw NotImplementedError
end

#aquaObject



18
19
20
21
# File 'lib/blue_shoes/color.rb', line 18

def aqua
  # rgb(0, 255, 255)
  throw NotImplementedError
end

#aquamarineObject



23
24
25
26
# File 'lib/blue_shoes/color.rb', line 23

def aquamarine
  # rgb(127, 255, 212)
  throw NotImplementedError
end

#azureObject



28
29
30
31
# File 'lib/blue_shoes/color.rb', line 28

def azure
  # rgb(240, 255, 255)
  throw NotImplementedError
end

#beigeObject



33
34
35
36
# File 'lib/blue_shoes/color.rb', line 33

def beige
  # rgb(245, 245, 220)
  throw NotImplementedError
end

#bisqueObject



38
39
40
41
# File 'lib/blue_shoes/color.rb', line 38

def bisque
  # rgb(255, 228, 196)
  throw NotImplementedError
end

#blackObject



43
44
45
46
# File 'lib/blue_shoes/color.rb', line 43

def black
  # rgb(0, 0, 0)
  throw NotImplementedError
end

#blanchedalmondObject



48
49
50
51
# File 'lib/blue_shoes/color.rb', line 48

def blanchedalmond
  # rgb(255, 235, 205)
  throw NotImplementedError
end

#blueObject



53
54
55
56
# File 'lib/blue_shoes/color.rb', line 53

def blue
  # rgb(0, 0, 255)
  throw NotImplementedError
end

#bluevioletObject



58
59
60
61
# File 'lib/blue_shoes/color.rb', line 58

def blueviolet
  # rgb(138, 43, 226)
  throw NotImplementedError
end

#brownObject



63
64
65
66
# File 'lib/blue_shoes/color.rb', line 63

def brown
  # rgb(165, 42, 42)
  throw NotImplementedError
end

#burlywoodObject



68
69
70
71
# File 'lib/blue_shoes/color.rb', line 68

def burlywood
  # rgb(222, 184, 135)
  throw NotImplementedError
end

#cadetblueObject



73
74
75
76
# File 'lib/blue_shoes/color.rb', line 73

def cadetblue
  # rgb(95, 158, 160)
  throw NotImplementedError
end

#chartreuseObject



78
79
80
81
# File 'lib/blue_shoes/color.rb', line 78

def chartreuse
  # rgb(127, 255, 0)
  throw NotImplementedError
end

#chocolateObject



83
84
85
86
# File 'lib/blue_shoes/color.rb', line 83

def chocolate
  # rgb(210, 105, 30)
  throw NotImplementedError
end

#coralObject



88
89
90
91
# File 'lib/blue_shoes/color.rb', line 88

def coral
  # rgb(255, 127, 80)
  throw NotImplementedError
end

#cornflowerblueObject



93
94
95
96
# File 'lib/blue_shoes/color.rb', line 93

def cornflowerblue
  # rgb(100, 149, 237)
  throw NotImplementedError
end

#cornsilkObject



98
99
100
101
# File 'lib/blue_shoes/color.rb', line 98

def cornsilk
  # rgb(255, 248, 220)
  throw NotImplementedError
end

#crimsonObject



103
104
105
106
# File 'lib/blue_shoes/color.rb', line 103

def crimson
  # rgb(220, 20, 60)
  throw NotImplementedError
end

#cyanObject



108
109
110
111
# File 'lib/blue_shoes/color.rb', line 108

def cyan
  # rgb(0, 255, 255)
  throw NotImplementedError
end

#darkblueObject



113
114
115
116
# File 'lib/blue_shoes/color.rb', line 113

def darkblue
  # rgb(0, 0, 139)
  throw NotImplementedError
end

#darkcyanObject



118
119
120
121
# File 'lib/blue_shoes/color.rb', line 118

def darkcyan
  # rgb(0, 139, 139)
  throw NotImplementedError
end

#darkgoldenrodObject



123
124
125
126
# File 'lib/blue_shoes/color.rb', line 123

def darkgoldenrod
  # rgb(184, 134, 11)
  throw NotImplementedError
end

#darkgrayObject



128
129
130
131
# File 'lib/blue_shoes/color.rb', line 128

def darkgray
  # rgb(169, 169, 169)
  throw NotImplementedError
end

#darkgreenObject



133
134
135
136
# File 'lib/blue_shoes/color.rb', line 133

def darkgreen
  # rgb(0, 100, 0)
  throw NotImplementedError
end

#darkkhakiObject



138
139
140
141
# File 'lib/blue_shoes/color.rb', line 138

def darkkhaki
  # rgb(189, 183, 107)
  throw NotImplementedError
end

#darkmagentaObject



143
144
145
146
# File 'lib/blue_shoes/color.rb', line 143

def darkmagenta
  # rgb(139, 0, 139)
  throw NotImplementedError
end

#darkolivegreenObject



148
149
150
151
# File 'lib/blue_shoes/color.rb', line 148

def darkolivegreen
  # rgb(85, 107, 47)
  throw NotImplementedError
end

#darkorangeObject



153
154
155
156
# File 'lib/blue_shoes/color.rb', line 153

def darkorange
  # rgb(255, 140, 0)
  throw NotImplementedError
end

#darkorchidObject



158
159
160
161
# File 'lib/blue_shoes/color.rb', line 158

def darkorchid
  # rgb(153, 50, 204)
  throw NotImplementedError
end

#darkredObject



163
164
165
166
# File 'lib/blue_shoes/color.rb', line 163

def darkred
  # rgb(139, 0, 0)
  throw NotImplementedError
end

#darksalmonObject



168
169
170
171
# File 'lib/blue_shoes/color.rb', line 168

def darksalmon
  # rgb(233, 150, 122)
  throw NotImplementedError
end

#darkseagreenObject



173
174
175
176
# File 'lib/blue_shoes/color.rb', line 173

def darkseagreen
  # rgb(143, 188, 143)
  throw NotImplementedError
end

#darkslateblueObject



178
179
180
181
# File 'lib/blue_shoes/color.rb', line 178

def darkslateblue
  # rgb(72, 61, 139)
  throw NotImplementedError
end

#darkslategrayObject



183
184
185
186
# File 'lib/blue_shoes/color.rb', line 183

def darkslategray
  # rgb(47, 79, 79)
  throw NotImplementedError
end

#darkturquoiseObject



188
189
190
191
# File 'lib/blue_shoes/color.rb', line 188

def darkturquoise
  # rgb(0, 206, 209)
  throw NotImplementedError
end

#darkvioletObject



193
194
195
196
# File 'lib/blue_shoes/color.rb', line 193

def darkviolet
  # rgb(148, 0, 211)
  throw NotImplementedError
end

#deeppinkObject



198
199
200
201
# File 'lib/blue_shoes/color.rb', line 198

def deeppink
  # rgb(255, 20, 147)
  throw NotImplementedError
end

#deepskyblueObject



203
204
205
206
# File 'lib/blue_shoes/color.rb', line 203

def deepskyblue
  # rgb(0, 191, 255)
  throw NotImplementedError
end

#dimgrayObject



208
209
210
211
# File 'lib/blue_shoes/color.rb', line 208

def dimgray
  # rgb(105, 105, 105)
  throw NotImplementedError
end

#dodgerblueObject



213
214
215
216
# File 'lib/blue_shoes/color.rb', line 213

def dodgerblue
  # rgb(30, 144, 255)
  throw NotImplementedError
end

#firebrickObject



218
219
220
221
# File 'lib/blue_shoes/color.rb', line 218

def firebrick
  # rgb(178, 34, 34)
  throw NotImplementedError
end

#floralwhiteObject



223
224
225
226
# File 'lib/blue_shoes/color.rb', line 223

def floralwhite
  # rgb(255, 250, 240)
  throw NotImplementedError
end

#forestgreenObject



228
229
230
231
# File 'lib/blue_shoes/color.rb', line 228

def forestgreen
  # rgb(34, 139, 34)
  throw NotImplementedError
end

#fuchsiaObject



233
234
235
236
# File 'lib/blue_shoes/color.rb', line 233

def fuchsia
  # rgb(255, 0, 255)
  throw NotImplementedError
end

#gainsboroObject



238
239
240
241
# File 'lib/blue_shoes/color.rb', line 238

def gainsboro
  # rgb(220, 220, 220)
  throw NotImplementedError
end

#ghostwhiteObject



243
244
245
246
# File 'lib/blue_shoes/color.rb', line 243

def ghostwhite
  # rgb(248, 248, 255)
  throw NotImplementedError
end

#goldObject



248
249
250
251
# File 'lib/blue_shoes/color.rb', line 248

def gold
  # rgb(255, 215, 0)
  throw NotImplementedError
end

#goldenrodObject



253
254
255
256
# File 'lib/blue_shoes/color.rb', line 253

def goldenrod
  # rgb(218, 165, 32)
  throw NotImplementedError
end

#grayObject



258
259
260
261
# File 'lib/blue_shoes/color.rb', line 258

def gray
  # rgb(128, 128, 128)
  throw NotImplementedError
end

#greenObject



263
264
265
266
# File 'lib/blue_shoes/color.rb', line 263

def green
  # rgb(0, 128, 0)
  throw NotImplementedError
end

#greenyellowObject



268
269
270
271
# File 'lib/blue_shoes/color.rb', line 268

def greenyellow
  # rgb(173, 255, 47)
  throw NotImplementedError
end

#honeydewObject



273
274
275
276
# File 'lib/blue_shoes/color.rb', line 273

def honeydew
  # rgb(240, 255, 240)
  throw NotImplementedError
end

#hotpinkObject



278
279
280
281
# File 'lib/blue_shoes/color.rb', line 278

def hotpink
  # rgb(255, 105, 180)
  throw NotImplementedError
end

#indianredObject



283
284
285
286
# File 'lib/blue_shoes/color.rb', line 283

def indianred
  # rgb(205, 92, 92)
  throw NotImplementedError
end

#indigoObject



288
289
290
291
# File 'lib/blue_shoes/color.rb', line 288

def indigo
  # rgb(75, 0, 130)
  throw NotImplementedError
end

#ivoryObject



293
294
295
296
# File 'lib/blue_shoes/color.rb', line 293

def ivory
  # rgb(255, 255, 240)
  throw NotImplementedError
end

#khakiObject



298
299
300
301
# File 'lib/blue_shoes/color.rb', line 298

def khaki
  # rgb(240, 230, 140)
  throw NotImplementedError
end

#lavenderObject



303
304
305
306
# File 'lib/blue_shoes/color.rb', line 303

def lavender
  # rgb(230, 230, 250)
  throw NotImplementedError
end

#lavenderblushObject



308
309
310
311
# File 'lib/blue_shoes/color.rb', line 308

def lavenderblush
  # rgb(255, 240, 245)
  throw NotImplementedError
end

#lawngreenObject



313
314
315
316
# File 'lib/blue_shoes/color.rb', line 313

def lawngreen
  # rgb(124, 252, 0)
  throw NotImplementedError
end

#lemonchiffonObject



318
319
320
321
# File 'lib/blue_shoes/color.rb', line 318

def lemonchiffon
  # rgb(255, 250, 205)
  throw NotImplementedError
end

#lightblueObject



323
324
325
326
# File 'lib/blue_shoes/color.rb', line 323

def lightblue
  # rgb(173, 216, 230)
  throw NotImplementedError
end

#lightcoralObject



328
329
330
331
# File 'lib/blue_shoes/color.rb', line 328

def lightcoral
  # rgb(240, 128, 128)
  throw NotImplementedError
end

#lightcyanObject



333
334
335
336
# File 'lib/blue_shoes/color.rb', line 333

def lightcyan
  # rgb(224, 255, 255)
  throw NotImplementedError
end

#lightgoldenrodyellowObject



338
339
340
341
# File 'lib/blue_shoes/color.rb', line 338

def lightgoldenrodyellow
  # rgb(250, 250, 210)
  throw NotImplementedError
end

#lightgreenObject



343
344
345
346
# File 'lib/blue_shoes/color.rb', line 343

def lightgreen
  # rgb(144, 238, 144)
  throw NotImplementedError
end

#lightgreyObject



348
349
350
351
# File 'lib/blue_shoes/color.rb', line 348

def lightgrey
  # rgb(211, 211, 211)
  throw NotImplementedError
end

#lightpinkObject



353
354
355
356
# File 'lib/blue_shoes/color.rb', line 353

def lightpink
  # rgb(255, 182, 193)
  throw NotImplementedError
end

#lightsalmonObject



358
359
360
361
# File 'lib/blue_shoes/color.rb', line 358

def lightsalmon
  # rgb(255, 160, 122)
  throw NotImplementedError
end

#lightseagreenObject



363
364
365
366
# File 'lib/blue_shoes/color.rb', line 363

def lightseagreen
  # rgb(32, 178, 170)
  throw NotImplementedError
end

#lightskyblueObject



368
369
370
371
# File 'lib/blue_shoes/color.rb', line 368

def lightskyblue
  # rgb(135, 206, 250)
  throw NotImplementedError
end

#lightslategrayObject



373
374
375
376
# File 'lib/blue_shoes/color.rb', line 373

def lightslategray
  # rgb(119, 136, 153)
  throw NotImplementedError
end

#lightsteelblueObject



378
379
380
381
# File 'lib/blue_shoes/color.rb', line 378

def lightsteelblue
  # rgb(176, 196, 222)
  throw NotImplementedError
end

#lightyellowObject



383
384
385
386
# File 'lib/blue_shoes/color.rb', line 383

def lightyellow
  # rgb(255, 255, 224)
  throw NotImplementedError
end

#limeObject



388
389
390
391
# File 'lib/blue_shoes/color.rb', line 388

def lime
  # rgb(0, 255, 0)
  throw NotImplementedError
end

#limegreenObject



393
394
395
396
# File 'lib/blue_shoes/color.rb', line 393

def limegreen
  # rgb(50, 205, 50)
  throw NotImplementedError
end

#linenObject



398
399
400
401
# File 'lib/blue_shoes/color.rb', line 398

def linen
  # rgb(250, 240, 230)
  throw NotImplementedError
end

#magentaObject



403
404
405
406
# File 'lib/blue_shoes/color.rb', line 403

def magenta
  # rgb(255, 0, 255)
  throw NotImplementedError
end

#maroonObject



408
409
410
411
# File 'lib/blue_shoes/color.rb', line 408

def maroon
  # rgb(128, 0, 0)
  throw NotImplementedError
end

#mediumaquamarineObject



413
414
415
416
# File 'lib/blue_shoes/color.rb', line 413

def mediumaquamarine
  # rgb(102, 205, 170)
  throw NotImplementedError
end

#mediumblueObject



418
419
420
421
# File 'lib/blue_shoes/color.rb', line 418

def mediumblue
  # rgb(0, 0, 205)
  throw NotImplementedError
end

#mediumorchidObject



423
424
425
426
# File 'lib/blue_shoes/color.rb', line 423

def mediumorchid
  # rgb(186, 85, 211)
  throw NotImplementedError
end

#mediumpurpleObject



428
429
430
431
# File 'lib/blue_shoes/color.rb', line 428

def mediumpurple
  # rgb(147, 112, 219)
  throw NotImplementedError
end

#mediumseagreenObject



433
434
435
436
# File 'lib/blue_shoes/color.rb', line 433

def mediumseagreen
  # rgb(60, 179, 113)
  throw NotImplementedError
end

#mediumslateblueObject



438
439
440
441
# File 'lib/blue_shoes/color.rb', line 438

def mediumslateblue
  # rgb(123, 104, 238)
  throw NotImplementedError
end

#mediumspringgreenObject



443
444
445
446
# File 'lib/blue_shoes/color.rb', line 443

def mediumspringgreen
  # rgb(0, 250, 154)
  throw NotImplementedError
end

#mediumturquoiseObject



448
449
450
451
# File 'lib/blue_shoes/color.rb', line 448

def mediumturquoise
  # rgb(72, 209, 204)
  throw NotImplementedError
end

#mediumvioletredObject



453
454
455
456
# File 'lib/blue_shoes/color.rb', line 453

def mediumvioletred
  # rgb(199, 21, 133)
  throw NotImplementedError
end

#midnightblueObject



458
459
460
461
# File 'lib/blue_shoes/color.rb', line 458

def midnightblue
  # rgb(25, 25, 112)
  throw NotImplementedError
end

#mintcreamObject



463
464
465
466
# File 'lib/blue_shoes/color.rb', line 463

def mintcream
  # rgb(245, 255, 250)
  throw NotImplementedError
end

#mistyroseObject



468
469
470
471
# File 'lib/blue_shoes/color.rb', line 468

def mistyrose
  # rgb(255, 228, 225)
  throw NotImplementedError
end

#moccasinObject



473
474
475
476
# File 'lib/blue_shoes/color.rb', line 473

def moccasin
  # rgb(255, 228, 181)
  throw NotImplementedError
end


478
479
480
481
# File 'lib/blue_shoes/color.rb', line 478

def navajowhite
  # rgb(255, 222, 173)
  throw NotImplementedError
end


483
484
485
486
# File 'lib/blue_shoes/color.rb', line 483

def navy
  # rgb(0, 0, 128)
  throw NotImplementedError
end

#oldlaceObject



488
489
490
491
# File 'lib/blue_shoes/color.rb', line 488

def oldlace
  # rgb(253, 245, 230)
  throw NotImplementedError
end

#oliveObject



493
494
495
496
# File 'lib/blue_shoes/color.rb', line 493

def olive
  # rgb(128, 128, 0)
  throw NotImplementedError
end

#olivedrabObject



498
499
500
501
# File 'lib/blue_shoes/color.rb', line 498

def olivedrab
  # rgb(107, 142, 35)
  throw NotImplementedError
end

#orangeObject



503
504
505
506
# File 'lib/blue_shoes/color.rb', line 503

def orange
  # rgb(255, 165, 0)
  throw NotImplementedError
end

#orangeredObject



508
509
510
511
# File 'lib/blue_shoes/color.rb', line 508

def orangered
  # rgb(255, 69, 0)
  throw NotImplementedError
end

#orchidObject



513
514
515
516
# File 'lib/blue_shoes/color.rb', line 513

def orchid
  # rgb(218, 112, 214)
  throw NotImplementedError
end

#palegoldenrodObject



518
519
520
521
# File 'lib/blue_shoes/color.rb', line 518

def palegoldenrod
  # rgb(238, 232, 170)
  throw NotImplementedError
end

#palegreenObject



523
524
525
526
# File 'lib/blue_shoes/color.rb', line 523

def palegreen
  # rgb(152, 251, 152)
  throw NotImplementedError
end

#paleturquoiseObject



528
529
530
531
# File 'lib/blue_shoes/color.rb', line 528

def paleturquoise
  # rgb(175, 238, 238)
  throw NotImplementedError
end

#palevioletredObject



533
534
535
536
# File 'lib/blue_shoes/color.rb', line 533

def palevioletred
  # rgb(219, 112, 147)
  throw NotImplementedError
end

#papayawhipObject



538
539
540
541
# File 'lib/blue_shoes/color.rb', line 538

def papayawhip
  # rgb(255, 239, 213)
  throw NotImplementedError
end

#peachpuffObject



543
544
545
546
# File 'lib/blue_shoes/color.rb', line 543

def peachpuff
  # rgb(255, 218, 185)
  throw NotImplementedError
end

#peruObject



548
549
550
551
# File 'lib/blue_shoes/color.rb', line 548

def peru
  # rgb(205, 133, 63)
  throw NotImplementedError
end

#pinkObject



553
554
555
556
# File 'lib/blue_shoes/color.rb', line 553

def pink
  # rgb(255, 192, 203)
  throw NotImplementedError
end

#plumObject



558
559
560
561
# File 'lib/blue_shoes/color.rb', line 558

def plum
  # rgb(221, 160, 221)
  throw NotImplementedError
end

#powderblueObject



563
564
565
566
# File 'lib/blue_shoes/color.rb', line 563

def powderblue
  # rgb(176, 224, 230)
  throw NotImplementedError
end

#purpleObject



568
569
570
571
# File 'lib/blue_shoes/color.rb', line 568

def purple
  # rgb(128, 0, 128)
  throw NotImplementedError
end

#redObject



573
574
575
576
# File 'lib/blue_shoes/color.rb', line 573

def red
  # rgb(255, 0, 0)
  throw NotImplementedError
end

#rosybrownObject



578
579
580
581
# File 'lib/blue_shoes/color.rb', line 578

def rosybrown
  # rgb(188, 143, 143)
  throw NotImplementedError
end

#royalblueObject



583
584
585
586
# File 'lib/blue_shoes/color.rb', line 583

def royalblue
  # rgb(65, 105, 225)
  throw NotImplementedError
end

#saddlebrownObject



588
589
590
591
# File 'lib/blue_shoes/color.rb', line 588

def saddlebrown
  # rgb(139, 69, 19)
  throw NotImplementedError
end

#salmonObject



593
594
595
596
# File 'lib/blue_shoes/color.rb', line 593

def salmon
  # rgb(250, 128, 114)
  throw NotImplementedError
end

#sandybrownObject



598
599
600
601
# File 'lib/blue_shoes/color.rb', line 598

def sandybrown
  # rgb(244, 164, 96)
  throw NotImplementedError
end

#seagreenObject



603
604
605
606
# File 'lib/blue_shoes/color.rb', line 603

def seagreen
  # rgb(46, 139, 87)
  throw NotImplementedError
end

#seashellObject



608
609
610
611
# File 'lib/blue_shoes/color.rb', line 608

def seashell
  # rgb(255, 245, 238)
  throw NotImplementedError
end

#siennaObject



613
614
615
616
# File 'lib/blue_shoes/color.rb', line 613

def sienna
  # rgb(160, 82, 45)
  throw NotImplementedError
end

#silverObject



618
619
620
621
# File 'lib/blue_shoes/color.rb', line 618

def silver
  # rgb(192, 192, 192)
  throw NotImplementedError
end

#skyblueObject



623
624
625
626
# File 'lib/blue_shoes/color.rb', line 623

def skyblue
  # rgb(135, 206, 235)
  throw NotImplementedError
end

#slateblueObject



628
629
630
631
# File 'lib/blue_shoes/color.rb', line 628

def slateblue
  # rgb(106, 90, 205)
  throw NotImplementedError
end

#slategrayObject



633
634
635
636
# File 'lib/blue_shoes/color.rb', line 633

def slategray
  # rgb(112, 128, 144)
  throw NotImplementedError
end

#snowObject



638
639
640
641
# File 'lib/blue_shoes/color.rb', line 638

def snow
  # rgb(255, 250, 250)
  throw NotImplementedError
end

#springgreenObject



643
644
645
646
# File 'lib/blue_shoes/color.rb', line 643

def springgreen
  # rgb(0, 255, 127)
  throw NotImplementedError
end

#steelblueObject



648
649
650
651
# File 'lib/blue_shoes/color.rb', line 648

def steelblue
  # rgb(70, 130, 180)
  throw NotImplementedError
end

#tanObject



653
654
655
656
# File 'lib/blue_shoes/color.rb', line 653

def tan
  # rgb(210, 180, 140)
  throw NotImplementedError
end

#tealObject



658
659
660
661
# File 'lib/blue_shoes/color.rb', line 658

def teal
  # rgb(0, 128, 128)
  throw NotImplementedError
end

#thistleObject



663
664
665
666
# File 'lib/blue_shoes/color.rb', line 663

def thistle
  # rgb(216, 191, 216)
  throw NotImplementedError
end

#tomatoObject



668
669
670
671
# File 'lib/blue_shoes/color.rb', line 668

def tomato
  # rgb(255, 99, 71)
  throw NotImplementedError
end

#turquoiseObject



673
674
675
676
# File 'lib/blue_shoes/color.rb', line 673

def turquoise
  # rgb(64, 224, 208)
  throw NotImplementedError
end

#violetObject



678
679
680
681
# File 'lib/blue_shoes/color.rb', line 678

def violet
  # rgb(238, 130, 238)
  throw NotImplementedError
end

#wheatObject



683
684
685
686
# File 'lib/blue_shoes/color.rb', line 683

def wheat
  # rgb(245, 222, 179)
  throw NotImplementedError
end

#whiteObject



688
689
690
691
# File 'lib/blue_shoes/color.rb', line 688

def white
  # rgb(255, 255, 255)
  throw NotImplementedError
end

#whitesmokeObject



693
694
695
696
# File 'lib/blue_shoes/color.rb', line 693

def whitesmoke
  # rgb(245, 245, 245)
  throw NotImplementedError
end

#yellowObject



698
699
700
701
# File 'lib/blue_shoes/color.rb', line 698

def yellow
  # rgb(255, 255, 0)
  throw NotImplementedError
end

#yellowgreenObject



703
704
705
706
# File 'lib/blue_shoes/color.rb', line 703

def yellowgreen
  # rgb(154, 205, 50)
  throw NotImplementedError
end