colours 0.8.12

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 (143) hide show
  1. checksums.yaml +7 -0
  2. data/LICENCE.md +22 -0
  3. data/README.md +1152 -0
  4. data/bin/colours +7 -0
  5. data/bin/egreen +7 -0
  6. data/bin/fancy_parse +7 -0
  7. data/bin/html_colour_to_hex_value +7 -0
  8. data/bin/html_colourize +7 -0
  9. data/bin/orange +7 -0
  10. data/bin/print_rainbow_line +7 -0
  11. data/bin/rainbow_colours +7 -0
  12. data/bin/remove_ansii_escape_sequences +7 -0
  13. data/bin/steelblue +7 -0
  14. data/colours.gemspec +74 -0
  15. data/doc/COLOUR_CODES_CHART.md +27 -0
  16. data/doc/HOW_TO_PICK_YOUR_OWN_COLOURS.md +28 -0
  17. data/doc/README.gen +1105 -0
  18. data/doc/todo/todo.md +25 -0
  19. data/lib/colours/256_colours/support_for_256_colours.rb +196 -0
  20. data/lib/colours/autoalias_e.rb +10 -0
  21. data/lib/colours/autogenerated/README.md +2 -0
  22. data/lib/colours/autogenerated/support_for_256_colours.rb +2235 -0
  23. data/lib/colours/autogenerated/support_for_html_colours.rb +1778 -0
  24. data/lib/colours/autogenerated/toplevel_basic_colour_methods.rb +7001 -0
  25. data/lib/colours/autoinclude.rb +14 -0
  26. data/lib/colours/base/base.rb +29 -0
  27. data/lib/colours/basic_colours/README.md +4 -0
  28. data/lib/colours/basic_colours/basic_colours.rb +334 -0
  29. data/lib/colours/class/colours.rb +537 -0
  30. data/lib/colours/colour_methods/README.md +11 -0
  31. data/lib/colours/colour_methods/colour_methods.rb +685 -0
  32. data/lib/colours/colour_table/README.md +2 -0
  33. data/lib/colours/colour_table/colour_table.rb +282 -0
  34. data/lib/colours/colours_e_autoinclude.rb +9 -0
  35. data/lib/colours/commandline/README.md +2 -0
  36. data/lib/colours/commandline/commandline.rb +58 -0
  37. data/lib/colours/commandline/menu.rb +122 -0
  38. data/lib/colours/constants/constants.rb +9 -0
  39. data/lib/colours/constants/escape.rb +22 -0
  40. data/lib/colours/constants/file_constants.rb +73 -0
  41. data/lib/colours/constants/hash_ansi_colours.rb +39 -0
  42. data/lib/colours/constants/hash_simple_colours.rb +148 -0
  43. data/lib/colours/constants/misc.rb +361 -0
  44. data/lib/colours/constants/newline.rb +14 -0
  45. data/lib/colours/constants/registered_colour_methods.rb +53 -0
  46. data/lib/colours/e/README.md +13 -0
  47. data/lib/colours/e/autoinclude.rb +11 -0
  48. data/lib/colours/e/e.rb +35 -0
  49. data/lib/colours/e.rb +5 -0
  50. data/lib/colours/eparse/eparse.rb +114 -0
  51. data/lib/colours/everything/autoinclude.rb +11 -0
  52. data/lib/colours/html_colours/README.md +1 -0
  53. data/lib/colours/html_colours/add_html_colours_onto_the_toplevel_namespace.rb +22 -0
  54. data/lib/colours/html_colours/html_colours.rb +424 -0
  55. data/lib/colours/kde_colour_palette/kde_colour_palette.rb +132 -0
  56. data/lib/colours/map_symbol_to_corresponding_colour/map_symbol_to_corresponding_colour.rb +224 -0
  57. data/lib/colours/module.rb +11 -0
  58. data/lib/colours/project/project.rb +22 -0
  59. data/lib/colours/rainbow_colours/README.md +2 -0
  60. data/lib/colours/rainbow_colours/check_for_trollop_being_available_or_exit.rb +26 -0
  61. data/lib/colours/rainbow_colours/constants.rb +30 -0
  62. data/lib/colours/rainbow_colours/do_parse_via_rainbow_colours.rb +164 -0
  63. data/lib/colours/rainbow_colours/paint_detected_mode.rb +20 -0
  64. data/lib/colours/rainbow_colours/print_rainbow_line.rb +68 -0
  65. data/lib/colours/rainbow_colours/println_ani.rb +32 -0
  66. data/lib/colours/rainbow_colours/println_plain.rb +36 -0
  67. data/lib/colours/rainbow_colours/rainbow.rb +38 -0
  68. data/lib/colours/rainbow_colours/report_errors.rb +32 -0
  69. data/lib/colours/rainbow_colours/returnln_plain.rb +63 -0
  70. data/lib/colours/rainbow_colours/set_mode.rb +24 -0
  71. data/lib/colours/requires/require_autogenerated_colour_methods.rb +5 -0
  72. data/lib/colours/requires/require_commandline.rb +7 -0
  73. data/lib/colours/requires/require_eparse.rb +11 -0
  74. data/lib/colours/requires/require_rgb.rb +5 -0
  75. data/lib/colours/requires/require_the_256_colours_module.rb +16 -0
  76. data/lib/colours/requires/require_the_basic_colours.rb +7 -0
  77. data/lib/colours/requires/require_the_colour_methods.rb +34 -0
  78. data/lib/colours/requires/require_the_colour_table.rb +7 -0
  79. data/lib/colours/requires/require_the_constants.rb +5 -0
  80. data/lib/colours/requires/require_the_html_colours.rb +11 -0
  81. data/lib/colours/requires/require_the_kde_colour_palette.rb +7 -0
  82. data/lib/colours/requires/require_the_project.rb +53 -0
  83. data/lib/colours/requires/require_the_toplevel_methods.rb +42 -0
  84. data/lib/colours/requires/require_yaml.rb +9 -0
  85. data/lib/colours/rgb/rgb.rb +550 -0
  86. data/lib/colours/testing/README.md +2 -0
  87. data/lib/colours/testing/testing.rb +168 -0
  88. data/lib/colours/toplevel_methods/autogenerate.rb +310 -0
  89. data/lib/colours/toplevel_methods/bold.rb +41 -0
  90. data/lib/colours/toplevel_methods/bold_and_italic.rb +38 -0
  91. data/lib/colours/toplevel_methods/cat.rb +39 -0
  92. data/lib/colours/toplevel_methods/clear_screen.rb +18 -0
  93. data/lib/colours/toplevel_methods/cliner.rb +17 -0
  94. data/lib/colours/toplevel_methods/col.rb +54 -0
  95. data/lib/colours/toplevel_methods/e.rb +69 -0
  96. data/lib/colours/toplevel_methods/esystem.rb +19 -0
  97. data/lib/colours/toplevel_methods/html_colour_to_hex_value.rb +41 -0
  98. data/lib/colours/toplevel_methods/html_colourize.rb +69 -0
  99. data/lib/colours/toplevel_methods/is_on_roebe.rb +16 -0
  100. data/lib/colours/toplevel_methods/italic.rb +110 -0
  101. data/lib/colours/toplevel_methods/make_colour.rb +28 -0
  102. data/lib/colours/toplevel_methods/methods_related_to_html_colours.rb +336 -0
  103. data/lib/colours/toplevel_methods/misc.rb +226 -0
  104. data/lib/colours/toplevel_methods/open_this_file.rb +26 -0
  105. data/lib/colours/toplevel_methods/prefer_this_colour_schemata.rb +88 -0
  106. data/lib/colours/toplevel_methods/random_value.rb +37 -0
  107. data/lib/colours/toplevel_methods/remove_escape_sequence.rb +112 -0
  108. data/lib/colours/toplevel_methods/revert.rb +104 -0
  109. data/lib/colours/toplevel_methods/set_last_colour_used.rb +32 -0
  110. data/lib/colours/toplevel_methods/shell_file_containing_the_html_colours.sh +148 -0
  111. data/lib/colours/toplevel_methods/show_basic_colour_palette.rb +36 -0
  112. data/lib/colours/toplevel_methods/underline.rb +130 -0
  113. data/lib/colours/toplevel_methods/use_colours.rb +290 -0
  114. data/lib/colours/version/version.rb +25 -0
  115. data/lib/colours/yaml/256_colours.yml +279 -0
  116. data/lib/colours/yaml/basic_colours.yml +25 -0
  117. data/lib/colours/yaml/html_colours.yml +837 -0
  118. data/lib/colours/yaml/kde_colour_palette.yml +183 -0
  119. data/lib/colours/yaml/prefer_this_colour_schemata.yml +17 -0
  120. data/lib/colours/yaml/use_these_values_for_the_colour_methods.yml +15 -0
  121. data/lib/colours.rb +1 -0
  122. data/test/test.html +18 -0
  123. data/test/testing_256_colours_support.rb +29 -0
  124. data/test/testing_bold_italic_underline.rb +26 -0
  125. data/test/testing_class_colours.rb +46 -0
  126. data/test/testing_col.rb +10 -0
  127. data/test/testing_colours.rb +96 -0
  128. data/test/testing_colours_e.rb +13 -0
  129. data/test/testing_eparse.rb +13 -0
  130. data/test/testing_italic.rb +28 -0
  131. data/test/testing_kde_colour_palette.rb +30 -0
  132. data/test/testing_konsole_submodule.rb +226 -0
  133. data/test/testing_map_symbol_to_corresponding_colour.rb +14 -0
  134. data/test/testing_replace_number_words_with_the_corresponding_html_colour.rb +39 -0
  135. data/test/testing_rgb_to_hex.rb +32 -0
  136. data/test/testing_the_basic_colours_of_the_colours_project.rb +62 -0
  137. data/test/testing_the_colour_methods.rb +36 -0
  138. data/test/testing_the_constants_of_the_colours_project.rb +9 -0
  139. data/test/testing_the_ecomment_method.rb +11 -0
  140. data/test/testing_the_html_colours_of_the_colours_project.rb +37 -0
  141. data/test/testing_the_regex_for_capturing_the_commandline_coloured_content.rb +112 -0
  142. data/test/testing_whether_colours_will_be_used.rb +7 -0
  143. metadata +225 -0
@@ -0,0 +1,2235 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'colours/autogenerated/support_for_256_colours.rb'
6
+ # =========================================================================== #
7
+ module Colours
8
+
9
+ module SupportFor256Colours # include Colours::SupportFor256Colours
10
+
11
+ require 'colours/256_colours/support_for_256_colours.rb'
12
+
13
+ # ========================================================================= #
14
+ # === Colours::SupportFor256Colours.black
15
+ # ========================================================================= #
16
+ def self.black(i = '')
17
+ if Colours.use_colours?
18
+ return Colours.return_this_256_colour(__method__, i)
19
+ else
20
+ return i
21
+ end
22
+ end; def black(i = ''); SupportFor256Colours.black(i); end
23
+
24
+ # ========================================================================= #
25
+ # === Colours::SupportFor256Colours.maroon
26
+ # ========================================================================= #
27
+ def self.maroon(i = '')
28
+ if Colours.use_colours?
29
+ return Colours.return_this_256_colour(__method__, i)
30
+ else
31
+ return i
32
+ end
33
+ end; def maroon(i = ''); SupportFor256Colours.maroon(i); end
34
+
35
+ # ========================================================================= #
36
+ # === Colours::SupportFor256Colours.green
37
+ # ========================================================================= #
38
+ def self.green(i = '')
39
+ if Colours.use_colours?
40
+ return Colours.return_this_256_colour(__method__, i)
41
+ else
42
+ return i
43
+ end
44
+ end; def green(i = ''); SupportFor256Colours.green(i); end
45
+
46
+ # ========================================================================= #
47
+ # === Colours::SupportFor256Colours.olive
48
+ # ========================================================================= #
49
+ def self.olive(i = '')
50
+ if Colours.use_colours?
51
+ return Colours.return_this_256_colour(__method__, i)
52
+ else
53
+ return i
54
+ end
55
+ end; def olive(i = ''); SupportFor256Colours.olive(i); end
56
+
57
+ # ========================================================================= #
58
+ # === Colours::SupportFor256Colours.navy
59
+ # ========================================================================= #
60
+ def self.navy(i = '')
61
+ if Colours.use_colours?
62
+ return Colours.return_this_256_colour(__method__, i)
63
+ else
64
+ return i
65
+ end
66
+ end; def navy(i = ''); SupportFor256Colours.navy(i); end
67
+
68
+ # ========================================================================= #
69
+ # === Colours::SupportFor256Colours.purple
70
+ # ========================================================================= #
71
+ def self.purple(i = '')
72
+ if Colours.use_colours?
73
+ return Colours.return_this_256_colour(__method__, i)
74
+ else
75
+ return i
76
+ end
77
+ end; def purple(i = ''); SupportFor256Colours.purple(i); end
78
+
79
+ # ========================================================================= #
80
+ # === Colours::SupportFor256Colours.teal
81
+ # ========================================================================= #
82
+ def self.teal(i = '')
83
+ if Colours.use_colours?
84
+ return Colours.return_this_256_colour(__method__, i)
85
+ else
86
+ return i
87
+ end
88
+ end; def teal(i = ''); SupportFor256Colours.teal(i); end
89
+
90
+ # ========================================================================= #
91
+ # === Colours::SupportFor256Colours.silver
92
+ # ========================================================================= #
93
+ def self.silver(i = '')
94
+ if Colours.use_colours?
95
+ return Colours.return_this_256_colour(__method__, i)
96
+ else
97
+ return i
98
+ end
99
+ end; def silver(i = ''); SupportFor256Colours.silver(i); end
100
+
101
+ # ========================================================================= #
102
+ # === Colours::SupportFor256Colours.grey
103
+ # ========================================================================= #
104
+ def self.grey(i = '')
105
+ if Colours.use_colours?
106
+ return Colours.return_this_256_colour(__method__, i)
107
+ else
108
+ return i
109
+ end
110
+ end; def grey(i = ''); SupportFor256Colours.grey(i); end
111
+
112
+ # ========================================================================= #
113
+ # === Colours::SupportFor256Colours.red
114
+ # ========================================================================= #
115
+ def self.red(i = '')
116
+ if Colours.use_colours?
117
+ return Colours.return_this_256_colour(__method__, i)
118
+ else
119
+ return i
120
+ end
121
+ end; def red(i = ''); SupportFor256Colours.red(i); end
122
+
123
+ # ========================================================================= #
124
+ # === Colours::SupportFor256Colours.lime
125
+ # ========================================================================= #
126
+ def self.lime(i = '')
127
+ if Colours.use_colours?
128
+ return Colours.return_this_256_colour(__method__, i)
129
+ else
130
+ return i
131
+ end
132
+ end; def lime(i = ''); SupportFor256Colours.lime(i); end
133
+
134
+ # ========================================================================= #
135
+ # === Colours::SupportFor256Colours.yellow
136
+ # ========================================================================= #
137
+ def self.yellow(i = '')
138
+ if Colours.use_colours?
139
+ return Colours.return_this_256_colour(__method__, i)
140
+ else
141
+ return i
142
+ end
143
+ end; def yellow(i = ''); SupportFor256Colours.yellow(i); end
144
+
145
+ # ========================================================================= #
146
+ # === Colours::SupportFor256Colours.blue
147
+ # ========================================================================= #
148
+ def self.blue(i = '')
149
+ if Colours.use_colours?
150
+ return Colours.return_this_256_colour(__method__, i)
151
+ else
152
+ return i
153
+ end
154
+ end; def blue(i = ''); SupportFor256Colours.blue(i); end
155
+
156
+ # ========================================================================= #
157
+ # === Colours::SupportFor256Colours.fuchsia
158
+ # ========================================================================= #
159
+ def self.fuchsia(i = '')
160
+ if Colours.use_colours?
161
+ return Colours.return_this_256_colour(__method__, i)
162
+ else
163
+ return i
164
+ end
165
+ end; def fuchsia(i = ''); SupportFor256Colours.fuchsia(i); end
166
+
167
+ # ========================================================================= #
168
+ # === Colours::SupportFor256Colours.aqua
169
+ # ========================================================================= #
170
+ def self.aqua(i = '')
171
+ if Colours.use_colours?
172
+ return Colours.return_this_256_colour(__method__, i)
173
+ else
174
+ return i
175
+ end
176
+ end; def aqua(i = ''); SupportFor256Colours.aqua(i); end
177
+
178
+ # ========================================================================= #
179
+ # === Colours::SupportFor256Colours.white
180
+ # ========================================================================= #
181
+ def self.white(i = '')
182
+ if Colours.use_colours?
183
+ return Colours.return_this_256_colour(__method__, i)
184
+ else
185
+ return i
186
+ end
187
+ end; def white(i = ''); SupportFor256Colours.white(i); end
188
+
189
+ # ========================================================================= #
190
+ # === Colours::SupportFor256Colours.grey0
191
+ # ========================================================================= #
192
+ def self.grey0(i = '')
193
+ if Colours.use_colours?
194
+ return Colours.return_this_256_colour(__method__, i)
195
+ else
196
+ return i
197
+ end
198
+ end; def grey0(i = ''); SupportFor256Colours.grey0(i); end
199
+
200
+ # ========================================================================= #
201
+ # === Colours::SupportFor256Colours.navyblue
202
+ # ========================================================================= #
203
+ def self.navyblue(i = '')
204
+ if Colours.use_colours?
205
+ return Colours.return_this_256_colour(__method__, i)
206
+ else
207
+ return i
208
+ end
209
+ end; def navyblue(i = ''); SupportFor256Colours.navyblue(i); end
210
+
211
+ # ========================================================================= #
212
+ # === Colours::SupportFor256Colours.darkblue
213
+ # ========================================================================= #
214
+ def self.darkblue(i = '')
215
+ if Colours.use_colours?
216
+ return Colours.return_this_256_colour(__method__, i)
217
+ else
218
+ return i
219
+ end
220
+ end; def darkblue(i = ''); SupportFor256Colours.darkblue(i); end
221
+
222
+ # ========================================================================= #
223
+ # === Colours::SupportFor256Colours.blue3
224
+ # ========================================================================= #
225
+ def self.blue3(i = '')
226
+ if Colours.use_colours?
227
+ return Colours.return_this_256_colour(__method__, i)
228
+ else
229
+ return i
230
+ end
231
+ end; def blue3(i = ''); SupportFor256Colours.blue3(i); end
232
+
233
+ # ========================================================================= #
234
+ # === Colours::SupportFor256Colours.blue1
235
+ # ========================================================================= #
236
+ def self.blue1(i = '')
237
+ if Colours.use_colours?
238
+ return Colours.return_this_256_colour(__method__, i)
239
+ else
240
+ return i
241
+ end
242
+ end; def blue1(i = ''); SupportFor256Colours.blue1(i); end
243
+
244
+ # ========================================================================= #
245
+ # === Colours::SupportFor256Colours.darkgreen
246
+ # ========================================================================= #
247
+ def self.darkgreen(i = '')
248
+ if Colours.use_colours?
249
+ return Colours.return_this_256_colour(__method__, i)
250
+ else
251
+ return i
252
+ end
253
+ end; def darkgreen(i = ''); SupportFor256Colours.darkgreen(i); end
254
+
255
+ # ========================================================================= #
256
+ # === Colours::SupportFor256Colours.deepskyblue4
257
+ # ========================================================================= #
258
+ def self.deepskyblue4(i = '')
259
+ if Colours.use_colours?
260
+ return Colours.return_this_256_colour(__method__, i)
261
+ else
262
+ return i
263
+ end
264
+ end; def deepskyblue4(i = ''); SupportFor256Colours.deepskyblue4(i); end
265
+
266
+ # ========================================================================= #
267
+ # === Colours::SupportFor256Colours.dodgerblue3
268
+ # ========================================================================= #
269
+ def self.dodgerblue3(i = '')
270
+ if Colours.use_colours?
271
+ return Colours.return_this_256_colour(__method__, i)
272
+ else
273
+ return i
274
+ end
275
+ end; def dodgerblue3(i = ''); SupportFor256Colours.dodgerblue3(i); end
276
+
277
+ # ========================================================================= #
278
+ # === Colours::SupportFor256Colours.dodgerblue2
279
+ # ========================================================================= #
280
+ def self.dodgerblue2(i = '')
281
+ if Colours.use_colours?
282
+ return Colours.return_this_256_colour(__method__, i)
283
+ else
284
+ return i
285
+ end
286
+ end; def dodgerblue2(i = ''); SupportFor256Colours.dodgerblue2(i); end
287
+
288
+ # ========================================================================= #
289
+ # === Colours::SupportFor256Colours.green4
290
+ # ========================================================================= #
291
+ def self.green4(i = '')
292
+ if Colours.use_colours?
293
+ return Colours.return_this_256_colour(__method__, i)
294
+ else
295
+ return i
296
+ end
297
+ end; def green4(i = ''); SupportFor256Colours.green4(i); end
298
+
299
+ # ========================================================================= #
300
+ # === Colours::SupportFor256Colours.springgreen4
301
+ # ========================================================================= #
302
+ def self.springgreen4(i = '')
303
+ if Colours.use_colours?
304
+ return Colours.return_this_256_colour(__method__, i)
305
+ else
306
+ return i
307
+ end
308
+ end; def springgreen4(i = ''); SupportFor256Colours.springgreen4(i); end
309
+
310
+ # ========================================================================= #
311
+ # === Colours::SupportFor256Colours.turquoise4
312
+ # ========================================================================= #
313
+ def self.turquoise4(i = '')
314
+ if Colours.use_colours?
315
+ return Colours.return_this_256_colour(__method__, i)
316
+ else
317
+ return i
318
+ end
319
+ end; def turquoise4(i = ''); SupportFor256Colours.turquoise4(i); end
320
+
321
+ # ========================================================================= #
322
+ # === Colours::SupportFor256Colours.deepskyblue3
323
+ # ========================================================================= #
324
+ def self.deepskyblue3(i = '')
325
+ if Colours.use_colours?
326
+ return Colours.return_this_256_colour(__method__, i)
327
+ else
328
+ return i
329
+ end
330
+ end; def deepskyblue3(i = ''); SupportFor256Colours.deepskyblue3(i); end
331
+
332
+ # ========================================================================= #
333
+ # === Colours::SupportFor256Colours.dodgerblue1
334
+ # ========================================================================= #
335
+ def self.dodgerblue1(i = '')
336
+ if Colours.use_colours?
337
+ return Colours.return_this_256_colour(__method__, i)
338
+ else
339
+ return i
340
+ end
341
+ end; def dodgerblue1(i = ''); SupportFor256Colours.dodgerblue1(i); end
342
+
343
+ # ========================================================================= #
344
+ # === Colours::SupportFor256Colours.green3
345
+ # ========================================================================= #
346
+ def self.green3(i = '')
347
+ if Colours.use_colours?
348
+ return Colours.return_this_256_colour(__method__, i)
349
+ else
350
+ return i
351
+ end
352
+ end; def green3(i = ''); SupportFor256Colours.green3(i); end
353
+
354
+ # ========================================================================= #
355
+ # === Colours::SupportFor256Colours.springgreen3
356
+ # ========================================================================= #
357
+ def self.springgreen3(i = '')
358
+ if Colours.use_colours?
359
+ return Colours.return_this_256_colour(__method__, i)
360
+ else
361
+ return i
362
+ end
363
+ end; def springgreen3(i = ''); SupportFor256Colours.springgreen3(i); end
364
+
365
+ # ========================================================================= #
366
+ # === Colours::SupportFor256Colours.darkcyan
367
+ # ========================================================================= #
368
+ def self.darkcyan(i = '')
369
+ if Colours.use_colours?
370
+ return Colours.return_this_256_colour(__method__, i)
371
+ else
372
+ return i
373
+ end
374
+ end; def darkcyan(i = ''); SupportFor256Colours.darkcyan(i); end
375
+
376
+ # ========================================================================= #
377
+ # === Colours::SupportFor256Colours.lightseagreen
378
+ # ========================================================================= #
379
+ def self.lightseagreen(i = '')
380
+ if Colours.use_colours?
381
+ return Colours.return_this_256_colour(__method__, i)
382
+ else
383
+ return i
384
+ end
385
+ end; def lightseagreen(i = ''); SupportFor256Colours.lightseagreen(i); end
386
+
387
+ # ========================================================================= #
388
+ # === Colours::SupportFor256Colours.deepskyblue2
389
+ # ========================================================================= #
390
+ def self.deepskyblue2(i = '')
391
+ if Colours.use_colours?
392
+ return Colours.return_this_256_colour(__method__, i)
393
+ else
394
+ return i
395
+ end
396
+ end; def deepskyblue2(i = ''); SupportFor256Colours.deepskyblue2(i); end
397
+
398
+ # ========================================================================= #
399
+ # === Colours::SupportFor256Colours.deepskyblue1
400
+ # ========================================================================= #
401
+ def self.deepskyblue1(i = '')
402
+ if Colours.use_colours?
403
+ return Colours.return_this_256_colour(__method__, i)
404
+ else
405
+ return i
406
+ end
407
+ end; def deepskyblue1(i = ''); SupportFor256Colours.deepskyblue1(i); end
408
+
409
+ # ========================================================================= #
410
+ # === Colours::SupportFor256Colours.springgreen2
411
+ # ========================================================================= #
412
+ def self.springgreen2(i = '')
413
+ if Colours.use_colours?
414
+ return Colours.return_this_256_colour(__method__, i)
415
+ else
416
+ return i
417
+ end
418
+ end; def springgreen2(i = ''); SupportFor256Colours.springgreen2(i); end
419
+
420
+ # ========================================================================= #
421
+ # === Colours::SupportFor256Colours.cyan3
422
+ # ========================================================================= #
423
+ def self.cyan3(i = '')
424
+ if Colours.use_colours?
425
+ return Colours.return_this_256_colour(__method__, i)
426
+ else
427
+ return i
428
+ end
429
+ end; def cyan3(i = ''); SupportFor256Colours.cyan3(i); end
430
+
431
+ # ========================================================================= #
432
+ # === Colours::SupportFor256Colours.darkturquoise
433
+ # ========================================================================= #
434
+ def self.darkturquoise(i = '')
435
+ if Colours.use_colours?
436
+ return Colours.return_this_256_colour(__method__, i)
437
+ else
438
+ return i
439
+ end
440
+ end; def darkturquoise(i = ''); SupportFor256Colours.darkturquoise(i); end
441
+
442
+ # ========================================================================= #
443
+ # === Colours::SupportFor256Colours.turquoise2
444
+ # ========================================================================= #
445
+ def self.turquoise2(i = '')
446
+ if Colours.use_colours?
447
+ return Colours.return_this_256_colour(__method__, i)
448
+ else
449
+ return i
450
+ end
451
+ end; def turquoise2(i = ''); SupportFor256Colours.turquoise2(i); end
452
+
453
+ # ========================================================================= #
454
+ # === Colours::SupportFor256Colours.green1
455
+ # ========================================================================= #
456
+ def self.green1(i = '')
457
+ if Colours.use_colours?
458
+ return Colours.return_this_256_colour(__method__, i)
459
+ else
460
+ return i
461
+ end
462
+ end; def green1(i = ''); SupportFor256Colours.green1(i); end
463
+
464
+ # ========================================================================= #
465
+ # === Colours::SupportFor256Colours.springgreen1
466
+ # ========================================================================= #
467
+ def self.springgreen1(i = '')
468
+ if Colours.use_colours?
469
+ return Colours.return_this_256_colour(__method__, i)
470
+ else
471
+ return i
472
+ end
473
+ end; def springgreen1(i = ''); SupportFor256Colours.springgreen1(i); end
474
+
475
+ # ========================================================================= #
476
+ # === Colours::SupportFor256Colours.mediumspringgreen
477
+ # ========================================================================= #
478
+ def self.mediumspringgreen(i = '')
479
+ if Colours.use_colours?
480
+ return Colours.return_this_256_colour(__method__, i)
481
+ else
482
+ return i
483
+ end
484
+ end; def mediumspringgreen(i = ''); SupportFor256Colours.mediumspringgreen(i); end
485
+
486
+ # ========================================================================= #
487
+ # === Colours::SupportFor256Colours.cyan2
488
+ # ========================================================================= #
489
+ def self.cyan2(i = '')
490
+ if Colours.use_colours?
491
+ return Colours.return_this_256_colour(__method__, i)
492
+ else
493
+ return i
494
+ end
495
+ end; def cyan2(i = ''); SupportFor256Colours.cyan2(i); end
496
+
497
+ # ========================================================================= #
498
+ # === Colours::SupportFor256Colours.cyan1
499
+ # ========================================================================= #
500
+ def self.cyan1(i = '')
501
+ if Colours.use_colours?
502
+ return Colours.return_this_256_colour(__method__, i)
503
+ else
504
+ return i
505
+ end
506
+ end; def cyan1(i = ''); SupportFor256Colours.cyan1(i); end
507
+
508
+ # ========================================================================= #
509
+ # === Colours::SupportFor256Colours.darkred
510
+ # ========================================================================= #
511
+ def self.darkred(i = '')
512
+ if Colours.use_colours?
513
+ return Colours.return_this_256_colour(__method__, i)
514
+ else
515
+ return i
516
+ end
517
+ end; def darkred(i = ''); SupportFor256Colours.darkred(i); end
518
+
519
+ # ========================================================================= #
520
+ # === Colours::SupportFor256Colours.deeppink4
521
+ # ========================================================================= #
522
+ def self.deeppink4(i = '')
523
+ if Colours.use_colours?
524
+ return Colours.return_this_256_colour(__method__, i)
525
+ else
526
+ return i
527
+ end
528
+ end; def deeppink4(i = ''); SupportFor256Colours.deeppink4(i); end
529
+
530
+ # ========================================================================= #
531
+ # === Colours::SupportFor256Colours.purple4
532
+ # ========================================================================= #
533
+ def self.purple4(i = '')
534
+ if Colours.use_colours?
535
+ return Colours.return_this_256_colour(__method__, i)
536
+ else
537
+ return i
538
+ end
539
+ end; def purple4(i = ''); SupportFor256Colours.purple4(i); end
540
+
541
+ # ========================================================================= #
542
+ # === Colours::SupportFor256Colours.purple3
543
+ # ========================================================================= #
544
+ def self.purple3(i = '')
545
+ if Colours.use_colours?
546
+ return Colours.return_this_256_colour(__method__, i)
547
+ else
548
+ return i
549
+ end
550
+ end; def purple3(i = ''); SupportFor256Colours.purple3(i); end
551
+
552
+ # ========================================================================= #
553
+ # === Colours::SupportFor256Colours.blueviolet
554
+ # ========================================================================= #
555
+ def self.blueviolet(i = '')
556
+ if Colours.use_colours?
557
+ return Colours.return_this_256_colour(__method__, i)
558
+ else
559
+ return i
560
+ end
561
+ end; def blueviolet(i = ''); SupportFor256Colours.blueviolet(i); end
562
+
563
+ # ========================================================================= #
564
+ # === Colours::SupportFor256Colours.orange4
565
+ # ========================================================================= #
566
+ def self.orange4(i = '')
567
+ if Colours.use_colours?
568
+ return Colours.return_this_256_colour(__method__, i)
569
+ else
570
+ return i
571
+ end
572
+ end; def orange4(i = ''); SupportFor256Colours.orange4(i); end
573
+
574
+ # ========================================================================= #
575
+ # === Colours::SupportFor256Colours.grey37
576
+ # ========================================================================= #
577
+ def self.grey37(i = '')
578
+ if Colours.use_colours?
579
+ return Colours.return_this_256_colour(__method__, i)
580
+ else
581
+ return i
582
+ end
583
+ end; def grey37(i = ''); SupportFor256Colours.grey37(i); end
584
+
585
+ # ========================================================================= #
586
+ # === Colours::SupportFor256Colours.mediumpurple4
587
+ # ========================================================================= #
588
+ def self.mediumpurple4(i = '')
589
+ if Colours.use_colours?
590
+ return Colours.return_this_256_colour(__method__, i)
591
+ else
592
+ return i
593
+ end
594
+ end; def mediumpurple4(i = ''); SupportFor256Colours.mediumpurple4(i); end
595
+
596
+ # ========================================================================= #
597
+ # === Colours::SupportFor256Colours.slateblue3
598
+ # ========================================================================= #
599
+ def self.slateblue3(i = '')
600
+ if Colours.use_colours?
601
+ return Colours.return_this_256_colour(__method__, i)
602
+ else
603
+ return i
604
+ end
605
+ end; def slateblue3(i = ''); SupportFor256Colours.slateblue3(i); end
606
+
607
+ # ========================================================================= #
608
+ # === Colours::SupportFor256Colours.royalblue1
609
+ # ========================================================================= #
610
+ def self.royalblue1(i = '')
611
+ if Colours.use_colours?
612
+ return Colours.return_this_256_colour(__method__, i)
613
+ else
614
+ return i
615
+ end
616
+ end; def royalblue1(i = ''); SupportFor256Colours.royalblue1(i); end
617
+
618
+ # ========================================================================= #
619
+ # === Colours::SupportFor256Colours.chartreuse4
620
+ # ========================================================================= #
621
+ def self.chartreuse4(i = '')
622
+ if Colours.use_colours?
623
+ return Colours.return_this_256_colour(__method__, i)
624
+ else
625
+ return i
626
+ end
627
+ end; def chartreuse4(i = ''); SupportFor256Colours.chartreuse4(i); end
628
+
629
+ # ========================================================================= #
630
+ # === Colours::SupportFor256Colours.darkseagreen4
631
+ # ========================================================================= #
632
+ def self.darkseagreen4(i = '')
633
+ if Colours.use_colours?
634
+ return Colours.return_this_256_colour(__method__, i)
635
+ else
636
+ return i
637
+ end
638
+ end; def darkseagreen4(i = ''); SupportFor256Colours.darkseagreen4(i); end
639
+
640
+ # ========================================================================= #
641
+ # === Colours::SupportFor256Colours.paleturquoise4
642
+ # ========================================================================= #
643
+ def self.paleturquoise4(i = '')
644
+ if Colours.use_colours?
645
+ return Colours.return_this_256_colour(__method__, i)
646
+ else
647
+ return i
648
+ end
649
+ end; def paleturquoise4(i = ''); SupportFor256Colours.paleturquoise4(i); end
650
+
651
+ # ========================================================================= #
652
+ # === Colours::SupportFor256Colours.steelblue
653
+ # ========================================================================= #
654
+ def self.steelblue(i = '')
655
+ if Colours.use_colours?
656
+ return Colours.return_this_256_colour(__method__, i)
657
+ else
658
+ return i
659
+ end
660
+ end; def steelblue(i = ''); SupportFor256Colours.steelblue(i); end
661
+
662
+ # ========================================================================= #
663
+ # === Colours::SupportFor256Colours.steelblue3
664
+ # ========================================================================= #
665
+ def self.steelblue3(i = '')
666
+ if Colours.use_colours?
667
+ return Colours.return_this_256_colour(__method__, i)
668
+ else
669
+ return i
670
+ end
671
+ end; def steelblue3(i = ''); SupportFor256Colours.steelblue3(i); end
672
+
673
+ # ========================================================================= #
674
+ # === Colours::SupportFor256Colours.cornflowerblue
675
+ # ========================================================================= #
676
+ def self.cornflowerblue(i = '')
677
+ if Colours.use_colours?
678
+ return Colours.return_this_256_colour(__method__, i)
679
+ else
680
+ return i
681
+ end
682
+ end; def cornflowerblue(i = ''); SupportFor256Colours.cornflowerblue(i); end
683
+
684
+ # ========================================================================= #
685
+ # === Colours::SupportFor256Colours.chartreuse3
686
+ # ========================================================================= #
687
+ def self.chartreuse3(i = '')
688
+ if Colours.use_colours?
689
+ return Colours.return_this_256_colour(__method__, i)
690
+ else
691
+ return i
692
+ end
693
+ end; def chartreuse3(i = ''); SupportFor256Colours.chartreuse3(i); end
694
+
695
+ # ========================================================================= #
696
+ # === Colours::SupportFor256Colours.cadetblue
697
+ # ========================================================================= #
698
+ def self.cadetblue(i = '')
699
+ if Colours.use_colours?
700
+ return Colours.return_this_256_colour(__method__, i)
701
+ else
702
+ return i
703
+ end
704
+ end; def cadetblue(i = ''); SupportFor256Colours.cadetblue(i); end
705
+
706
+ # ========================================================================= #
707
+ # === Colours::SupportFor256Colours.skyblue3
708
+ # ========================================================================= #
709
+ def self.skyblue3(i = '')
710
+ if Colours.use_colours?
711
+ return Colours.return_this_256_colour(__method__, i)
712
+ else
713
+ return i
714
+ end
715
+ end; def skyblue3(i = ''); SupportFor256Colours.skyblue3(i); end
716
+
717
+ # ========================================================================= #
718
+ # === Colours::SupportFor256Colours.steelblue1
719
+ # ========================================================================= #
720
+ def self.steelblue1(i = '')
721
+ if Colours.use_colours?
722
+ return Colours.return_this_256_colour(__method__, i)
723
+ else
724
+ return i
725
+ end
726
+ end; def steelblue1(i = ''); SupportFor256Colours.steelblue1(i); end
727
+
728
+ # ========================================================================= #
729
+ # === Colours::SupportFor256Colours.palegreen3
730
+ # ========================================================================= #
731
+ def self.palegreen3(i = '')
732
+ if Colours.use_colours?
733
+ return Colours.return_this_256_colour(__method__, i)
734
+ else
735
+ return i
736
+ end
737
+ end; def palegreen3(i = ''); SupportFor256Colours.palegreen3(i); end
738
+
739
+ # ========================================================================= #
740
+ # === Colours::SupportFor256Colours.seagreen3
741
+ # ========================================================================= #
742
+ def self.seagreen3(i = '')
743
+ if Colours.use_colours?
744
+ return Colours.return_this_256_colour(__method__, i)
745
+ else
746
+ return i
747
+ end
748
+ end; def seagreen3(i = ''); SupportFor256Colours.seagreen3(i); end
749
+
750
+ # ========================================================================= #
751
+ # === Colours::SupportFor256Colours.aquamarine3
752
+ # ========================================================================= #
753
+ def self.aquamarine3(i = '')
754
+ if Colours.use_colours?
755
+ return Colours.return_this_256_colour(__method__, i)
756
+ else
757
+ return i
758
+ end
759
+ end; def aquamarine3(i = ''); SupportFor256Colours.aquamarine3(i); end
760
+
761
+ # ========================================================================= #
762
+ # === Colours::SupportFor256Colours.mediumturquoise
763
+ # ========================================================================= #
764
+ def self.mediumturquoise(i = '')
765
+ if Colours.use_colours?
766
+ return Colours.return_this_256_colour(__method__, i)
767
+ else
768
+ return i
769
+ end
770
+ end; def mediumturquoise(i = ''); SupportFor256Colours.mediumturquoise(i); end
771
+
772
+ # ========================================================================= #
773
+ # === Colours::SupportFor256Colours.chartreuse2
774
+ # ========================================================================= #
775
+ def self.chartreuse2(i = '')
776
+ if Colours.use_colours?
777
+ return Colours.return_this_256_colour(__method__, i)
778
+ else
779
+ return i
780
+ end
781
+ end; def chartreuse2(i = ''); SupportFor256Colours.chartreuse2(i); end
782
+
783
+ # ========================================================================= #
784
+ # === Colours::SupportFor256Colours.seagreen2
785
+ # ========================================================================= #
786
+ def self.seagreen2(i = '')
787
+ if Colours.use_colours?
788
+ return Colours.return_this_256_colour(__method__, i)
789
+ else
790
+ return i
791
+ end
792
+ end; def seagreen2(i = ''); SupportFor256Colours.seagreen2(i); end
793
+
794
+ # ========================================================================= #
795
+ # === Colours::SupportFor256Colours.seagreen1
796
+ # ========================================================================= #
797
+ def self.seagreen1(i = '')
798
+ if Colours.use_colours?
799
+ return Colours.return_this_256_colour(__method__, i)
800
+ else
801
+ return i
802
+ end
803
+ end; def seagreen1(i = ''); SupportFor256Colours.seagreen1(i); end
804
+
805
+ # ========================================================================= #
806
+ # === Colours::SupportFor256Colours.aquamarine1
807
+ # ========================================================================= #
808
+ def self.aquamarine1(i = '')
809
+ if Colours.use_colours?
810
+ return Colours.return_this_256_colour(__method__, i)
811
+ else
812
+ return i
813
+ end
814
+ end; def aquamarine1(i = ''); SupportFor256Colours.aquamarine1(i); end
815
+
816
+ # ========================================================================= #
817
+ # === Colours::SupportFor256Colours.darkslategray2
818
+ # ========================================================================= #
819
+ def self.darkslategray2(i = '')
820
+ if Colours.use_colours?
821
+ return Colours.return_this_256_colour(__method__, i)
822
+ else
823
+ return i
824
+ end
825
+ end; def darkslategray2(i = ''); SupportFor256Colours.darkslategray2(i); end
826
+
827
+ # ========================================================================= #
828
+ # === Colours::SupportFor256Colours.darkmagenta
829
+ # ========================================================================= #
830
+ def self.darkmagenta(i = '')
831
+ if Colours.use_colours?
832
+ return Colours.return_this_256_colour(__method__, i)
833
+ else
834
+ return i
835
+ end
836
+ end; def darkmagenta(i = ''); SupportFor256Colours.darkmagenta(i); end
837
+
838
+ # ========================================================================= #
839
+ # === Colours::SupportFor256Colours.darkviolet
840
+ # ========================================================================= #
841
+ def self.darkviolet(i = '')
842
+ if Colours.use_colours?
843
+ return Colours.return_this_256_colour(__method__, i)
844
+ else
845
+ return i
846
+ end
847
+ end; def darkviolet(i = ''); SupportFor256Colours.darkviolet(i); end
848
+
849
+ # ========================================================================= #
850
+ # === Colours::SupportFor256Colours.lightpink4
851
+ # ========================================================================= #
852
+ def self.lightpink4(i = '')
853
+ if Colours.use_colours?
854
+ return Colours.return_this_256_colour(__method__, i)
855
+ else
856
+ return i
857
+ end
858
+ end; def lightpink4(i = ''); SupportFor256Colours.lightpink4(i); end
859
+
860
+ # ========================================================================= #
861
+ # === Colours::SupportFor256Colours.plum4
862
+ # ========================================================================= #
863
+ def self.plum4(i = '')
864
+ if Colours.use_colours?
865
+ return Colours.return_this_256_colour(__method__, i)
866
+ else
867
+ return i
868
+ end
869
+ end; def plum4(i = ''); SupportFor256Colours.plum4(i); end
870
+
871
+ # ========================================================================= #
872
+ # === Colours::SupportFor256Colours.mediumpurple3
873
+ # ========================================================================= #
874
+ def self.mediumpurple3(i = '')
875
+ if Colours.use_colours?
876
+ return Colours.return_this_256_colour(__method__, i)
877
+ else
878
+ return i
879
+ end
880
+ end; def mediumpurple3(i = ''); SupportFor256Colours.mediumpurple3(i); end
881
+
882
+ # ========================================================================= #
883
+ # === Colours::SupportFor256Colours.slateblue1
884
+ # ========================================================================= #
885
+ def self.slateblue1(i = '')
886
+ if Colours.use_colours?
887
+ return Colours.return_this_256_colour(__method__, i)
888
+ else
889
+ return i
890
+ end
891
+ end; def slateblue1(i = ''); SupportFor256Colours.slateblue1(i); end
892
+
893
+ # ========================================================================= #
894
+ # === Colours::SupportFor256Colours.yellow4
895
+ # ========================================================================= #
896
+ def self.yellow4(i = '')
897
+ if Colours.use_colours?
898
+ return Colours.return_this_256_colour(__method__, i)
899
+ else
900
+ return i
901
+ end
902
+ end; def yellow4(i = ''); SupportFor256Colours.yellow4(i); end
903
+
904
+ # ========================================================================= #
905
+ # === Colours::SupportFor256Colours.wheat4
906
+ # ========================================================================= #
907
+ def self.wheat4(i = '')
908
+ if Colours.use_colours?
909
+ return Colours.return_this_256_colour(__method__, i)
910
+ else
911
+ return i
912
+ end
913
+ end; def wheat4(i = ''); SupportFor256Colours.wheat4(i); end
914
+
915
+ # ========================================================================= #
916
+ # === Colours::SupportFor256Colours.grey53
917
+ # ========================================================================= #
918
+ def self.grey53(i = '')
919
+ if Colours.use_colours?
920
+ return Colours.return_this_256_colour(__method__, i)
921
+ else
922
+ return i
923
+ end
924
+ end; def grey53(i = ''); SupportFor256Colours.grey53(i); end
925
+
926
+ # ========================================================================= #
927
+ # === Colours::SupportFor256Colours.lightslategrey
928
+ # ========================================================================= #
929
+ def self.lightslategrey(i = '')
930
+ if Colours.use_colours?
931
+ return Colours.return_this_256_colour(__method__, i)
932
+ else
933
+ return i
934
+ end
935
+ end; def lightslategrey(i = ''); SupportFor256Colours.lightslategrey(i); end
936
+
937
+ # ========================================================================= #
938
+ # === Colours::SupportFor256Colours.mediumpurple
939
+ # ========================================================================= #
940
+ def self.mediumpurple(i = '')
941
+ if Colours.use_colours?
942
+ return Colours.return_this_256_colour(__method__, i)
943
+ else
944
+ return i
945
+ end
946
+ end; def mediumpurple(i = ''); SupportFor256Colours.mediumpurple(i); end
947
+
948
+ # ========================================================================= #
949
+ # === Colours::SupportFor256Colours.lightslateblue
950
+ # ========================================================================= #
951
+ def self.lightslateblue(i = '')
952
+ if Colours.use_colours?
953
+ return Colours.return_this_256_colour(__method__, i)
954
+ else
955
+ return i
956
+ end
957
+ end; def lightslateblue(i = ''); SupportFor256Colours.lightslateblue(i); end
958
+
959
+ # ========================================================================= #
960
+ # === Colours::SupportFor256Colours.darkolivegreen3
961
+ # ========================================================================= #
962
+ def self.darkolivegreen3(i = '')
963
+ if Colours.use_colours?
964
+ return Colours.return_this_256_colour(__method__, i)
965
+ else
966
+ return i
967
+ end
968
+ end; def darkolivegreen3(i = ''); SupportFor256Colours.darkolivegreen3(i); end
969
+
970
+ # ========================================================================= #
971
+ # === Colours::SupportFor256Colours.darkseagreen
972
+ # ========================================================================= #
973
+ def self.darkseagreen(i = '')
974
+ if Colours.use_colours?
975
+ return Colours.return_this_256_colour(__method__, i)
976
+ else
977
+ return i
978
+ end
979
+ end; def darkseagreen(i = ''); SupportFor256Colours.darkseagreen(i); end
980
+
981
+ # ========================================================================= #
982
+ # === Colours::SupportFor256Colours.lightskyblue3
983
+ # ========================================================================= #
984
+ def self.lightskyblue3(i = '')
985
+ if Colours.use_colours?
986
+ return Colours.return_this_256_colour(__method__, i)
987
+ else
988
+ return i
989
+ end
990
+ end; def lightskyblue3(i = ''); SupportFor256Colours.lightskyblue3(i); end
991
+
992
+ # ========================================================================= #
993
+ # === Colours::SupportFor256Colours.skyblue2
994
+ # ========================================================================= #
995
+ def self.skyblue2(i = '')
996
+ if Colours.use_colours?
997
+ return Colours.return_this_256_colour(__method__, i)
998
+ else
999
+ return i
1000
+ end
1001
+ end; def skyblue2(i = ''); SupportFor256Colours.skyblue2(i); end
1002
+
1003
+ # ========================================================================= #
1004
+ # === Colours::SupportFor256Colours.darkseagreen3
1005
+ # ========================================================================= #
1006
+ def self.darkseagreen3(i = '')
1007
+ if Colours.use_colours?
1008
+ return Colours.return_this_256_colour(__method__, i)
1009
+ else
1010
+ return i
1011
+ end
1012
+ end; def darkseagreen3(i = ''); SupportFor256Colours.darkseagreen3(i); end
1013
+
1014
+ # ========================================================================= #
1015
+ # === Colours::SupportFor256Colours.darkslategray3
1016
+ # ========================================================================= #
1017
+ def self.darkslategray3(i = '')
1018
+ if Colours.use_colours?
1019
+ return Colours.return_this_256_colour(__method__, i)
1020
+ else
1021
+ return i
1022
+ end
1023
+ end; def darkslategray3(i = ''); SupportFor256Colours.darkslategray3(i); end
1024
+
1025
+ # ========================================================================= #
1026
+ # === Colours::SupportFor256Colours.skyblue1
1027
+ # ========================================================================= #
1028
+ def self.skyblue1(i = '')
1029
+ if Colours.use_colours?
1030
+ return Colours.return_this_256_colour(__method__, i)
1031
+ else
1032
+ return i
1033
+ end
1034
+ end; def skyblue1(i = ''); SupportFor256Colours.skyblue1(i); end
1035
+
1036
+ # ========================================================================= #
1037
+ # === Colours::SupportFor256Colours.chartreuse1
1038
+ # ========================================================================= #
1039
+ def self.chartreuse1(i = '')
1040
+ if Colours.use_colours?
1041
+ return Colours.return_this_256_colour(__method__, i)
1042
+ else
1043
+ return i
1044
+ end
1045
+ end; def chartreuse1(i = ''); SupportFor256Colours.chartreuse1(i); end
1046
+
1047
+ # ========================================================================= #
1048
+ # === Colours::SupportFor256Colours.lightgreen
1049
+ # ========================================================================= #
1050
+ def self.lightgreen(i = '')
1051
+ if Colours.use_colours?
1052
+ return Colours.return_this_256_colour(__method__, i)
1053
+ else
1054
+ return i
1055
+ end
1056
+ end; def lightgreen(i = ''); SupportFor256Colours.lightgreen(i); end
1057
+
1058
+ # ========================================================================= #
1059
+ # === Colours::SupportFor256Colours.palegreen1
1060
+ # ========================================================================= #
1061
+ def self.palegreen1(i = '')
1062
+ if Colours.use_colours?
1063
+ return Colours.return_this_256_colour(__method__, i)
1064
+ else
1065
+ return i
1066
+ end
1067
+ end; def palegreen1(i = ''); SupportFor256Colours.palegreen1(i); end
1068
+
1069
+ # ========================================================================= #
1070
+ # === Colours::SupportFor256Colours.darkslategray1
1071
+ # ========================================================================= #
1072
+ def self.darkslategray1(i = '')
1073
+ if Colours.use_colours?
1074
+ return Colours.return_this_256_colour(__method__, i)
1075
+ else
1076
+ return i
1077
+ end
1078
+ end; def darkslategray1(i = ''); SupportFor256Colours.darkslategray1(i); end
1079
+
1080
+ # ========================================================================= #
1081
+ # === Colours::SupportFor256Colours.red3
1082
+ # ========================================================================= #
1083
+ def self.red3(i = '')
1084
+ if Colours.use_colours?
1085
+ return Colours.return_this_256_colour(__method__, i)
1086
+ else
1087
+ return i
1088
+ end
1089
+ end; def red3(i = ''); SupportFor256Colours.red3(i); end
1090
+
1091
+ # ========================================================================= #
1092
+ # === Colours::SupportFor256Colours.mediumvioletred
1093
+ # ========================================================================= #
1094
+ def self.mediumvioletred(i = '')
1095
+ if Colours.use_colours?
1096
+ return Colours.return_this_256_colour(__method__, i)
1097
+ else
1098
+ return i
1099
+ end
1100
+ end; def mediumvioletred(i = ''); SupportFor256Colours.mediumvioletred(i); end
1101
+
1102
+ # ========================================================================= #
1103
+ # === Colours::SupportFor256Colours.magenta3
1104
+ # ========================================================================= #
1105
+ def self.magenta3(i = '')
1106
+ if Colours.use_colours?
1107
+ return Colours.return_this_256_colour(__method__, i)
1108
+ else
1109
+ return i
1110
+ end
1111
+ end; def magenta3(i = ''); SupportFor256Colours.magenta3(i); end
1112
+
1113
+ # ========================================================================= #
1114
+ # === Colours::SupportFor256Colours.darkorange3
1115
+ # ========================================================================= #
1116
+ def self.darkorange3(i = '')
1117
+ if Colours.use_colours?
1118
+ return Colours.return_this_256_colour(__method__, i)
1119
+ else
1120
+ return i
1121
+ end
1122
+ end; def darkorange3(i = ''); SupportFor256Colours.darkorange3(i); end
1123
+
1124
+ # ========================================================================= #
1125
+ # === Colours::SupportFor256Colours.indianred
1126
+ # ========================================================================= #
1127
+ def self.indianred(i = '')
1128
+ if Colours.use_colours?
1129
+ return Colours.return_this_256_colour(__method__, i)
1130
+ else
1131
+ return i
1132
+ end
1133
+ end; def indianred(i = ''); SupportFor256Colours.indianred(i); end
1134
+
1135
+ # ========================================================================= #
1136
+ # === Colours::SupportFor256Colours.hotpink3
1137
+ # ========================================================================= #
1138
+ def self.hotpink3(i = '')
1139
+ if Colours.use_colours?
1140
+ return Colours.return_this_256_colour(__method__, i)
1141
+ else
1142
+ return i
1143
+ end
1144
+ end; def hotpink3(i = ''); SupportFor256Colours.hotpink3(i); end
1145
+
1146
+ # ========================================================================= #
1147
+ # === Colours::SupportFor256Colours.mediumorchid3
1148
+ # ========================================================================= #
1149
+ def self.mediumorchid3(i = '')
1150
+ if Colours.use_colours?
1151
+ return Colours.return_this_256_colour(__method__, i)
1152
+ else
1153
+ return i
1154
+ end
1155
+ end; def mediumorchid3(i = ''); SupportFor256Colours.mediumorchid3(i); end
1156
+
1157
+ # ========================================================================= #
1158
+ # === Colours::SupportFor256Colours.mediumorchid
1159
+ # ========================================================================= #
1160
+ def self.mediumorchid(i = '')
1161
+ if Colours.use_colours?
1162
+ return Colours.return_this_256_colour(__method__, i)
1163
+ else
1164
+ return i
1165
+ end
1166
+ end; def mediumorchid(i = ''); SupportFor256Colours.mediumorchid(i); end
1167
+
1168
+ # ========================================================================= #
1169
+ # === Colours::SupportFor256Colours.mediumpurple2
1170
+ # ========================================================================= #
1171
+ def self.mediumpurple2(i = '')
1172
+ if Colours.use_colours?
1173
+ return Colours.return_this_256_colour(__method__, i)
1174
+ else
1175
+ return i
1176
+ end
1177
+ end; def mediumpurple2(i = ''); SupportFor256Colours.mediumpurple2(i); end
1178
+
1179
+ # ========================================================================= #
1180
+ # === Colours::SupportFor256Colours.darkgoldenrod
1181
+ # ========================================================================= #
1182
+ def self.darkgoldenrod(i = '')
1183
+ if Colours.use_colours?
1184
+ return Colours.return_this_256_colour(__method__, i)
1185
+ else
1186
+ return i
1187
+ end
1188
+ end; def darkgoldenrod(i = ''); SupportFor256Colours.darkgoldenrod(i); end
1189
+
1190
+ # ========================================================================= #
1191
+ # === Colours::SupportFor256Colours.lightsalmon3
1192
+ # ========================================================================= #
1193
+ def self.lightsalmon3(i = '')
1194
+ if Colours.use_colours?
1195
+ return Colours.return_this_256_colour(__method__, i)
1196
+ else
1197
+ return i
1198
+ end
1199
+ end; def lightsalmon3(i = ''); SupportFor256Colours.lightsalmon3(i); end
1200
+
1201
+ # ========================================================================= #
1202
+ # === Colours::SupportFor256Colours.rosybrown
1203
+ # ========================================================================= #
1204
+ def self.rosybrown(i = '')
1205
+ if Colours.use_colours?
1206
+ return Colours.return_this_256_colour(__method__, i)
1207
+ else
1208
+ return i
1209
+ end
1210
+ end; def rosybrown(i = ''); SupportFor256Colours.rosybrown(i); end
1211
+
1212
+ # ========================================================================= #
1213
+ # === Colours::SupportFor256Colours.grey63
1214
+ # ========================================================================= #
1215
+ def self.grey63(i = '')
1216
+ if Colours.use_colours?
1217
+ return Colours.return_this_256_colour(__method__, i)
1218
+ else
1219
+ return i
1220
+ end
1221
+ end; def grey63(i = ''); SupportFor256Colours.grey63(i); end
1222
+
1223
+ # ========================================================================= #
1224
+ # === Colours::SupportFor256Colours.mediumpurple1
1225
+ # ========================================================================= #
1226
+ def self.mediumpurple1(i = '')
1227
+ if Colours.use_colours?
1228
+ return Colours.return_this_256_colour(__method__, i)
1229
+ else
1230
+ return i
1231
+ end
1232
+ end; def mediumpurple1(i = ''); SupportFor256Colours.mediumpurple1(i); end
1233
+
1234
+ # ========================================================================= #
1235
+ # === Colours::SupportFor256Colours.gold3
1236
+ # ========================================================================= #
1237
+ def self.gold3(i = '')
1238
+ if Colours.use_colours?
1239
+ return Colours.return_this_256_colour(__method__, i)
1240
+ else
1241
+ return i
1242
+ end
1243
+ end; def gold3(i = ''); SupportFor256Colours.gold3(i); end
1244
+
1245
+ # ========================================================================= #
1246
+ # === Colours::SupportFor256Colours.darkkhaki
1247
+ # ========================================================================= #
1248
+ def self.darkkhaki(i = '')
1249
+ if Colours.use_colours?
1250
+ return Colours.return_this_256_colour(__method__, i)
1251
+ else
1252
+ return i
1253
+ end
1254
+ end; def darkkhaki(i = ''); SupportFor256Colours.darkkhaki(i); end
1255
+
1256
+ # ========================================================================= #
1257
+ # === Colours::SupportFor256Colours.navajowhite3
1258
+ # ========================================================================= #
1259
+ def self.navajowhite3(i = '')
1260
+ if Colours.use_colours?
1261
+ return Colours.return_this_256_colour(__method__, i)
1262
+ else
1263
+ return i
1264
+ end
1265
+ end; def navajowhite3(i = ''); SupportFor256Colours.navajowhite3(i); end
1266
+
1267
+ # ========================================================================= #
1268
+ # === Colours::SupportFor256Colours.grey69
1269
+ # ========================================================================= #
1270
+ def self.grey69(i = '')
1271
+ if Colours.use_colours?
1272
+ return Colours.return_this_256_colour(__method__, i)
1273
+ else
1274
+ return i
1275
+ end
1276
+ end; def grey69(i = ''); SupportFor256Colours.grey69(i); end
1277
+
1278
+ # ========================================================================= #
1279
+ # === Colours::SupportFor256Colours.lightsteelblue3
1280
+ # ========================================================================= #
1281
+ def self.lightsteelblue3(i = '')
1282
+ if Colours.use_colours?
1283
+ return Colours.return_this_256_colour(__method__, i)
1284
+ else
1285
+ return i
1286
+ end
1287
+ end; def lightsteelblue3(i = ''); SupportFor256Colours.lightsteelblue3(i); end
1288
+
1289
+ # ========================================================================= #
1290
+ # === Colours::SupportFor256Colours.lightsteelblue
1291
+ # ========================================================================= #
1292
+ def self.lightsteelblue(i = '')
1293
+ if Colours.use_colours?
1294
+ return Colours.return_this_256_colour(__method__, i)
1295
+ else
1296
+ return i
1297
+ end
1298
+ end; def lightsteelblue(i = ''); SupportFor256Colours.lightsteelblue(i); end
1299
+
1300
+ # ========================================================================= #
1301
+ # === Colours::SupportFor256Colours.yellow3
1302
+ # ========================================================================= #
1303
+ def self.yellow3(i = '')
1304
+ if Colours.use_colours?
1305
+ return Colours.return_this_256_colour(__method__, i)
1306
+ else
1307
+ return i
1308
+ end
1309
+ end; def yellow3(i = ''); SupportFor256Colours.yellow3(i); end
1310
+
1311
+ # ========================================================================= #
1312
+ # === Colours::SupportFor256Colours.darkseagreen2
1313
+ # ========================================================================= #
1314
+ def self.darkseagreen2(i = '')
1315
+ if Colours.use_colours?
1316
+ return Colours.return_this_256_colour(__method__, i)
1317
+ else
1318
+ return i
1319
+ end
1320
+ end; def darkseagreen2(i = ''); SupportFor256Colours.darkseagreen2(i); end
1321
+
1322
+ # ========================================================================= #
1323
+ # === Colours::SupportFor256Colours.lightcyan3
1324
+ # ========================================================================= #
1325
+ def self.lightcyan3(i = '')
1326
+ if Colours.use_colours?
1327
+ return Colours.return_this_256_colour(__method__, i)
1328
+ else
1329
+ return i
1330
+ end
1331
+ end; def lightcyan3(i = ''); SupportFor256Colours.lightcyan3(i); end
1332
+
1333
+ # ========================================================================= #
1334
+ # === Colours::SupportFor256Colours.lightskyblue1
1335
+ # ========================================================================= #
1336
+ def self.lightskyblue1(i = '')
1337
+ if Colours.use_colours?
1338
+ return Colours.return_this_256_colour(__method__, i)
1339
+ else
1340
+ return i
1341
+ end
1342
+ end; def lightskyblue1(i = ''); SupportFor256Colours.lightskyblue1(i); end
1343
+
1344
+ # ========================================================================= #
1345
+ # === Colours::SupportFor256Colours.greenyellow
1346
+ # ========================================================================= #
1347
+ def self.greenyellow(i = '')
1348
+ if Colours.use_colours?
1349
+ return Colours.return_this_256_colour(__method__, i)
1350
+ else
1351
+ return i
1352
+ end
1353
+ end; def greenyellow(i = ''); SupportFor256Colours.greenyellow(i); end
1354
+
1355
+ # ========================================================================= #
1356
+ # === Colours::SupportFor256Colours.darkolivegreen2
1357
+ # ========================================================================= #
1358
+ def self.darkolivegreen2(i = '')
1359
+ if Colours.use_colours?
1360
+ return Colours.return_this_256_colour(__method__, i)
1361
+ else
1362
+ return i
1363
+ end
1364
+ end; def darkolivegreen2(i = ''); SupportFor256Colours.darkolivegreen2(i); end
1365
+
1366
+ # ========================================================================= #
1367
+ # === Colours::SupportFor256Colours.darkseagreen1
1368
+ # ========================================================================= #
1369
+ def self.darkseagreen1(i = '')
1370
+ if Colours.use_colours?
1371
+ return Colours.return_this_256_colour(__method__, i)
1372
+ else
1373
+ return i
1374
+ end
1375
+ end; def darkseagreen1(i = ''); SupportFor256Colours.darkseagreen1(i); end
1376
+
1377
+ # ========================================================================= #
1378
+ # === Colours::SupportFor256Colours.paleturquoise1
1379
+ # ========================================================================= #
1380
+ def self.paleturquoise1(i = '')
1381
+ if Colours.use_colours?
1382
+ return Colours.return_this_256_colour(__method__, i)
1383
+ else
1384
+ return i
1385
+ end
1386
+ end; def paleturquoise1(i = ''); SupportFor256Colours.paleturquoise1(i); end
1387
+
1388
+ # ========================================================================= #
1389
+ # === Colours::SupportFor256Colours.deeppink3
1390
+ # ========================================================================= #
1391
+ def self.deeppink3(i = '')
1392
+ if Colours.use_colours?
1393
+ return Colours.return_this_256_colour(__method__, i)
1394
+ else
1395
+ return i
1396
+ end
1397
+ end; def deeppink3(i = ''); SupportFor256Colours.deeppink3(i); end
1398
+
1399
+ # ========================================================================= #
1400
+ # === Colours::SupportFor256Colours.magenta2
1401
+ # ========================================================================= #
1402
+ def self.magenta2(i = '')
1403
+ if Colours.use_colours?
1404
+ return Colours.return_this_256_colour(__method__, i)
1405
+ else
1406
+ return i
1407
+ end
1408
+ end; def magenta2(i = ''); SupportFor256Colours.magenta2(i); end
1409
+
1410
+ # ========================================================================= #
1411
+ # === Colours::SupportFor256Colours.hotpink2
1412
+ # ========================================================================= #
1413
+ def self.hotpink2(i = '')
1414
+ if Colours.use_colours?
1415
+ return Colours.return_this_256_colour(__method__, i)
1416
+ else
1417
+ return i
1418
+ end
1419
+ end; def hotpink2(i = ''); SupportFor256Colours.hotpink2(i); end
1420
+
1421
+ # ========================================================================= #
1422
+ # === Colours::SupportFor256Colours.orchid
1423
+ # ========================================================================= #
1424
+ def self.orchid(i = '')
1425
+ if Colours.use_colours?
1426
+ return Colours.return_this_256_colour(__method__, i)
1427
+ else
1428
+ return i
1429
+ end
1430
+ end; def orchid(i = ''); SupportFor256Colours.orchid(i); end
1431
+
1432
+ # ========================================================================= #
1433
+ # === Colours::SupportFor256Colours.mediumorchid1
1434
+ # ========================================================================= #
1435
+ def self.mediumorchid1(i = '')
1436
+ if Colours.use_colours?
1437
+ return Colours.return_this_256_colour(__method__, i)
1438
+ else
1439
+ return i
1440
+ end
1441
+ end; def mediumorchid1(i = ''); SupportFor256Colours.mediumorchid1(i); end
1442
+
1443
+ # ========================================================================= #
1444
+ # === Colours::SupportFor256Colours.orange3
1445
+ # ========================================================================= #
1446
+ def self.orange3(i = '')
1447
+ if Colours.use_colours?
1448
+ return Colours.return_this_256_colour(__method__, i)
1449
+ else
1450
+ return i
1451
+ end
1452
+ end; def orange3(i = ''); SupportFor256Colours.orange3(i); end
1453
+
1454
+ # ========================================================================= #
1455
+ # === Colours::SupportFor256Colours.lightpink3
1456
+ # ========================================================================= #
1457
+ def self.lightpink3(i = '')
1458
+ if Colours.use_colours?
1459
+ return Colours.return_this_256_colour(__method__, i)
1460
+ else
1461
+ return i
1462
+ end
1463
+ end; def lightpink3(i = ''); SupportFor256Colours.lightpink3(i); end
1464
+
1465
+ # ========================================================================= #
1466
+ # === Colours::SupportFor256Colours.pink3
1467
+ # ========================================================================= #
1468
+ def self.pink3(i = '')
1469
+ if Colours.use_colours?
1470
+ return Colours.return_this_256_colour(__method__, i)
1471
+ else
1472
+ return i
1473
+ end
1474
+ end; def pink3(i = ''); SupportFor256Colours.pink3(i); end
1475
+
1476
+ # ========================================================================= #
1477
+ # === Colours::SupportFor256Colours.plum3
1478
+ # ========================================================================= #
1479
+ def self.plum3(i = '')
1480
+ if Colours.use_colours?
1481
+ return Colours.return_this_256_colour(__method__, i)
1482
+ else
1483
+ return i
1484
+ end
1485
+ end; def plum3(i = ''); SupportFor256Colours.plum3(i); end
1486
+
1487
+ # ========================================================================= #
1488
+ # === Colours::SupportFor256Colours.violet
1489
+ # ========================================================================= #
1490
+ def self.violet(i = '')
1491
+ if Colours.use_colours?
1492
+ return Colours.return_this_256_colour(__method__, i)
1493
+ else
1494
+ return i
1495
+ end
1496
+ end; def violet(i = ''); SupportFor256Colours.violet(i); end
1497
+
1498
+ # ========================================================================= #
1499
+ # === Colours::SupportFor256Colours.lightgoldenrod3
1500
+ # ========================================================================= #
1501
+ def self.lightgoldenrod3(i = '')
1502
+ if Colours.use_colours?
1503
+ return Colours.return_this_256_colour(__method__, i)
1504
+ else
1505
+ return i
1506
+ end
1507
+ end; def lightgoldenrod3(i = ''); SupportFor256Colours.lightgoldenrod3(i); end
1508
+
1509
+ # ========================================================================= #
1510
+ # === Colours::SupportFor256Colours.tan
1511
+ # ========================================================================= #
1512
+ def self.tan(i = '')
1513
+ if Colours.use_colours?
1514
+ return Colours.return_this_256_colour(__method__, i)
1515
+ else
1516
+ return i
1517
+ end
1518
+ end; def tan(i = ''); SupportFor256Colours.tan(i); end
1519
+
1520
+ # ========================================================================= #
1521
+ # === Colours::SupportFor256Colours.mistyrose3
1522
+ # ========================================================================= #
1523
+ def self.mistyrose3(i = '')
1524
+ if Colours.use_colours?
1525
+ return Colours.return_this_256_colour(__method__, i)
1526
+ else
1527
+ return i
1528
+ end
1529
+ end; def mistyrose3(i = ''); SupportFor256Colours.mistyrose3(i); end
1530
+
1531
+ # ========================================================================= #
1532
+ # === Colours::SupportFor256Colours.thistle3
1533
+ # ========================================================================= #
1534
+ def self.thistle3(i = '')
1535
+ if Colours.use_colours?
1536
+ return Colours.return_this_256_colour(__method__, i)
1537
+ else
1538
+ return i
1539
+ end
1540
+ end; def thistle3(i = ''); SupportFor256Colours.thistle3(i); end
1541
+
1542
+ # ========================================================================= #
1543
+ # === Colours::SupportFor256Colours.plum2
1544
+ # ========================================================================= #
1545
+ def self.plum2(i = '')
1546
+ if Colours.use_colours?
1547
+ return Colours.return_this_256_colour(__method__, i)
1548
+ else
1549
+ return i
1550
+ end
1551
+ end; def plum2(i = ''); SupportFor256Colours.plum2(i); end
1552
+
1553
+ # ========================================================================= #
1554
+ # === Colours::SupportFor256Colours.khaki3
1555
+ # ========================================================================= #
1556
+ def self.khaki3(i = '')
1557
+ if Colours.use_colours?
1558
+ return Colours.return_this_256_colour(__method__, i)
1559
+ else
1560
+ return i
1561
+ end
1562
+ end; def khaki3(i = ''); SupportFor256Colours.khaki3(i); end
1563
+
1564
+ # ========================================================================= #
1565
+ # === Colours::SupportFor256Colours.lightgoldenrod2
1566
+ # ========================================================================= #
1567
+ def self.lightgoldenrod2(i = '')
1568
+ if Colours.use_colours?
1569
+ return Colours.return_this_256_colour(__method__, i)
1570
+ else
1571
+ return i
1572
+ end
1573
+ end; def lightgoldenrod2(i = ''); SupportFor256Colours.lightgoldenrod2(i); end
1574
+
1575
+ # ========================================================================= #
1576
+ # === Colours::SupportFor256Colours.lightyellow3
1577
+ # ========================================================================= #
1578
+ def self.lightyellow3(i = '')
1579
+ if Colours.use_colours?
1580
+ return Colours.return_this_256_colour(__method__, i)
1581
+ else
1582
+ return i
1583
+ end
1584
+ end; def lightyellow3(i = ''); SupportFor256Colours.lightyellow3(i); end
1585
+
1586
+ # ========================================================================= #
1587
+ # === Colours::SupportFor256Colours.grey84
1588
+ # ========================================================================= #
1589
+ def self.grey84(i = '')
1590
+ if Colours.use_colours?
1591
+ return Colours.return_this_256_colour(__method__, i)
1592
+ else
1593
+ return i
1594
+ end
1595
+ end; def grey84(i = ''); SupportFor256Colours.grey84(i); end
1596
+
1597
+ # ========================================================================= #
1598
+ # === Colours::SupportFor256Colours.lightsteelblue1
1599
+ # ========================================================================= #
1600
+ def self.lightsteelblue1(i = '')
1601
+ if Colours.use_colours?
1602
+ return Colours.return_this_256_colour(__method__, i)
1603
+ else
1604
+ return i
1605
+ end
1606
+ end; def lightsteelblue1(i = ''); SupportFor256Colours.lightsteelblue1(i); end
1607
+
1608
+ # ========================================================================= #
1609
+ # === Colours::SupportFor256Colours.yellow2
1610
+ # ========================================================================= #
1611
+ def self.yellow2(i = '')
1612
+ if Colours.use_colours?
1613
+ return Colours.return_this_256_colour(__method__, i)
1614
+ else
1615
+ return i
1616
+ end
1617
+ end; def yellow2(i = ''); SupportFor256Colours.yellow2(i); end
1618
+
1619
+ # ========================================================================= #
1620
+ # === Colours::SupportFor256Colours.darkolivegreen1
1621
+ # ========================================================================= #
1622
+ def self.darkolivegreen1(i = '')
1623
+ if Colours.use_colours?
1624
+ return Colours.return_this_256_colour(__method__, i)
1625
+ else
1626
+ return i
1627
+ end
1628
+ end; def darkolivegreen1(i = ''); SupportFor256Colours.darkolivegreen1(i); end
1629
+
1630
+ # ========================================================================= #
1631
+ # === Colours::SupportFor256Colours.honeydew2
1632
+ # ========================================================================= #
1633
+ def self.honeydew2(i = '')
1634
+ if Colours.use_colours?
1635
+ return Colours.return_this_256_colour(__method__, i)
1636
+ else
1637
+ return i
1638
+ end
1639
+ end; def honeydew2(i = ''); SupportFor256Colours.honeydew2(i); end
1640
+
1641
+ # ========================================================================= #
1642
+ # === Colours::SupportFor256Colours.lightcyan1
1643
+ # ========================================================================= #
1644
+ def self.lightcyan1(i = '')
1645
+ if Colours.use_colours?
1646
+ return Colours.return_this_256_colour(__method__, i)
1647
+ else
1648
+ return i
1649
+ end
1650
+ end; def lightcyan1(i = ''); SupportFor256Colours.lightcyan1(i); end
1651
+
1652
+ # ========================================================================= #
1653
+ # === Colours::SupportFor256Colours.red1
1654
+ # ========================================================================= #
1655
+ def self.red1(i = '')
1656
+ if Colours.use_colours?
1657
+ return Colours.return_this_256_colour(__method__, i)
1658
+ else
1659
+ return i
1660
+ end
1661
+ end; def red1(i = ''); SupportFor256Colours.red1(i); end
1662
+
1663
+ # ========================================================================= #
1664
+ # === Colours::SupportFor256Colours.deeppink2
1665
+ # ========================================================================= #
1666
+ def self.deeppink2(i = '')
1667
+ if Colours.use_colours?
1668
+ return Colours.return_this_256_colour(__method__, i)
1669
+ else
1670
+ return i
1671
+ end
1672
+ end; def deeppink2(i = ''); SupportFor256Colours.deeppink2(i); end
1673
+
1674
+ # ========================================================================= #
1675
+ # === Colours::SupportFor256Colours.deeppink1
1676
+ # ========================================================================= #
1677
+ def self.deeppink1(i = '')
1678
+ if Colours.use_colours?
1679
+ return Colours.return_this_256_colour(__method__, i)
1680
+ else
1681
+ return i
1682
+ end
1683
+ end; def deeppink1(i = ''); SupportFor256Colours.deeppink1(i); end
1684
+
1685
+ # ========================================================================= #
1686
+ # === Colours::SupportFor256Colours.magenta1
1687
+ # ========================================================================= #
1688
+ def self.magenta1(i = '')
1689
+ if Colours.use_colours?
1690
+ return Colours.return_this_256_colour(__method__, i)
1691
+ else
1692
+ return i
1693
+ end
1694
+ end; def magenta1(i = ''); SupportFor256Colours.magenta1(i); end
1695
+
1696
+ # ========================================================================= #
1697
+ # === Colours::SupportFor256Colours.orangered1
1698
+ # ========================================================================= #
1699
+ def self.orangered1(i = '')
1700
+ if Colours.use_colours?
1701
+ return Colours.return_this_256_colour(__method__, i)
1702
+ else
1703
+ return i
1704
+ end
1705
+ end; def orangered1(i = ''); SupportFor256Colours.orangered1(i); end
1706
+
1707
+ # ========================================================================= #
1708
+ # === Colours::SupportFor256Colours.indianred1
1709
+ # ========================================================================= #
1710
+ def self.indianred1(i = '')
1711
+ if Colours.use_colours?
1712
+ return Colours.return_this_256_colour(__method__, i)
1713
+ else
1714
+ return i
1715
+ end
1716
+ end; def indianred1(i = ''); SupportFor256Colours.indianred1(i); end
1717
+
1718
+ # ========================================================================= #
1719
+ # === Colours::SupportFor256Colours.hotpink
1720
+ # ========================================================================= #
1721
+ def self.hotpink(i = '')
1722
+ if Colours.use_colours?
1723
+ return Colours.return_this_256_colour(__method__, i)
1724
+ else
1725
+ return i
1726
+ end
1727
+ end; def hotpink(i = ''); SupportFor256Colours.hotpink(i); end
1728
+
1729
+ # ========================================================================= #
1730
+ # === Colours::SupportFor256Colours.darkorange
1731
+ # ========================================================================= #
1732
+ def self.darkorange(i = '')
1733
+ if Colours.use_colours?
1734
+ return Colours.return_this_256_colour(__method__, i)
1735
+ else
1736
+ return i
1737
+ end
1738
+ end; def darkorange(i = ''); SupportFor256Colours.darkorange(i); end
1739
+
1740
+ # ========================================================================= #
1741
+ # === Colours::SupportFor256Colours.salmon1
1742
+ # ========================================================================= #
1743
+ def self.salmon1(i = '')
1744
+ if Colours.use_colours?
1745
+ return Colours.return_this_256_colour(__method__, i)
1746
+ else
1747
+ return i
1748
+ end
1749
+ end; def salmon1(i = ''); SupportFor256Colours.salmon1(i); end
1750
+
1751
+ # ========================================================================= #
1752
+ # === Colours::SupportFor256Colours.lightcoral
1753
+ # ========================================================================= #
1754
+ def self.lightcoral(i = '')
1755
+ if Colours.use_colours?
1756
+ return Colours.return_this_256_colour(__method__, i)
1757
+ else
1758
+ return i
1759
+ end
1760
+ end; def lightcoral(i = ''); SupportFor256Colours.lightcoral(i); end
1761
+
1762
+ # ========================================================================= #
1763
+ # === Colours::SupportFor256Colours.palevioletred1
1764
+ # ========================================================================= #
1765
+ def self.palevioletred1(i = '')
1766
+ if Colours.use_colours?
1767
+ return Colours.return_this_256_colour(__method__, i)
1768
+ else
1769
+ return i
1770
+ end
1771
+ end; def palevioletred1(i = ''); SupportFor256Colours.palevioletred1(i); end
1772
+
1773
+ # ========================================================================= #
1774
+ # === Colours::SupportFor256Colours.orchid2
1775
+ # ========================================================================= #
1776
+ def self.orchid2(i = '')
1777
+ if Colours.use_colours?
1778
+ return Colours.return_this_256_colour(__method__, i)
1779
+ else
1780
+ return i
1781
+ end
1782
+ end; def orchid2(i = ''); SupportFor256Colours.orchid2(i); end
1783
+
1784
+ # ========================================================================= #
1785
+ # === Colours::SupportFor256Colours.orchid1
1786
+ # ========================================================================= #
1787
+ def self.orchid1(i = '')
1788
+ if Colours.use_colours?
1789
+ return Colours.return_this_256_colour(__method__, i)
1790
+ else
1791
+ return i
1792
+ end
1793
+ end; def orchid1(i = ''); SupportFor256Colours.orchid1(i); end
1794
+
1795
+ # ========================================================================= #
1796
+ # === Colours::SupportFor256Colours.orange1
1797
+ # ========================================================================= #
1798
+ def self.orange1(i = '')
1799
+ if Colours.use_colours?
1800
+ return Colours.return_this_256_colour(__method__, i)
1801
+ else
1802
+ return i
1803
+ end
1804
+ end; def orange1(i = ''); SupportFor256Colours.orange1(i); end
1805
+
1806
+ # ========================================================================= #
1807
+ # === Colours::SupportFor256Colours.sandybrown
1808
+ # ========================================================================= #
1809
+ def self.sandybrown(i = '')
1810
+ if Colours.use_colours?
1811
+ return Colours.return_this_256_colour(__method__, i)
1812
+ else
1813
+ return i
1814
+ end
1815
+ end; def sandybrown(i = ''); SupportFor256Colours.sandybrown(i); end
1816
+
1817
+ # ========================================================================= #
1818
+ # === Colours::SupportFor256Colours.lightsalmon1
1819
+ # ========================================================================= #
1820
+ def self.lightsalmon1(i = '')
1821
+ if Colours.use_colours?
1822
+ return Colours.return_this_256_colour(__method__, i)
1823
+ else
1824
+ return i
1825
+ end
1826
+ end; def lightsalmon1(i = ''); SupportFor256Colours.lightsalmon1(i); end
1827
+
1828
+ # ========================================================================= #
1829
+ # === Colours::SupportFor256Colours.lightpink1
1830
+ # ========================================================================= #
1831
+ def self.lightpink1(i = '')
1832
+ if Colours.use_colours?
1833
+ return Colours.return_this_256_colour(__method__, i)
1834
+ else
1835
+ return i
1836
+ end
1837
+ end; def lightpink1(i = ''); SupportFor256Colours.lightpink1(i); end
1838
+
1839
+ # ========================================================================= #
1840
+ # === Colours::SupportFor256Colours.pink1
1841
+ # ========================================================================= #
1842
+ def self.pink1(i = '')
1843
+ if Colours.use_colours?
1844
+ return Colours.return_this_256_colour(__method__, i)
1845
+ else
1846
+ return i
1847
+ end
1848
+ end; def pink1(i = ''); SupportFor256Colours.pink1(i); end
1849
+
1850
+ # ========================================================================= #
1851
+ # === Colours::SupportFor256Colours.plum1
1852
+ # ========================================================================= #
1853
+ def self.plum1(i = '')
1854
+ if Colours.use_colours?
1855
+ return Colours.return_this_256_colour(__method__, i)
1856
+ else
1857
+ return i
1858
+ end
1859
+ end; def plum1(i = ''); SupportFor256Colours.plum1(i); end
1860
+
1861
+ # ========================================================================= #
1862
+ # === Colours::SupportFor256Colours.gold1
1863
+ # ========================================================================= #
1864
+ def self.gold1(i = '')
1865
+ if Colours.use_colours?
1866
+ return Colours.return_this_256_colour(__method__, i)
1867
+ else
1868
+ return i
1869
+ end
1870
+ end; def gold1(i = ''); SupportFor256Colours.gold1(i); end
1871
+
1872
+ # ========================================================================= #
1873
+ # === Colours::SupportFor256Colours.navajowhite1
1874
+ # ========================================================================= #
1875
+ def self.navajowhite1(i = '')
1876
+ if Colours.use_colours?
1877
+ return Colours.return_this_256_colour(__method__, i)
1878
+ else
1879
+ return i
1880
+ end
1881
+ end; def navajowhite1(i = ''); SupportFor256Colours.navajowhite1(i); end
1882
+
1883
+ # ========================================================================= #
1884
+ # === Colours::SupportFor256Colours.mistyrose1
1885
+ # ========================================================================= #
1886
+ def self.mistyrose1(i = '')
1887
+ if Colours.use_colours?
1888
+ return Colours.return_this_256_colour(__method__, i)
1889
+ else
1890
+ return i
1891
+ end
1892
+ end; def mistyrose1(i = ''); SupportFor256Colours.mistyrose1(i); end
1893
+
1894
+ # ========================================================================= #
1895
+ # === Colours::SupportFor256Colours.thistle1
1896
+ # ========================================================================= #
1897
+ def self.thistle1(i = '')
1898
+ if Colours.use_colours?
1899
+ return Colours.return_this_256_colour(__method__, i)
1900
+ else
1901
+ return i
1902
+ end
1903
+ end; def thistle1(i = ''); SupportFor256Colours.thistle1(i); end
1904
+
1905
+ # ========================================================================= #
1906
+ # === Colours::SupportFor256Colours.yellow1
1907
+ # ========================================================================= #
1908
+ def self.yellow1(i = '')
1909
+ if Colours.use_colours?
1910
+ return Colours.return_this_256_colour(__method__, i)
1911
+ else
1912
+ return i
1913
+ end
1914
+ end; def yellow1(i = ''); SupportFor256Colours.yellow1(i); end
1915
+
1916
+ # ========================================================================= #
1917
+ # === Colours::SupportFor256Colours.lightgoldenrod1
1918
+ # ========================================================================= #
1919
+ def self.lightgoldenrod1(i = '')
1920
+ if Colours.use_colours?
1921
+ return Colours.return_this_256_colour(__method__, i)
1922
+ else
1923
+ return i
1924
+ end
1925
+ end; def lightgoldenrod1(i = ''); SupportFor256Colours.lightgoldenrod1(i); end
1926
+
1927
+ # ========================================================================= #
1928
+ # === Colours::SupportFor256Colours.khaki1
1929
+ # ========================================================================= #
1930
+ def self.khaki1(i = '')
1931
+ if Colours.use_colours?
1932
+ return Colours.return_this_256_colour(__method__, i)
1933
+ else
1934
+ return i
1935
+ end
1936
+ end; def khaki1(i = ''); SupportFor256Colours.khaki1(i); end
1937
+
1938
+ # ========================================================================= #
1939
+ # === Colours::SupportFor256Colours.wheat1
1940
+ # ========================================================================= #
1941
+ def self.wheat1(i = '')
1942
+ if Colours.use_colours?
1943
+ return Colours.return_this_256_colour(__method__, i)
1944
+ else
1945
+ return i
1946
+ end
1947
+ end; def wheat1(i = ''); SupportFor256Colours.wheat1(i); end
1948
+
1949
+ # ========================================================================= #
1950
+ # === Colours::SupportFor256Colours.cornsilk1
1951
+ # ========================================================================= #
1952
+ def self.cornsilk1(i = '')
1953
+ if Colours.use_colours?
1954
+ return Colours.return_this_256_colour(__method__, i)
1955
+ else
1956
+ return i
1957
+ end
1958
+ end; def cornsilk1(i = ''); SupportFor256Colours.cornsilk1(i); end
1959
+
1960
+ # ========================================================================= #
1961
+ # === Colours::SupportFor256Colours.grey100
1962
+ # ========================================================================= #
1963
+ def self.grey100(i = '')
1964
+ if Colours.use_colours?
1965
+ return Colours.return_this_256_colour(__method__, i)
1966
+ else
1967
+ return i
1968
+ end
1969
+ end; def grey100(i = ''); SupportFor256Colours.grey100(i); end
1970
+
1971
+ # ========================================================================= #
1972
+ # === Colours::SupportFor256Colours.grey3
1973
+ # ========================================================================= #
1974
+ def self.grey3(i = '')
1975
+ if Colours.use_colours?
1976
+ return Colours.return_this_256_colour(__method__, i)
1977
+ else
1978
+ return i
1979
+ end
1980
+ end; def grey3(i = ''); SupportFor256Colours.grey3(i); end
1981
+
1982
+ # ========================================================================= #
1983
+ # === Colours::SupportFor256Colours.grey7
1984
+ # ========================================================================= #
1985
+ def self.grey7(i = '')
1986
+ if Colours.use_colours?
1987
+ return Colours.return_this_256_colour(__method__, i)
1988
+ else
1989
+ return i
1990
+ end
1991
+ end; def grey7(i = ''); SupportFor256Colours.grey7(i); end
1992
+
1993
+ # ========================================================================= #
1994
+ # === Colours::SupportFor256Colours.grey11
1995
+ # ========================================================================= #
1996
+ def self.grey11(i = '')
1997
+ if Colours.use_colours?
1998
+ return Colours.return_this_256_colour(__method__, i)
1999
+ else
2000
+ return i
2001
+ end
2002
+ end; def grey11(i = ''); SupportFor256Colours.grey11(i); end
2003
+
2004
+ # ========================================================================= #
2005
+ # === Colours::SupportFor256Colours.grey15
2006
+ # ========================================================================= #
2007
+ def self.grey15(i = '')
2008
+ if Colours.use_colours?
2009
+ return Colours.return_this_256_colour(__method__, i)
2010
+ else
2011
+ return i
2012
+ end
2013
+ end; def grey15(i = ''); SupportFor256Colours.grey15(i); end
2014
+
2015
+ # ========================================================================= #
2016
+ # === Colours::SupportFor256Colours.grey19
2017
+ # ========================================================================= #
2018
+ def self.grey19(i = '')
2019
+ if Colours.use_colours?
2020
+ return Colours.return_this_256_colour(__method__, i)
2021
+ else
2022
+ return i
2023
+ end
2024
+ end; def grey19(i = ''); SupportFor256Colours.grey19(i); end
2025
+
2026
+ # ========================================================================= #
2027
+ # === Colours::SupportFor256Colours.grey23
2028
+ # ========================================================================= #
2029
+ def self.grey23(i = '')
2030
+ if Colours.use_colours?
2031
+ return Colours.return_this_256_colour(__method__, i)
2032
+ else
2033
+ return i
2034
+ end
2035
+ end; def grey23(i = ''); SupportFor256Colours.grey23(i); end
2036
+
2037
+ # ========================================================================= #
2038
+ # === Colours::SupportFor256Colours.grey27
2039
+ # ========================================================================= #
2040
+ def self.grey27(i = '')
2041
+ if Colours.use_colours?
2042
+ return Colours.return_this_256_colour(__method__, i)
2043
+ else
2044
+ return i
2045
+ end
2046
+ end; def grey27(i = ''); SupportFor256Colours.grey27(i); end
2047
+
2048
+ # ========================================================================= #
2049
+ # === Colours::SupportFor256Colours.grey30
2050
+ # ========================================================================= #
2051
+ def self.grey30(i = '')
2052
+ if Colours.use_colours?
2053
+ return Colours.return_this_256_colour(__method__, i)
2054
+ else
2055
+ return i
2056
+ end
2057
+ end; def grey30(i = ''); SupportFor256Colours.grey30(i); end
2058
+
2059
+ # ========================================================================= #
2060
+ # === Colours::SupportFor256Colours.grey35
2061
+ # ========================================================================= #
2062
+ def self.grey35(i = '')
2063
+ if Colours.use_colours?
2064
+ return Colours.return_this_256_colour(__method__, i)
2065
+ else
2066
+ return i
2067
+ end
2068
+ end; def grey35(i = ''); SupportFor256Colours.grey35(i); end
2069
+
2070
+ # ========================================================================= #
2071
+ # === Colours::SupportFor256Colours.grey39
2072
+ # ========================================================================= #
2073
+ def self.grey39(i = '')
2074
+ if Colours.use_colours?
2075
+ return Colours.return_this_256_colour(__method__, i)
2076
+ else
2077
+ return i
2078
+ end
2079
+ end; def grey39(i = ''); SupportFor256Colours.grey39(i); end
2080
+
2081
+ # ========================================================================= #
2082
+ # === Colours::SupportFor256Colours.grey42
2083
+ # ========================================================================= #
2084
+ def self.grey42(i = '')
2085
+ if Colours.use_colours?
2086
+ return Colours.return_this_256_colour(__method__, i)
2087
+ else
2088
+ return i
2089
+ end
2090
+ end; def grey42(i = ''); SupportFor256Colours.grey42(i); end
2091
+
2092
+ # ========================================================================= #
2093
+ # === Colours::SupportFor256Colours.grey46
2094
+ # ========================================================================= #
2095
+ def self.grey46(i = '')
2096
+ if Colours.use_colours?
2097
+ return Colours.return_this_256_colour(__method__, i)
2098
+ else
2099
+ return i
2100
+ end
2101
+ end; def grey46(i = ''); SupportFor256Colours.grey46(i); end
2102
+
2103
+ # ========================================================================= #
2104
+ # === Colours::SupportFor256Colours.grey50
2105
+ # ========================================================================= #
2106
+ def self.grey50(i = '')
2107
+ if Colours.use_colours?
2108
+ return Colours.return_this_256_colour(__method__, i)
2109
+ else
2110
+ return i
2111
+ end
2112
+ end; def grey50(i = ''); SupportFor256Colours.grey50(i); end
2113
+
2114
+ # ========================================================================= #
2115
+ # === Colours::SupportFor256Colours.grey54
2116
+ # ========================================================================= #
2117
+ def self.grey54(i = '')
2118
+ if Colours.use_colours?
2119
+ return Colours.return_this_256_colour(__method__, i)
2120
+ else
2121
+ return i
2122
+ end
2123
+ end; def grey54(i = ''); SupportFor256Colours.grey54(i); end
2124
+
2125
+ # ========================================================================= #
2126
+ # === Colours::SupportFor256Colours.grey58
2127
+ # ========================================================================= #
2128
+ def self.grey58(i = '')
2129
+ if Colours.use_colours?
2130
+ return Colours.return_this_256_colour(__method__, i)
2131
+ else
2132
+ return i
2133
+ end
2134
+ end; def grey58(i = ''); SupportFor256Colours.grey58(i); end
2135
+
2136
+ # ========================================================================= #
2137
+ # === Colours::SupportFor256Colours.grey62
2138
+ # ========================================================================= #
2139
+ def self.grey62(i = '')
2140
+ if Colours.use_colours?
2141
+ return Colours.return_this_256_colour(__method__, i)
2142
+ else
2143
+ return i
2144
+ end
2145
+ end; def grey62(i = ''); SupportFor256Colours.grey62(i); end
2146
+
2147
+ # ========================================================================= #
2148
+ # === Colours::SupportFor256Colours.grey66
2149
+ # ========================================================================= #
2150
+ def self.grey66(i = '')
2151
+ if Colours.use_colours?
2152
+ return Colours.return_this_256_colour(__method__, i)
2153
+ else
2154
+ return i
2155
+ end
2156
+ end; def grey66(i = ''); SupportFor256Colours.grey66(i); end
2157
+
2158
+ # ========================================================================= #
2159
+ # === Colours::SupportFor256Colours.grey70
2160
+ # ========================================================================= #
2161
+ def self.grey70(i = '')
2162
+ if Colours.use_colours?
2163
+ return Colours.return_this_256_colour(__method__, i)
2164
+ else
2165
+ return i
2166
+ end
2167
+ end; def grey70(i = ''); SupportFor256Colours.grey70(i); end
2168
+
2169
+ # ========================================================================= #
2170
+ # === Colours::SupportFor256Colours.grey74
2171
+ # ========================================================================= #
2172
+ def self.grey74(i = '')
2173
+ if Colours.use_colours?
2174
+ return Colours.return_this_256_colour(__method__, i)
2175
+ else
2176
+ return i
2177
+ end
2178
+ end; def grey74(i = ''); SupportFor256Colours.grey74(i); end
2179
+
2180
+ # ========================================================================= #
2181
+ # === Colours::SupportFor256Colours.grey78
2182
+ # ========================================================================= #
2183
+ def self.grey78(i = '')
2184
+ if Colours.use_colours?
2185
+ return Colours.return_this_256_colour(__method__, i)
2186
+ else
2187
+ return i
2188
+ end
2189
+ end; def grey78(i = ''); SupportFor256Colours.grey78(i); end
2190
+
2191
+ # ========================================================================= #
2192
+ # === Colours::SupportFor256Colours.grey82
2193
+ # ========================================================================= #
2194
+ def self.grey82(i = '')
2195
+ if Colours.use_colours?
2196
+ return Colours.return_this_256_colour(__method__, i)
2197
+ else
2198
+ return i
2199
+ end
2200
+ end; def grey82(i = ''); SupportFor256Colours.grey82(i); end
2201
+
2202
+ # ========================================================================= #
2203
+ # === Colours::SupportFor256Colours.grey85
2204
+ # ========================================================================= #
2205
+ def self.grey85(i = '')
2206
+ if Colours.use_colours?
2207
+ return Colours.return_this_256_colour(__method__, i)
2208
+ else
2209
+ return i
2210
+ end
2211
+ end; def grey85(i = ''); SupportFor256Colours.grey85(i); end
2212
+
2213
+ # ========================================================================= #
2214
+ # === Colours::SupportFor256Colours.grey89
2215
+ # ========================================================================= #
2216
+ def self.grey89(i = '')
2217
+ if Colours.use_colours?
2218
+ return Colours.return_this_256_colour(__method__, i)
2219
+ else
2220
+ return i
2221
+ end
2222
+ end; def grey89(i = ''); SupportFor256Colours.grey89(i); end
2223
+
2224
+ # ========================================================================= #
2225
+ # === Colours::SupportFor256Colours.grey93
2226
+ # ========================================================================= #
2227
+ def self.grey93(i = '')
2228
+ if Colours.use_colours?
2229
+ return Colours.return_this_256_colour(__method__, i)
2230
+ else
2231
+ return i
2232
+ end
2233
+ end; def grey93(i = ''); SupportFor256Colours.grey93(i); end
2234
+
2235
+ end; end