fxruby-enhancement 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.
@@ -53,27 +53,32 @@ module Fox
53
53
  def <%= @class.snake %> name = nil, ii: <%= (Fox::Enhancement::INITFORCE.member? @class) ? Fox::Enhancement::INITFORCE[@class] : 0 %>, pos: Enhancement.stack.last, reuse: nil, &block
54
54
  Enhancement.stack << (@os = os = OpenStruct.new(klass: <%= @class %>, op: [], ii: ii, fx: nil, kinder: [], inst: nil, instance_result: nil, reusable: reuse))
55
55
  Enhancement.components[name] = os unless name.nil?
56
- unless pos.nil?
57
- pos.kinder << os
56
+ unless Enhancement.kinder_parents[Enhancement.stack.size].nil?
57
+ Enhancement.kinder_parents[Enhancement.stack.size].kinder << os
58
58
  else
59
- Enhancement.base = os
59
+ unless pos.nil?
60
+ pos.kinder << os
61
+ else
62
+ Enhancement.base = os
63
+ end
60
64
  end
61
65
  <% @i=0 %>
62
66
  <% for @iniparams in @details[:initialize].compact %>
63
- <%= "@os.op[#{@i}]" %> = OpenStruct.new({<%= @iniparams.map{ |p,d| [p, d ? d : ":required"] }
64
- .map{ |p,d| ":#{p} => #{d}"}
65
- .join(', ') %>})
67
+ <%= "@os.op[#{@i}]" %> = OpenStruct.new({<%= @iniparams.map{ |p,d| [p, d ? d : ":required"] }
68
+ .map{ |p,d| ":#{p} => #{d}"}
69
+ .join(', ') %>})
66
70
  <% for @param, @default in @iniparams %>
67
- def <%= "#{@param.snake}" %> var; @os.op[@os.ii].<%= "#{@param}" %> = var; end
71
+ def <%= "#{@param.snake}" %> var; @os.op[@os.ii].<%= "#{@param}" %> = var; end
68
72
  <% end %>
69
- def instance a=nil, &block
70
- @os.instance_name = a
71
- @os.instance_block = block
72
- end
73
+ def instance a=nil, &block
74
+ @os.instance_name = a
75
+ @os.instance_block ||= []
76
+ @os.instance_block << [a, block]
77
+ end
73
78
  <% @i+=1; end unless @details[:initialize].nil? %>
74
79
  self.instance_eval &block
75
80
  <% unless Fox::Enhancement::SPECIAL.member? @class %>
76
- os.fx = ->(){ <%= @class %>.new(*([pos.inst] + os.op[os.ii].to_h.values[1..-1].map{|v| (v.is_a?(OpenStruct)? v.inst : v)} )) }
81
+ os.fx = ->(){ <%= @class %>.new(*([pos.inst] + os.op[os.ii].to_h.values[1..-1].map{|v| (v.is_a?(OpenStruct)? v.instance : v)} )) }
77
82
  <% else %>
78
83
  os.fx = ->(){ <%= @class %>.new(*(os.op[os.ii].to_h.values)) }
79
84
  <% end %>
@@ -0,0 +1,1103 @@
1
+ # coding: utf-8
2
+ =begin rdoc
3
+ This is a color map for Enhancement to make it
4
+ easier to deal with colors in FXRuby.
5
+
6
+ To use, just do:
7
+ include RGB
8
+ == List of available colors
9
+
10
+ * ghost_white
11
+
12
+ * white_smoke
13
+
14
+ * floral_white
15
+
16
+ * old_lace
17
+
18
+ * antique_white
19
+
20
+ * papaya_whip
21
+
22
+ * blanched_almond
23
+
24
+ * peach_puff
25
+
26
+ * navajo_white
27
+
28
+ * lemon_chiffon
29
+
30
+ * mint_cream
31
+
32
+ * alice_blue
33
+
34
+ * lavender_blush
35
+
36
+ * misty_rose
37
+
38
+ * dark_slate_gray
39
+
40
+ * dark_slate_grey
41
+
42
+ * dim_gray
43
+
44
+ * dim_grey
45
+
46
+ * slate_gray
47
+
48
+ * slate_grey
49
+
50
+ * light_slate_grey
51
+
52
+ * light_gray
53
+
54
+ * midnight_blue
55
+
56
+ * navy_blue
57
+
58
+ * cornflower_blue
59
+
60
+ * dark_slate_blue
61
+
62
+ * slate_blue
63
+
64
+ * medium_slate_blue
65
+
66
+ * light_slate_blue
67
+
68
+ * medium_blue
69
+
70
+ * royal_blue
71
+
72
+ * dodger_blue
73
+
74
+ * deep_sky_blue
75
+
76
+ * sky_blue
77
+
78
+ * light_sky_blue
79
+
80
+ * steel_blue
81
+
82
+ * light_steel_blue
83
+
84
+ * light_blue
85
+
86
+ * powder_blue
87
+
88
+ * pale_turquoise
89
+
90
+ * dark_turquoise
91
+
92
+ * medium_turquoise
93
+
94
+ * light_cyan
95
+
96
+ * cadet_blue
97
+
98
+ * medium_aquamarine
99
+
100
+ * dark_green
101
+
102
+ * dark_olive_green
103
+
104
+ * dark_sea_green
105
+
106
+ * sea_green
107
+
108
+ * medium_sea_green
109
+
110
+ * light_sea_green
111
+
112
+ * pale_green
113
+
114
+ * spring_green
115
+
116
+ * lawn_green
117
+
118
+ * medium_spring_green
119
+
120
+ * green_yellow
121
+
122
+ * lime_green
123
+
124
+ * yellow_green
125
+
126
+ * forest_green
127
+
128
+ * olive_drab
129
+
130
+ * dark_khaki
131
+
132
+ * pale_goldenrod
133
+
134
+ * light_goldenrod_yellow
135
+
136
+ * light_yellow
137
+
138
+ * light_goldenrod
139
+
140
+ * dark_goldenrod
141
+
142
+ * rosy_brown
143
+
144
+ * indian_red
145
+
146
+ * saddle_brown
147
+
148
+ * sandy_brown
149
+
150
+ * dark_salmon
151
+
152
+ * light_salmon
153
+
154
+ * dark_orange
155
+
156
+ * light_coral
157
+
158
+ * orange_red
159
+
160
+ * hot_pink
161
+
162
+ * deep_pink
163
+
164
+ * light_pink
165
+
166
+ * pale_violet_red
167
+
168
+ * medium_violet_red
169
+
170
+ * violet_red
171
+
172
+ * medium_orchid
173
+
174
+ * dark_orchid
175
+
176
+ * dark_violet
177
+
178
+ * blue_violet
179
+
180
+ * medium_purple
181
+
182
+ * antique_white1
183
+
184
+ * antique_white2
185
+
186
+ * antique_white3
187
+
188
+ * antique_white4
189
+
190
+ * peach_puff1
191
+
192
+ * peach_puff2
193
+
194
+ * peach_puff3
195
+
196
+ * peach_puff4
197
+
198
+ * navajo_white1
199
+
200
+ * navajo_white2
201
+
202
+ * navajo_white3
203
+
204
+ * navajo_white4
205
+
206
+ * lemon_chiffon1
207
+
208
+ * lemon_chiffon2
209
+
210
+ * lemon_chiffon3
211
+
212
+ * lemon_chiffon4
213
+
214
+ * lavender_blush1
215
+
216
+ * lavender_blush2
217
+
218
+ * lavender_blush3
219
+
220
+ * lavender_blush4
221
+
222
+ * misty_rose1
223
+
224
+ * misty_rose2
225
+
226
+ * misty_rose3
227
+
228
+ * misty_rose4
229
+
230
+ * slate_blue1
231
+
232
+ * slate_blue2
233
+
234
+ * slate_blue3
235
+
236
+ * slate_blue4
237
+
238
+ * royal_blue1
239
+
240
+ * royal_blue2
241
+
242
+ * royal_blue3
243
+
244
+ * royal_blue4
245
+
246
+ * dodger_blue1
247
+
248
+ * dodger_blue2
249
+
250
+ * dodger_blue3
251
+
252
+ * dodger_blue4
253
+
254
+ * steel_blue1
255
+
256
+ * steel_blue2
257
+
258
+ * steel_blue3
259
+
260
+ * steel_blue4
261
+
262
+ * deep_sky_blue1
263
+
264
+ * deep_sky_blue2
265
+
266
+ * deep_sky_blue3
267
+
268
+ * deep_sky_blue4
269
+
270
+ * sky_blue1
271
+
272
+ * sky_blue2
273
+
274
+ * sky_blue3
275
+
276
+ * sky_blue4
277
+
278
+ * light_sky_blue1
279
+
280
+ * light_sky_blue2
281
+
282
+ * light_sky_blue3
283
+
284
+ * light_sky_blue4
285
+
286
+ * slate_gray1
287
+
288
+ * slate_gray2
289
+
290
+ * slate_gray3
291
+
292
+ * slate_gray4
293
+
294
+ * light_steel_blue1
295
+
296
+ * light_steel_blue2
297
+
298
+ * light_steel_blue3
299
+
300
+ * light_steel_blue4
301
+
302
+ * light_blue1
303
+
304
+ * light_blue2
305
+
306
+ * light_blue3
307
+
308
+ * light_blue4
309
+
310
+ * light_cyan1
311
+
312
+ * light_cyan2
313
+
314
+ * light_cyan3
315
+
316
+ * light_cyan4
317
+
318
+ * pale_turquoise1
319
+
320
+ * pale_turquoise2
321
+
322
+ * pale_turquoise3
323
+
324
+ * pale_turquoise4
325
+
326
+ * cadet_blue1
327
+
328
+ * cadet_blue2
329
+
330
+ * cadet_blue3
331
+
332
+ * cadet_blue4
333
+
334
+ * dark_slate_gray1
335
+
336
+ * dark_slate_gray2
337
+
338
+ * dark_slate_gray3
339
+
340
+ * dark_slate_gray4
341
+
342
+ * dark_sea_green1
343
+
344
+ * dark_sea_green2
345
+
346
+ * dark_sea_green3
347
+
348
+ * dark_sea_green4
349
+
350
+ * sea_green1
351
+
352
+ * sea_green2
353
+
354
+ * sea_green3
355
+
356
+ * sea_green4
357
+
358
+ * pale_green1
359
+
360
+ * pale_green2
361
+
362
+ * pale_green3
363
+
364
+ * pale_green4
365
+
366
+ * spring_green1
367
+
368
+ * spring_green2
369
+
370
+ * spring_green3
371
+
372
+ * spring_green4
373
+
374
+ * olive_drab1
375
+
376
+ * olive_drab2
377
+
378
+ * olive_drab3
379
+
380
+ * olive_drab4
381
+
382
+ * dark_olive_green1
383
+
384
+ * dark_olive_green2
385
+
386
+ * dark_olive_green3
387
+
388
+ * dark_olive_green4
389
+
390
+ * light_goldenrod1
391
+
392
+ * light_goldenrod2
393
+
394
+ * light_goldenrod3
395
+
396
+ * light_goldenrod4
397
+
398
+ * light_yellow1
399
+
400
+ * light_yellow2
401
+
402
+ * light_yellow3
403
+
404
+ * light_yellow4
405
+
406
+ * dark_goldenrod1
407
+
408
+ * dark_goldenrod2
409
+
410
+ * dark_goldenrod3
411
+
412
+ * dark_goldenrod4
413
+
414
+ * rosy_brown1
415
+
416
+ * rosy_brown2
417
+
418
+ * rosy_brown3
419
+
420
+ * rosy_brown4
421
+
422
+ * indian_red1
423
+
424
+ * indian_red2
425
+
426
+ * indian_red3
427
+
428
+ * indian_red4
429
+
430
+ * light_salmon1
431
+
432
+ * light_salmon2
433
+
434
+ * light_salmon3
435
+
436
+ * light_salmon4
437
+
438
+ * dark_orange1
439
+
440
+ * dark_orange2
441
+
442
+ * dark_orange3
443
+
444
+ * dark_orange4
445
+
446
+ * orange_red1
447
+
448
+ * orange_red2
449
+
450
+ * orange_red3
451
+
452
+ * orange_red4
453
+
454
+ * deep_pink1
455
+
456
+ * deep_pink2
457
+
458
+ * deep_pink3
459
+
460
+ * deep_pink4
461
+
462
+ * hot_pink1
463
+
464
+ * hot_pink2
465
+
466
+ * hot_pink3
467
+
468
+ * hot_pink4
469
+
470
+ * light_pink1
471
+
472
+ * light_pink2
473
+
474
+ * light_pink3
475
+
476
+ * light_pink4
477
+
478
+ * pale_violet_red1
479
+
480
+ * pale_violet_red2
481
+
482
+ * pale_violet_red3
483
+
484
+ * pale_violet_red4
485
+
486
+ * violet_red1
487
+
488
+ * violet_red2
489
+
490
+ * violet_red3
491
+
492
+ * violet_red4
493
+
494
+ * medium_orchid1
495
+
496
+ * medium_orchid2
497
+
498
+ * medium_orchid3
499
+
500
+ * medium_orchid4
501
+
502
+ * dark_orchid1
503
+
504
+ * dark_orchid2
505
+
506
+ * dark_orchid3
507
+
508
+ * dark_orchid4
509
+
510
+ * medium_purple1
511
+
512
+ * medium_purple2
513
+
514
+ * medium_purple3
515
+
516
+ * medium_purple4
517
+
518
+ * dark_grey
519
+
520
+ * dark_gray
521
+
522
+ * dark_blue
523
+
524
+ * dark_cyan
525
+
526
+ * dark_magenta
527
+
528
+ * dark_red
529
+
530
+ * light_green
531
+
532
+ * white
533
+
534
+ * black
535
+
536
+ * red
537
+
538
+ * pink
539
+
540
+ * orange
541
+
542
+ * yellow
543
+
544
+ * green
545
+
546
+ * magenta
547
+
548
+ * cyan
549
+
550
+ * blue
551
+
552
+
553
+ == NOTE WELL
554
+ This file is generated by fxruby-enhancement.
555
+ Do NOT modify this file. Modify the ERB template
556
+ file instead, and run 'rake scrape'.
557
+ =end
558
+
559
+ module RGB
560
+
561
+ def ghost_white; Fox.FXRGB(248, 248, 255); end
562
+
563
+ def white_smoke; Fox.FXRGB(245, 245, 245); end
564
+
565
+ def floral_white; Fox.FXRGB(255, 250, 240); end
566
+
567
+ def old_lace; Fox.FXRGB(253, 245, 230); end
568
+
569
+ def antique_white; Fox.FXRGB(250, 235, 215); end
570
+
571
+ def papaya_whip; Fox.FXRGB(255, 239, 213); end
572
+
573
+ def blanched_almond; Fox.FXRGB(255, 235, 205); end
574
+
575
+ def peach_puff; Fox.FXRGB(255, 218, 185); end
576
+
577
+ def navajo_white; Fox.FXRGB(255, 222, 173); end
578
+
579
+ def lemon_chiffon; Fox.FXRGB(255, 250, 205); end
580
+
581
+ def mint_cream; Fox.FXRGB(245, 255, 250); end
582
+
583
+ def alice_blue; Fox.FXRGB(240, 248, 255); end
584
+
585
+ def lavender_blush; Fox.FXRGB(255, 240, 245); end
586
+
587
+ def misty_rose; Fox.FXRGB(255, 228, 225); end
588
+
589
+ def dark_slate_gray; Fox.FXRGB( 47, 79, 79); end
590
+
591
+ def dark_slate_grey; Fox.FXRGB( 47, 79, 79); end
592
+
593
+ def dim_gray; Fox.FXRGB(105, 105, 105); end
594
+
595
+ def dim_grey; Fox.FXRGB(105, 105, 105); end
596
+
597
+ def slate_gray; Fox.FXRGB(112, 128, 144); end
598
+
599
+ def slate_grey; Fox.FXRGB(112, 128, 144); end
600
+
601
+ def light_slate_grey; Fox.FXRGB(119, 136, 153); end
602
+
603
+ def light_gray; Fox.FXRGB(211, 211, 211); end
604
+
605
+ def midnight_blue; Fox.FXRGB( 25, 25, 112); end
606
+
607
+ def navy_blue; Fox.FXRGB( 0, 0, 128); end
608
+
609
+ def cornflower_blue; Fox.FXRGB(100, 149, 237); end
610
+
611
+ def dark_slate_blue; Fox.FXRGB( 72, 61, 139); end
612
+
613
+ def slate_blue; Fox.FXRGB(106, 90, 205); end
614
+
615
+ def medium_slate_blue; Fox.FXRGB(123, 104, 238); end
616
+
617
+ def light_slate_blue; Fox.FXRGB(132, 112, 255); end
618
+
619
+ def medium_blue; Fox.FXRGB( 0, 0, 205); end
620
+
621
+ def royal_blue; Fox.FXRGB( 65, 105, 225); end
622
+
623
+ def dodger_blue; Fox.FXRGB( 30, 144, 255); end
624
+
625
+ def deep_sky_blue; Fox.FXRGB( 0, 191, 255); end
626
+
627
+ def sky_blue; Fox.FXRGB(135, 206, 235); end
628
+
629
+ def light_sky_blue; Fox.FXRGB(135, 206, 250); end
630
+
631
+ def steel_blue; Fox.FXRGB( 70, 130, 180); end
632
+
633
+ def light_steel_blue; Fox.FXRGB(176, 196, 222); end
634
+
635
+ def light_blue; Fox.FXRGB(173, 216, 230); end
636
+
637
+ def powder_blue; Fox.FXRGB(176, 224, 230); end
638
+
639
+ def pale_turquoise; Fox.FXRGB(175, 238, 238); end
640
+
641
+ def dark_turquoise; Fox.FXRGB( 0, 206, 209); end
642
+
643
+ def medium_turquoise; Fox.FXRGB( 72, 209, 204); end
644
+
645
+ def light_cyan; Fox.FXRGB(224, 255, 255); end
646
+
647
+ def cadet_blue; Fox.FXRGB( 95, 158, 160); end
648
+
649
+ def medium_aquamarine; Fox.FXRGB(102, 205, 170); end
650
+
651
+ def dark_green; Fox.FXRGB( 0, 100, 0); end
652
+
653
+ def dark_olive_green; Fox.FXRGB( 85, 107, 47); end
654
+
655
+ def dark_sea_green; Fox.FXRGB(143, 188, 143); end
656
+
657
+ def sea_green; Fox.FXRGB( 46, 139, 87); end
658
+
659
+ def medium_sea_green; Fox.FXRGB( 60, 179, 113); end
660
+
661
+ def light_sea_green; Fox.FXRGB( 32, 178, 170); end
662
+
663
+ def pale_green; Fox.FXRGB(152, 251, 152); end
664
+
665
+ def spring_green; Fox.FXRGB( 0, 255, 127); end
666
+
667
+ def lawn_green; Fox.FXRGB(124, 252, 0); end
668
+
669
+ def medium_spring_green; Fox.FXRGB( 0, 250, 154); end
670
+
671
+ def green_yellow; Fox.FXRGB(173, 255, 47); end
672
+
673
+ def lime_green; Fox.FXRGB( 50, 205, 50); end
674
+
675
+ def yellow_green; Fox.FXRGB(154, 205, 50); end
676
+
677
+ def forest_green; Fox.FXRGB( 34, 139, 34); end
678
+
679
+ def olive_drab; Fox.FXRGB(107, 142, 35); end
680
+
681
+ def dark_khaki; Fox.FXRGB(189, 183, 107); end
682
+
683
+ def pale_goldenrod; Fox.FXRGB(238, 232, 170); end
684
+
685
+ def light_goldenrod_yellow; Fox.FXRGB(250, 250, 210); end
686
+
687
+ def light_yellow; Fox.FXRGB(255, 255, 224); end
688
+
689
+ def light_goldenrod; Fox.FXRGB(238, 221, 130); end
690
+
691
+ def dark_goldenrod; Fox.FXRGB(184, 134, 11); end
692
+
693
+ def rosy_brown; Fox.FXRGB(188, 143, 143); end
694
+
695
+ def indian_red; Fox.FXRGB(205, 92, 92); end
696
+
697
+ def saddle_brown; Fox.FXRGB(139, 69, 19); end
698
+
699
+ def sandy_brown; Fox.FXRGB(244, 164, 96); end
700
+
701
+ def dark_salmon; Fox.FXRGB(233, 150, 122); end
702
+
703
+ def light_salmon; Fox.FXRGB(255, 160, 122); end
704
+
705
+ def dark_orange; Fox.FXRGB(255, 140, 0); end
706
+
707
+ def light_coral; Fox.FXRGB(240, 128, 128); end
708
+
709
+ def orange_red; Fox.FXRGB(255, 69, 0); end
710
+
711
+ def hot_pink; Fox.FXRGB(255, 105, 180); end
712
+
713
+ def deep_pink; Fox.FXRGB(255, 20, 147); end
714
+
715
+ def light_pink; Fox.FXRGB(255, 182, 193); end
716
+
717
+ def pale_violet_red; Fox.FXRGB(219, 112, 147); end
718
+
719
+ def medium_violet_red; Fox.FXRGB(199, 21, 133); end
720
+
721
+ def violet_red; Fox.FXRGB(208, 32, 144); end
722
+
723
+ def medium_orchid; Fox.FXRGB(186, 85, 211); end
724
+
725
+ def dark_orchid; Fox.FXRGB(153, 50, 204); end
726
+
727
+ def dark_violet; Fox.FXRGB(148, 0, 211); end
728
+
729
+ def blue_violet; Fox.FXRGB(138, 43, 226); end
730
+
731
+ def medium_purple; Fox.FXRGB(147, 112, 219); end
732
+
733
+ def antique_white1; Fox.FXRGB(255, 239, 219); end
734
+
735
+ def antique_white2; Fox.FXRGB(238, 223, 204); end
736
+
737
+ def antique_white3; Fox.FXRGB(205, 192, 176); end
738
+
739
+ def antique_white4; Fox.FXRGB(139, 131, 120); end
740
+
741
+ def peach_puff1; Fox.FXRGB(255, 218, 185); end
742
+
743
+ def peach_puff2; Fox.FXRGB(238, 203, 173); end
744
+
745
+ def peach_puff3; Fox.FXRGB(205, 175, 149); end
746
+
747
+ def peach_puff4; Fox.FXRGB(139, 119, 101); end
748
+
749
+ def navajo_white1; Fox.FXRGB(255, 222, 173); end
750
+
751
+ def navajo_white2; Fox.FXRGB(238, 207, 161); end
752
+
753
+ def navajo_white3; Fox.FXRGB(205, 179, 139); end
754
+
755
+ def navajo_white4; Fox.FXRGB(139, 121, 94); end
756
+
757
+ def lemon_chiffon1; Fox.FXRGB(255, 250, 205); end
758
+
759
+ def lemon_chiffon2; Fox.FXRGB(238, 233, 191); end
760
+
761
+ def lemon_chiffon3; Fox.FXRGB(205, 201, 165); end
762
+
763
+ def lemon_chiffon4; Fox.FXRGB(139, 137, 112); end
764
+
765
+ def lavender_blush1; Fox.FXRGB(255, 240, 245); end
766
+
767
+ def lavender_blush2; Fox.FXRGB(238, 224, 229); end
768
+
769
+ def lavender_blush3; Fox.FXRGB(205, 193, 197); end
770
+
771
+ def lavender_blush4; Fox.FXRGB(139, 131, 134); end
772
+
773
+ def misty_rose1; Fox.FXRGB(255, 228, 225); end
774
+
775
+ def misty_rose2; Fox.FXRGB(238, 213, 210); end
776
+
777
+ def misty_rose3; Fox.FXRGB(205, 183, 181); end
778
+
779
+ def misty_rose4; Fox.FXRGB(139, 125, 123); end
780
+
781
+ def slate_blue1; Fox.FXRGB(131, 111, 255); end
782
+
783
+ def slate_blue2; Fox.FXRGB(122, 103, 238); end
784
+
785
+ def slate_blue3; Fox.FXRGB(105, 89, 205); end
786
+
787
+ def slate_blue4; Fox.FXRGB( 71, 60, 139); end
788
+
789
+ def royal_blue1; Fox.FXRGB( 72, 118, 255); end
790
+
791
+ def royal_blue2; Fox.FXRGB( 67, 110, 238); end
792
+
793
+ def royal_blue3; Fox.FXRGB( 58, 95, 205); end
794
+
795
+ def royal_blue4; Fox.FXRGB( 39, 64, 139); end
796
+
797
+ def dodger_blue1; Fox.FXRGB( 30, 144, 255); end
798
+
799
+ def dodger_blue2; Fox.FXRGB( 28, 134, 238); end
800
+
801
+ def dodger_blue3; Fox.FXRGB( 24, 116, 205); end
802
+
803
+ def dodger_blue4; Fox.FXRGB( 16, 78, 139); end
804
+
805
+ def steel_blue1; Fox.FXRGB( 99, 184, 255); end
806
+
807
+ def steel_blue2; Fox.FXRGB( 92, 172, 238); end
808
+
809
+ def steel_blue3; Fox.FXRGB( 79, 148, 205); end
810
+
811
+ def steel_blue4; Fox.FXRGB( 54, 100, 139); end
812
+
813
+ def deep_sky_blue1; Fox.FXRGB( 0, 191, 255); end
814
+
815
+ def deep_sky_blue2; Fox.FXRGB( 0, 178, 238); end
816
+
817
+ def deep_sky_blue3; Fox.FXRGB( 0, 154, 205); end
818
+
819
+ def deep_sky_blue4; Fox.FXRGB( 0, 104, 139); end
820
+
821
+ def sky_blue1; Fox.FXRGB(135, 206, 255); end
822
+
823
+ def sky_blue2; Fox.FXRGB(126, 192, 238); end
824
+
825
+ def sky_blue3; Fox.FXRGB(108, 166, 205); end
826
+
827
+ def sky_blue4; Fox.FXRGB( 74, 112, 139); end
828
+
829
+ def light_sky_blue1; Fox.FXRGB(176, 226, 255); end
830
+
831
+ def light_sky_blue2; Fox.FXRGB(164, 211, 238); end
832
+
833
+ def light_sky_blue3; Fox.FXRGB(141, 182, 205); end
834
+
835
+ def light_sky_blue4; Fox.FXRGB( 96, 123, 139); end
836
+
837
+ def slate_gray1; Fox.FXRGB(198, 226, 255); end
838
+
839
+ def slate_gray2; Fox.FXRGB(185, 211, 238); end
840
+
841
+ def slate_gray3; Fox.FXRGB(159, 182, 205); end
842
+
843
+ def slate_gray4; Fox.FXRGB(108, 123, 139); end
844
+
845
+ def light_steel_blue1; Fox.FXRGB(202, 225, 255); end
846
+
847
+ def light_steel_blue2; Fox.FXRGB(188, 210, 238); end
848
+
849
+ def light_steel_blue3; Fox.FXRGB(162, 181, 205); end
850
+
851
+ def light_steel_blue4; Fox.FXRGB(110, 123, 139); end
852
+
853
+ def light_blue1; Fox.FXRGB(191, 239, 255); end
854
+
855
+ def light_blue2; Fox.FXRGB(178, 223, 238); end
856
+
857
+ def light_blue3; Fox.FXRGB(154, 192, 205); end
858
+
859
+ def light_blue4; Fox.FXRGB(104, 131, 139); end
860
+
861
+ def light_cyan1; Fox.FXRGB(224, 255, 255); end
862
+
863
+ def light_cyan2; Fox.FXRGB(209, 238, 238); end
864
+
865
+ def light_cyan3; Fox.FXRGB(180, 205, 205); end
866
+
867
+ def light_cyan4; Fox.FXRGB(122, 139, 139); end
868
+
869
+ def pale_turquoise1; Fox.FXRGB(187, 255, 255); end
870
+
871
+ def pale_turquoise2; Fox.FXRGB(174, 238, 238); end
872
+
873
+ def pale_turquoise3; Fox.FXRGB(150, 205, 205); end
874
+
875
+ def pale_turquoise4; Fox.FXRGB(102, 139, 139); end
876
+
877
+ def cadet_blue1; Fox.FXRGB(152, 245, 255); end
878
+
879
+ def cadet_blue2; Fox.FXRGB(142, 229, 238); end
880
+
881
+ def cadet_blue3; Fox.FXRGB(122, 197, 205); end
882
+
883
+ def cadet_blue4; Fox.FXRGB( 83, 134, 139); end
884
+
885
+ def dark_slate_gray1; Fox.FXRGB(151, 255, 255); end
886
+
887
+ def dark_slate_gray2; Fox.FXRGB(141, 238, 238); end
888
+
889
+ def dark_slate_gray3; Fox.FXRGB(121, 205, 205); end
890
+
891
+ def dark_slate_gray4; Fox.FXRGB( 82, 139, 139); end
892
+
893
+ def dark_sea_green1; Fox.FXRGB(193, 255, 193); end
894
+
895
+ def dark_sea_green2; Fox.FXRGB(180, 238, 180); end
896
+
897
+ def dark_sea_green3; Fox.FXRGB(155, 205, 155); end
898
+
899
+ def dark_sea_green4; Fox.FXRGB(105, 139, 105); end
900
+
901
+ def sea_green1; Fox.FXRGB( 84, 255, 159); end
902
+
903
+ def sea_green2; Fox.FXRGB( 78, 238, 148); end
904
+
905
+ def sea_green3; Fox.FXRGB( 67, 205, 128); end
906
+
907
+ def sea_green4; Fox.FXRGB( 46, 139, 87); end
908
+
909
+ def pale_green1; Fox.FXRGB(154, 255, 154); end
910
+
911
+ def pale_green2; Fox.FXRGB(144, 238, 144); end
912
+
913
+ def pale_green3; Fox.FXRGB(124, 205, 124); end
914
+
915
+ def pale_green4; Fox.FXRGB( 84, 139, 84); end
916
+
917
+ def spring_green1; Fox.FXRGB( 0, 255, 127); end
918
+
919
+ def spring_green2; Fox.FXRGB( 0, 238, 118); end
920
+
921
+ def spring_green3; Fox.FXRGB( 0, 205, 102); end
922
+
923
+ def spring_green4; Fox.FXRGB( 0, 139, 69); end
924
+
925
+ def olive_drab1; Fox.FXRGB(192, 255, 62); end
926
+
927
+ def olive_drab2; Fox.FXRGB(179, 238, 58); end
928
+
929
+ def olive_drab3; Fox.FXRGB(154, 205, 50); end
930
+
931
+ def olive_drab4; Fox.FXRGB(105, 139, 34); end
932
+
933
+ def dark_olive_green1; Fox.FXRGB(202, 255, 112); end
934
+
935
+ def dark_olive_green2; Fox.FXRGB(188, 238, 104); end
936
+
937
+ def dark_olive_green3; Fox.FXRGB(162, 205, 90); end
938
+
939
+ def dark_olive_green4; Fox.FXRGB(110, 139, 61); end
940
+
941
+ def light_goldenrod1; Fox.FXRGB(255, 236, 139); end
942
+
943
+ def light_goldenrod2; Fox.FXRGB(238, 220, 130); end
944
+
945
+ def light_goldenrod3; Fox.FXRGB(205, 190, 112); end
946
+
947
+ def light_goldenrod4; Fox.FXRGB(139, 129, 76); end
948
+
949
+ def light_yellow1; Fox.FXRGB(255, 255, 224); end
950
+
951
+ def light_yellow2; Fox.FXRGB(238, 238, 209); end
952
+
953
+ def light_yellow3; Fox.FXRGB(205, 205, 180); end
954
+
955
+ def light_yellow4; Fox.FXRGB(139, 139, 122); end
956
+
957
+ def dark_goldenrod1; Fox.FXRGB(255, 185, 15); end
958
+
959
+ def dark_goldenrod2; Fox.FXRGB(238, 173, 14); end
960
+
961
+ def dark_goldenrod3; Fox.FXRGB(205, 149, 12); end
962
+
963
+ def dark_goldenrod4; Fox.FXRGB(139, 101, 8); end
964
+
965
+ def rosy_brown1; Fox.FXRGB(255, 193, 193); end
966
+
967
+ def rosy_brown2; Fox.FXRGB(238, 180, 180); end
968
+
969
+ def rosy_brown3; Fox.FXRGB(205, 155, 155); end
970
+
971
+ def rosy_brown4; Fox.FXRGB(139, 105, 105); end
972
+
973
+ def indian_red1; Fox.FXRGB(255, 106, 106); end
974
+
975
+ def indian_red2; Fox.FXRGB(238, 99, 99); end
976
+
977
+ def indian_red3; Fox.FXRGB(205, 85, 85); end
978
+
979
+ def indian_red4; Fox.FXRGB(139, 58, 58); end
980
+
981
+ def light_salmon1; Fox.FXRGB(255, 160, 122); end
982
+
983
+ def light_salmon2; Fox.FXRGB(238, 149, 114); end
984
+
985
+ def light_salmon3; Fox.FXRGB(205, 129, 98); end
986
+
987
+ def light_salmon4; Fox.FXRGB(139, 87, 66); end
988
+
989
+ def dark_orange1; Fox.FXRGB(255, 127, 0); end
990
+
991
+ def dark_orange2; Fox.FXRGB(238, 118, 0); end
992
+
993
+ def dark_orange3; Fox.FXRGB(205, 102, 0); end
994
+
995
+ def dark_orange4; Fox.FXRGB(139, 69, 0); end
996
+
997
+ def orange_red1; Fox.FXRGB(255, 69, 0); end
998
+
999
+ def orange_red2; Fox.FXRGB(238, 64, 0); end
1000
+
1001
+ def orange_red3; Fox.FXRGB(205, 55, 0); end
1002
+
1003
+ def orange_red4; Fox.FXRGB(139, 37, 0); end
1004
+
1005
+ def deep_pink1; Fox.FXRGB(255, 20, 147); end
1006
+
1007
+ def deep_pink2; Fox.FXRGB(238, 18, 137); end
1008
+
1009
+ def deep_pink3; Fox.FXRGB(205, 16, 118); end
1010
+
1011
+ def deep_pink4; Fox.FXRGB(139, 10, 80); end
1012
+
1013
+ def hot_pink1; Fox.FXRGB(255, 110, 180); end
1014
+
1015
+ def hot_pink2; Fox.FXRGB(238, 106, 167); end
1016
+
1017
+ def hot_pink3; Fox.FXRGB(205, 96, 144); end
1018
+
1019
+ def hot_pink4; Fox.FXRGB(139, 58, 98); end
1020
+
1021
+ def light_pink1; Fox.FXRGB(255, 174, 185); end
1022
+
1023
+ def light_pink2; Fox.FXRGB(238, 162, 173); end
1024
+
1025
+ def light_pink3; Fox.FXRGB(205, 140, 149); end
1026
+
1027
+ def light_pink4; Fox.FXRGB(139, 95, 101); end
1028
+
1029
+ def pale_violet_red1; Fox.FXRGB(255, 130, 171); end
1030
+
1031
+ def pale_violet_red2; Fox.FXRGB(238, 121, 159); end
1032
+
1033
+ def pale_violet_red3; Fox.FXRGB(205, 104, 137); end
1034
+
1035
+ def pale_violet_red4; Fox.FXRGB(139, 71, 93); end
1036
+
1037
+ def violet_red1; Fox.FXRGB(255, 62, 150); end
1038
+
1039
+ def violet_red2; Fox.FXRGB(238, 58, 140); end
1040
+
1041
+ def violet_red3; Fox.FXRGB(205, 50, 120); end
1042
+
1043
+ def violet_red4; Fox.FXRGB(139, 34, 82); end
1044
+
1045
+ def medium_orchid1; Fox.FXRGB(224, 102, 255); end
1046
+
1047
+ def medium_orchid2; Fox.FXRGB(209, 95, 238); end
1048
+
1049
+ def medium_orchid3; Fox.FXRGB(180, 82, 205); end
1050
+
1051
+ def medium_orchid4; Fox.FXRGB(122, 55, 139); end
1052
+
1053
+ def dark_orchid1; Fox.FXRGB(191, 62, 255); end
1054
+
1055
+ def dark_orchid2; Fox.FXRGB(178, 58, 238); end
1056
+
1057
+ def dark_orchid3; Fox.FXRGB(154, 50, 205); end
1058
+
1059
+ def dark_orchid4; Fox.FXRGB(104, 34, 139); end
1060
+
1061
+ def medium_purple1; Fox.FXRGB(171, 130, 255); end
1062
+
1063
+ def medium_purple2; Fox.FXRGB(159, 121, 238); end
1064
+
1065
+ def medium_purple3; Fox.FXRGB(137, 104, 205); end
1066
+
1067
+ def medium_purple4; Fox.FXRGB( 93, 71, 139); end
1068
+
1069
+ def dark_grey; Fox.FXRGB(169, 169, 169); end
1070
+
1071
+ def dark_gray; Fox.FXRGB(169, 169, 169); end
1072
+
1073
+ def dark_blue; Fox.FXRGB(0 , 0, 139); end
1074
+
1075
+ def dark_cyan; Fox.FXRGB(0 , 139, 139); end
1076
+
1077
+ def dark_magenta; Fox.FXRGB(139, 0, 139); end
1078
+
1079
+ def dark_red; Fox.FXRGB(139, 0, 0); end
1080
+
1081
+ def light_green; Fox.FXRGB(144, 238, 144); end
1082
+
1083
+ def white; Fox.FXRGB(255, 255, 255); end
1084
+
1085
+ def black; Fox.FXRGB(0, 0, 0); end
1086
+
1087
+ def red; Fox.FXRGB(255, 0, 0); end
1088
+
1089
+ def pink; Fox.FXRGB(255, 175, 175); end
1090
+
1091
+ def orange; Fox.FXRGB(255, 200, 0); end
1092
+
1093
+ def yellow; Fox.FXRGB(255, 255, 0); end
1094
+
1095
+ def green; Fox.FXRGB(0, 255, 0); end
1096
+
1097
+ def magenta; Fox.FXRGB(255, 0, 255); end
1098
+
1099
+ def cyan; Fox.FXRGB(0, 255, 255); end
1100
+
1101
+ def blue; Fox.FXRGB(0, 0, 255) ; end
1102
+
1103
+ end