sai 0.2.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +1 -1
  3. data/CHANGELOG.md +38 -1
  4. data/README.md +39 -241
  5. data/docs/USAGE.md +351 -0
  6. data/lib/sai/ansi/color_parser.rb +109 -0
  7. data/lib/sai/ansi/sequence_processor.rb +269 -0
  8. data/lib/sai/ansi/sequenced_string.rb +475 -0
  9. data/lib/sai/ansi/style_parser.rb +66 -0
  10. data/lib/sai/ansi.rb +0 -27
  11. data/lib/sai/conversion/color_sequence.rb +4 -4
  12. data/lib/sai/conversion/rgb/color_classifier.rb +209 -0
  13. data/lib/sai/conversion/rgb/color_indexer.rb +48 -0
  14. data/lib/sai/conversion/rgb/color_space.rb +192 -0
  15. data/lib/sai/conversion/rgb/color_transformer.rb +140 -0
  16. data/lib/sai/conversion/rgb.rb +23 -269
  17. data/lib/sai/decorator/color_manipulations.rb +157 -0
  18. data/lib/sai/decorator/delegation.rb +84 -0
  19. data/lib/sai/decorator/gradients.rb +363 -0
  20. data/lib/sai/decorator/hex_colors.rb +56 -0
  21. data/lib/sai/decorator/named_colors.rb +780 -0
  22. data/lib/sai/decorator/named_styles.rb +276 -0
  23. data/lib/sai/decorator/rgb_colors.rb +64 -0
  24. data/lib/sai/decorator.rb +35 -795
  25. data/lib/sai/mode_selector.rb +19 -19
  26. data/lib/sai/named_colors.rb +437 -0
  27. data/lib/sai.rb +753 -23
  28. data/sig/manifest.yaml +3 -0
  29. data/sig/sai/ansi/color_parser.rbs +77 -0
  30. data/sig/sai/ansi/sequence_processor.rbs +178 -0
  31. data/sig/sai/ansi/sequenced_string.rbs +380 -0
  32. data/sig/sai/ansi/style_parser.rbs +59 -0
  33. data/sig/sai/ansi.rbs +0 -10
  34. data/sig/sai/conversion/rgb/color_classifier.rbs +165 -0
  35. data/sig/sai/conversion/rgb/color_indexer.rbs +41 -0
  36. data/sig/sai/conversion/rgb/color_space.rbs +129 -0
  37. data/sig/sai/conversion/rgb/color_transformer.rbs +99 -0
  38. data/sig/sai/conversion/rgb.rbs +15 -198
  39. data/sig/sai/decorator/color_manipulations.rbs +125 -0
  40. data/sig/sai/decorator/delegation.rbs +47 -0
  41. data/sig/sai/decorator/gradients.rbs +267 -0
  42. data/sig/sai/decorator/hex_colors.rbs +48 -0
  43. data/sig/sai/decorator/named_colors.rbs +1491 -0
  44. data/sig/sai/decorator/named_styles.rbs +72 -0
  45. data/sig/sai/decorator/rgb_colors.rbs +52 -0
  46. data/sig/sai/decorator.rbs +25 -202
  47. data/sig/sai/mode_selector.rbs +19 -19
  48. data/sig/sai/named_colors.rbs +65 -0
  49. data/sig/sai.rbs +1485 -44
  50. metadata +38 -4
data/sig/sai.rbs CHANGED
@@ -11,6 +11,7 @@
11
11
  # adaptive color to your terminal interfaces
12
12
  #
13
13
  # When included in a class or module, Sai provides the following instance methods:
14
+ # * {#color_mode} - Returns an interface to select Sai color modes
14
15
  # * {#decorator} - Returns a new instance of {Decorator} for method chaining
15
16
  # * {#terminal_color_support} - Returns the color support capabilities of the current terminal
16
17
  #
@@ -39,26 +40,48 @@
39
40
  #
40
41
  # Sai.support.true_color? # => true
41
42
  module Sai
42
- # The Sai {ModeSelector mode selector}
43
- #
44
- # @author {https://aaronmallen.me Aaron Allen}
45
- # @since 0.2.0
46
- #
47
- # @api public
48
- #
49
- # @example
50
- # Sai.mode.auto #=> 4
51
- #
52
- # @return [ModeSelector] the mode selector
53
- # @rbs () -> singleton(ModeSelector)
54
- def self.mode: () -> singleton(ModeSelector)
43
+ def alice_blue: () -> Decorator
44
+
45
+ def antique_white: () -> Decorator
46
+
47
+ def aqua: () -> Decorator
48
+
49
+ def aqua_system: () -> Decorator
50
+
51
+ def aquamarine: () -> Decorator
52
+
53
+ def aquamarine1: () -> Decorator
54
+
55
+ def aquamarine1_122: () -> Decorator
56
+
57
+ def aquamarine3: () -> Decorator
58
+
59
+ def azure: () -> Decorator
60
+
61
+ def beige: () -> Decorator
62
+
63
+ def bisque: () -> Decorator
55
64
 
56
65
  def black: () -> Decorator
57
66
 
67
+ def black_system: () -> Decorator
68
+
69
+ def blanched_almond: () -> Decorator
70
+
58
71
  def blink: () -> Decorator
59
72
 
60
73
  def blue: () -> Decorator
61
74
 
75
+ def blue1: () -> Decorator
76
+
77
+ def blue3: () -> Decorator
78
+
79
+ def blue3_20: () -> Decorator
80
+
81
+ def blue_system: () -> Decorator
82
+
83
+ def blue_violet: () -> Decorator
84
+
62
85
  def bold: () -> Decorator
63
86
 
64
87
  def bright_black: () -> Decorator
@@ -77,77 +100,1495 @@ module Sai
77
100
 
78
101
  def bright_yellow: () -> Decorator
79
102
 
103
+ def brown: () -> Decorator
104
+
105
+ def burly_wood: () -> Decorator
106
+
107
+ def cadet_blue: () -> Decorator
108
+
109
+ def cadet_blue_73: () -> Decorator
110
+
111
+ def chartreuse: () -> Decorator
112
+
113
+ def chartreuse1: () -> Decorator
114
+
115
+ def chartreuse2: () -> Decorator
116
+
117
+ def chartreuse2_112: () -> Decorator
118
+
119
+ def chartreuse3: () -> Decorator
120
+
121
+ def chartreuse3_76: () -> Decorator
122
+
123
+ def chartreuse4: () -> Decorator
124
+
125
+ def chocolate: () -> Decorator
126
+
80
127
  def conceal: () -> Decorator
81
128
 
129
+ def coral: () -> Decorator
130
+
131
+ def cornflower_blue: () -> Decorator
132
+
133
+ def cornsilk: () -> Decorator
134
+
135
+ def cornsilk1: () -> Decorator
136
+
137
+ def crimson: () -> Decorator
138
+
82
139
  def cyan: () -> Decorator
83
140
 
141
+ def cyan1: () -> Decorator
142
+
143
+ def cyan2: () -> Decorator
144
+
145
+ def cyan3: () -> Decorator
146
+
147
+ def dark_blue: () -> Decorator
148
+
149
+ def dark_cyan: () -> Decorator
150
+
151
+ def dark_goldenrod: () -> Decorator
152
+
153
+ def dark_gray: () -> Decorator
154
+
155
+ def dark_green: () -> Decorator
156
+
157
+ def dark_khaki: () -> Decorator
158
+
159
+ def dark_magenta: () -> Decorator
160
+
161
+ def dark_magenta_91: () -> Decorator
162
+
163
+ def dark_olive_green: () -> Decorator
164
+
165
+ def dark_olive_green1: () -> Decorator
166
+
167
+ def dark_olive_green1_192: () -> Decorator
168
+
169
+ def dark_olive_green2: () -> Decorator
170
+
171
+ def dark_olive_green3: () -> Decorator
172
+
173
+ def dark_olive_green3_113: () -> Decorator
174
+
175
+ def dark_olive_green3_149: () -> Decorator
176
+
177
+ def dark_orange: () -> Decorator
178
+
179
+ def dark_orange3: () -> Decorator
180
+
181
+ def dark_orange3_166: () -> Decorator
182
+
183
+ def dark_orchid: () -> Decorator
184
+
185
+ def dark_red: () -> Decorator
186
+
187
+ def dark_red_88: () -> Decorator
188
+
189
+ def dark_salmon: () -> Decorator
190
+
191
+ def dark_sea_green: () -> Decorator
192
+
193
+ def dark_sea_green1: () -> Decorator
194
+
195
+ def dark_sea_green1_193: () -> Decorator
196
+
197
+ def dark_sea_green2: () -> Decorator
198
+
199
+ def dark_sea_green2_157: () -> Decorator
200
+
201
+ def dark_sea_green3: () -> Decorator
202
+
203
+ def dark_sea_green3_150: () -> Decorator
204
+
205
+ def dark_sea_green4: () -> Decorator
206
+
207
+ def dark_sea_green4_71: () -> Decorator
208
+
209
+ def dark_slate_blue: () -> Decorator
210
+
211
+ def dark_slate_gray: () -> Decorator
212
+
213
+ def dark_slate_gray1: () -> Decorator
214
+
215
+ def dark_slate_gray2: () -> Decorator
216
+
217
+ def dark_slate_gray3: () -> Decorator
218
+
219
+ def dark_turquoise: () -> Decorator
220
+
221
+ def dark_violet: () -> Decorator
222
+
223
+ def dark_violet_128: () -> Decorator
224
+
225
+ def darken_background: () -> Decorator
226
+
227
+ def darken_bg: () -> Decorator
228
+
229
+ def darken_fg: () -> Decorator
230
+
231
+ def darken_foreground: () -> Decorator
232
+
233
+ def darken_text: () -> Decorator
234
+
235
+ def deep_pink: () -> Decorator
236
+
237
+ def deep_pink1: () -> Decorator
238
+
239
+ def deep_pink1_199: () -> Decorator
240
+
241
+ def deep_pink2: () -> Decorator
242
+
243
+ def deep_pink3: () -> Decorator
244
+
245
+ def deep_pink3_162: () -> Decorator
246
+
247
+ def deep_pink4: () -> Decorator
248
+
249
+ def deep_pink4_125: () -> Decorator
250
+
251
+ def deep_pink4_89: () -> Decorator
252
+
253
+ def deep_sky_blue: () -> Decorator
254
+
255
+ def deep_sky_blue1: () -> Decorator
256
+
257
+ def deep_sky_blue2: () -> Decorator
258
+
259
+ def deep_sky_blue3: () -> Decorator
260
+
261
+ def deep_sky_blue3_32: () -> Decorator
262
+
263
+ def deep_sky_blue4: () -> Decorator
264
+
265
+ def deep_sky_blue4_24: () -> Decorator
266
+
267
+ def deep_sky_blue4_25: () -> Decorator
268
+
84
269
  def dim: () -> Decorator
85
270
 
271
+ def dim_gray: () -> Decorator
272
+
273
+ def dodger_blue: () -> Decorator
274
+
275
+ def dodger_blue1: () -> Decorator
276
+
277
+ def dodger_blue2: () -> Decorator
278
+
279
+ def dodger_blue3: () -> Decorator
280
+
281
+ def firebrick: () -> Decorator
282
+
283
+ def floral_white: () -> Decorator
284
+
285
+ def forest_green: () -> Decorator
286
+
287
+ def fuchsia: () -> Decorator
288
+
289
+ def fuchsia_system: () -> Decorator
290
+
291
+ def gainsboro: () -> Decorator
292
+
293
+ def ghost_white: () -> Decorator
294
+
295
+ def gold: () -> Decorator
296
+
297
+ def gold1: () -> Decorator
298
+
299
+ def gold3: () -> Decorator
300
+
301
+ def gold3_178: () -> Decorator
302
+
303
+ def goldenrod: () -> Decorator
304
+
305
+ def gradient: () -> Decorator
306
+
307
+ def gray: () -> Decorator
308
+
86
309
  def green: () -> Decorator
87
310
 
311
+ def green1: () -> Decorator
312
+
313
+ def green3: () -> Decorator
314
+
315
+ def green3_40: () -> Decorator
316
+
317
+ def green4: () -> Decorator
318
+
319
+ def green_system: () -> Decorator
320
+
321
+ def green_yellow: () -> Decorator
322
+
323
+ def grey0: () -> Decorator
324
+
325
+ def grey100: () -> Decorator
326
+
327
+ def grey11: () -> Decorator
328
+
329
+ def grey15: () -> Decorator
330
+
331
+ def grey19: () -> Decorator
332
+
333
+ def grey23: () -> Decorator
334
+
335
+ def grey27: () -> Decorator
336
+
337
+ def grey3: () -> Decorator
338
+
339
+ def grey30: () -> Decorator
340
+
341
+ def grey35: () -> Decorator
342
+
343
+ def grey37: () -> Decorator
344
+
345
+ def grey39: () -> Decorator
346
+
347
+ def grey42: () -> Decorator
348
+
349
+ def grey46: () -> Decorator
350
+
351
+ def grey50: () -> Decorator
352
+
353
+ def grey53: () -> Decorator
354
+
355
+ def grey54: () -> Decorator
356
+
357
+ def grey58: () -> Decorator
358
+
359
+ def grey62: () -> Decorator
360
+
361
+ def grey66: () -> Decorator
362
+
363
+ def grey7: () -> Decorator
364
+
365
+ def grey70: () -> Decorator
366
+
367
+ def grey74: () -> Decorator
368
+
369
+ def grey78: () -> Decorator
370
+
371
+ def grey82: () -> Decorator
372
+
373
+ def grey84: () -> Decorator
374
+
375
+ def grey85: () -> Decorator
376
+
377
+ def grey89: () -> Decorator
378
+
379
+ def grey93: () -> Decorator
380
+
381
+ def grey_system: () -> Decorator
382
+
383
+ def hex: () -> Decorator
384
+
385
+ def honeydew: () -> Decorator
386
+
387
+ def honeydew2: () -> Decorator
388
+
389
+ def hot_pink: () -> Decorator
390
+
391
+ def hot_pink2: () -> Decorator
392
+
393
+ def hot_pink3: () -> Decorator
394
+
395
+ def hot_pink3_168: () -> Decorator
396
+
397
+ def hot_pink_206: () -> Decorator
398
+
399
+ def indian_red: () -> Decorator
400
+
401
+ def indian_red1: () -> Decorator
402
+
403
+ def indian_red1_204: () -> Decorator
404
+
405
+ def indian_red_167: () -> Decorator
406
+
407
+ def indigo: () -> Decorator
408
+
88
409
  def italic: () -> Decorator
89
410
 
90
- def magenta: () -> Decorator
411
+ def ivory: () -> Decorator
91
412
 
92
- def no_blink: () -> Decorator
413
+ def khaki: () -> Decorator
93
414
 
94
- def no_conceal: () -> Decorator
415
+ def khaki1: () -> Decorator
95
416
 
96
- def no_italic: () -> Decorator
417
+ def khaki3: () -> Decorator
97
418
 
98
- def no_reverse: () -> Decorator
419
+ def lavender: () -> Decorator
99
420
 
100
- def no_strike: () -> Decorator
421
+ def lavender_blush: () -> Decorator
101
422
 
102
- def no_underline: () -> Decorator
423
+ def lawn_green: () -> Decorator
103
424
 
104
- def normal_intensity: () -> Decorator
425
+ def lemon_chiffon: () -> Decorator
105
426
 
106
- def on_black: () -> Decorator
427
+ def light_blue: () -> Decorator
107
428
 
108
- def on_blue: () -> Decorator
429
+ def light_coral: () -> Decorator
109
430
 
110
- def on_bright_black: () -> Decorator
431
+ def light_cyan: () -> Decorator
111
432
 
112
- def on_bright_blue: () -> Decorator
433
+ def light_cyan1: () -> Decorator
113
434
 
114
- def on_bright_cyan: () -> Decorator
435
+ def light_cyan3: () -> Decorator
115
436
 
116
- def on_bright_green: () -> Decorator
437
+ def light_goldenrod1: () -> Decorator
117
438
 
118
- def on_bright_magenta: () -> Decorator
439
+ def light_goldenrod2: () -> Decorator
119
440
 
120
- def on_bright_red: () -> Decorator
441
+ def light_goldenrod2_221: () -> Decorator
121
442
 
122
- def on_bright_white: () -> Decorator
443
+ def light_goldenrod3: () -> Decorator
123
444
 
124
- def on_bright_yellow: () -> Decorator
445
+ def light_goldenrod_yellow: () -> Decorator
125
446
 
126
- def on_cyan: () -> Decorator
447
+ def light_gray: () -> Decorator
127
448
 
128
- def on_green: () -> Decorator
449
+ def light_green: () -> Decorator
129
450
 
130
- def on_magenta: () -> Decorator
451
+ def light_green_120: () -> Decorator
131
452
 
132
- def on_red: () -> Decorator
453
+ def light_pink: () -> Decorator
133
454
 
134
- def on_white: () -> Decorator
455
+ def light_pink1: () -> Decorator
135
456
 
136
- def on_yellow: () -> Decorator
457
+ def light_pink3: () -> Decorator
137
458
 
138
- def rapid_blink: () -> Decorator
459
+ def light_pink4: () -> Decorator
139
460
 
140
- def red: () -> Decorator
461
+ def light_salmon: () -> Decorator
141
462
 
142
- def reverse: () -> Decorator
463
+ def light_salmon1: () -> Decorator
143
464
 
144
- def strike: () -> Decorator
465
+ def light_salmon3: () -> Decorator
145
466
 
146
- def underline: () -> Decorator
467
+ def light_salmon3_173: () -> Decorator
147
468
 
148
- def white: () -> Decorator
469
+ def light_sea_green: () -> Decorator
149
470
 
150
- def yellow: () -> Decorator
471
+ def light_sky_blue: () -> Decorator
472
+
473
+ def light_sky_blue1: () -> Decorator
474
+
475
+ def light_sky_blue3: () -> Decorator
476
+
477
+ def light_sky_blue3_110: () -> Decorator
478
+
479
+ def light_slate_blue: () -> Decorator
480
+
481
+ def light_slate_gray: () -> Decorator
482
+
483
+ def light_slate_grey: () -> Decorator
484
+
485
+ def light_steel_blue: () -> Decorator
486
+
487
+ def light_steel_blue1: () -> Decorator
488
+
489
+ def light_steel_blue3: () -> Decorator
490
+
491
+ def light_yellow: () -> Decorator
492
+
493
+ def lighten_background: () -> Decorator
494
+
495
+ def lighten_bg: () -> Decorator
496
+
497
+ def lighten_fg: () -> Decorator
498
+
499
+ def lighten_foreground: () -> Decorator
500
+
501
+ def lighten_text: () -> Decorator
502
+
503
+ def lime: () -> Decorator
504
+
505
+ def lime_green: () -> Decorator
506
+
507
+ def lime_system: () -> Decorator
508
+
509
+ def linen: () -> Decorator
510
+
511
+ def magenta: () -> Decorator
512
+
513
+ def magenta1: () -> Decorator
514
+
515
+ def magenta2: () -> Decorator
516
+
517
+ def magenta2_200: () -> Decorator
518
+
519
+ def magenta3: () -> Decorator
520
+
521
+ def magenta3_163: () -> Decorator
522
+
523
+ def magenta3_164: () -> Decorator
524
+
525
+ def maroon: () -> Decorator
526
+
527
+ def maroon_system: () -> Decorator
528
+
529
+ def medium_aquamarine: () -> Decorator
530
+
531
+ def medium_blue: () -> Decorator
532
+
533
+ def medium_orchid: () -> Decorator
534
+
535
+ def medium_orchid1: () -> Decorator
536
+
537
+ def medium_orchid1_207: () -> Decorator
538
+
539
+ def medium_orchid3: () -> Decorator
540
+
541
+ def medium_purple: () -> Decorator
542
+
543
+ def medium_purple1: () -> Decorator
544
+
545
+ def medium_purple2: () -> Decorator
546
+
547
+ def medium_purple2_140: () -> Decorator
548
+
549
+ def medium_purple3: () -> Decorator
550
+
551
+ def medium_purple3_98: () -> Decorator
552
+
553
+ def medium_purple4: () -> Decorator
554
+
555
+ def medium_sea_green: () -> Decorator
556
+
557
+ def medium_slate_blue: () -> Decorator
558
+
559
+ def medium_spring_green: () -> Decorator
560
+
561
+ def medium_turquoise: () -> Decorator
562
+
563
+ def medium_violet_red: () -> Decorator
564
+
565
+ def midnight_blue: () -> Decorator
566
+
567
+ def mint_cream: () -> Decorator
568
+
569
+ def misty_rose: () -> Decorator
570
+
571
+ def misty_rose1: () -> Decorator
572
+
573
+ def misty_rose3: () -> Decorator
574
+
575
+ def moccasin: () -> Decorator
576
+
577
+ def navajo_white: () -> Decorator
578
+
579
+ def navajo_white1: () -> Decorator
580
+
581
+ def navajo_white3: () -> Decorator
582
+
583
+ def navy: () -> Decorator
584
+
585
+ def navy_blue: () -> Decorator
586
+
587
+ def navy_system: () -> Decorator
588
+
589
+ def no_blink: () -> Decorator
590
+
591
+ def no_conceal: () -> Decorator
592
+
593
+ def no_italic: () -> Decorator
594
+
595
+ def no_reverse: () -> Decorator
596
+
597
+ def no_strike: () -> Decorator
598
+
599
+ def no_underline: () -> Decorator
600
+
601
+ def normal_intensity: () -> Decorator
602
+
603
+ def old_lace: () -> Decorator
604
+
605
+ def olive: () -> Decorator
606
+
607
+ def olive_drab: () -> Decorator
608
+
609
+ def olive_system: () -> Decorator
610
+
611
+ def on_alice_blue: () -> Decorator
612
+
613
+ def on_antique_white: () -> Decorator
614
+
615
+ def on_aqua: () -> Decorator
616
+
617
+ def on_aqua_system: () -> Decorator
618
+
619
+ def on_aquamarine: () -> Decorator
620
+
621
+ def on_aquamarine1: () -> Decorator
622
+
623
+ def on_aquamarine1_122: () -> Decorator
624
+
625
+ def on_aquamarine3: () -> Decorator
626
+
627
+ def on_azure: () -> Decorator
628
+
629
+ def on_beige: () -> Decorator
630
+
631
+ def on_bisque: () -> Decorator
632
+
633
+ def on_black: () -> Decorator
634
+
635
+ def on_black_system: () -> Decorator
636
+
637
+ def on_blanched_almond: () -> Decorator
638
+
639
+ def on_blue: () -> Decorator
640
+
641
+ def on_blue1: () -> Decorator
642
+
643
+ def on_blue3: () -> Decorator
644
+
645
+ def on_blue3_20: () -> Decorator
646
+
647
+ def on_blue_system: () -> Decorator
648
+
649
+ def on_blue_violet: () -> Decorator
650
+
651
+ def on_bright_black: () -> Decorator
652
+
653
+ def on_bright_blue: () -> Decorator
654
+
655
+ def on_bright_cyan: () -> Decorator
656
+
657
+ def on_bright_green: () -> Decorator
658
+
659
+ def on_bright_magenta: () -> Decorator
660
+
661
+ def on_bright_red: () -> Decorator
662
+
663
+ def on_bright_white: () -> Decorator
664
+
665
+ def on_bright_yellow: () -> Decorator
666
+
667
+ def on_brown: () -> Decorator
668
+
669
+ def on_burly_wood: () -> Decorator
670
+
671
+ def on_cadet_blue: () -> Decorator
672
+
673
+ def on_cadet_blue_73: () -> Decorator
674
+
675
+ def on_chartreuse: () -> Decorator
676
+
677
+ def on_chartreuse1: () -> Decorator
678
+
679
+ def on_chartreuse2: () -> Decorator
680
+
681
+ def on_chartreuse2_112: () -> Decorator
682
+
683
+ def on_chartreuse3: () -> Decorator
684
+
685
+ def on_chartreuse3_76: () -> Decorator
686
+
687
+ def on_chartreuse4: () -> Decorator
688
+
689
+ def on_chocolate: () -> Decorator
690
+
691
+ def on_coral: () -> Decorator
692
+
693
+ def on_cornflower_blue: () -> Decorator
694
+
695
+ def on_cornsilk: () -> Decorator
696
+
697
+ def on_cornsilk1: () -> Decorator
698
+
699
+ def on_crimson: () -> Decorator
700
+
701
+ def on_cyan: () -> Decorator
702
+
703
+ def on_cyan1: () -> Decorator
704
+
705
+ def on_cyan2: () -> Decorator
706
+
707
+ def on_cyan3: () -> Decorator
708
+
709
+ def on_dark_blue: () -> Decorator
710
+
711
+ def on_dark_cyan: () -> Decorator
712
+
713
+ def on_dark_goldenrod: () -> Decorator
714
+
715
+ def on_dark_gray: () -> Decorator
716
+
717
+ def on_dark_green: () -> Decorator
718
+
719
+ def on_dark_khaki: () -> Decorator
720
+
721
+ def on_dark_magenta: () -> Decorator
722
+
723
+ def on_dark_magenta_91: () -> Decorator
724
+
725
+ def on_dark_olive_green: () -> Decorator
726
+
727
+ def on_dark_olive_green1: () -> Decorator
728
+
729
+ def on_dark_olive_green1_192: () -> Decorator
730
+
731
+ def on_dark_olive_green2: () -> Decorator
732
+
733
+ def on_dark_olive_green3: () -> Decorator
734
+
735
+ def on_dark_olive_green3_113: () -> Decorator
736
+
737
+ def on_dark_olive_green3_149: () -> Decorator
738
+
739
+ def on_dark_orange: () -> Decorator
740
+
741
+ def on_dark_orange3: () -> Decorator
742
+
743
+ def on_dark_orange3_166: () -> Decorator
744
+
745
+ def on_dark_orchid: () -> Decorator
746
+
747
+ def on_dark_red: () -> Decorator
748
+
749
+ def on_dark_red_88: () -> Decorator
750
+
751
+ def on_dark_salmon: () -> Decorator
752
+
753
+ def on_dark_sea_green: () -> Decorator
754
+
755
+ def on_dark_sea_green1: () -> Decorator
756
+
757
+ def on_dark_sea_green1_193: () -> Decorator
758
+
759
+ def on_dark_sea_green2: () -> Decorator
760
+
761
+ def on_dark_sea_green2_157: () -> Decorator
762
+
763
+ def on_dark_sea_green3: () -> Decorator
764
+
765
+ def on_dark_sea_green3_150: () -> Decorator
766
+
767
+ def on_dark_sea_green4: () -> Decorator
768
+
769
+ def on_dark_sea_green4_71: () -> Decorator
770
+
771
+ def on_dark_slate_blue: () -> Decorator
772
+
773
+ def on_dark_slate_gray: () -> Decorator
774
+
775
+ def on_dark_slate_gray1: () -> Decorator
776
+
777
+ def on_dark_slate_gray2: () -> Decorator
778
+
779
+ def on_dark_slate_gray3: () -> Decorator
780
+
781
+ def on_dark_turquoise: () -> Decorator
782
+
783
+ def on_dark_violet: () -> Decorator
784
+
785
+ def on_dark_violet_128: () -> Decorator
786
+
787
+ def on_deep_pink: () -> Decorator
788
+
789
+ def on_deep_pink1: () -> Decorator
790
+
791
+ def on_deep_pink1_199: () -> Decorator
792
+
793
+ def on_deep_pink2: () -> Decorator
794
+
795
+ def on_deep_pink3: () -> Decorator
796
+
797
+ def on_deep_pink3_162: () -> Decorator
798
+
799
+ def on_deep_pink4: () -> Decorator
800
+
801
+ def on_deep_pink4_125: () -> Decorator
802
+
803
+ def on_deep_pink4_89: () -> Decorator
804
+
805
+ def on_deep_sky_blue: () -> Decorator
806
+
807
+ def on_deep_sky_blue1: () -> Decorator
808
+
809
+ def on_deep_sky_blue2: () -> Decorator
810
+
811
+ def on_deep_sky_blue3: () -> Decorator
812
+
813
+ def on_deep_sky_blue3_32: () -> Decorator
814
+
815
+ def on_deep_sky_blue4: () -> Decorator
816
+
817
+ def on_deep_sky_blue4_24: () -> Decorator
818
+
819
+ def on_deep_sky_blue4_25: () -> Decorator
820
+
821
+ def on_dim_gray: () -> Decorator
822
+
823
+ def on_dodger_blue: () -> Decorator
824
+
825
+ def on_dodger_blue1: () -> Decorator
826
+
827
+ def on_dodger_blue2: () -> Decorator
828
+
829
+ def on_dodger_blue3: () -> Decorator
830
+
831
+ def on_firebrick: () -> Decorator
832
+
833
+ def on_floral_white: () -> Decorator
834
+
835
+ def on_forest_green: () -> Decorator
836
+
837
+ def on_fuchsia: () -> Decorator
838
+
839
+ def on_fuchsia_system: () -> Decorator
840
+
841
+ def on_gainsboro: () -> Decorator
842
+
843
+ def on_ghost_white: () -> Decorator
844
+
845
+ def on_gold: () -> Decorator
846
+
847
+ def on_gold1: () -> Decorator
848
+
849
+ def on_gold3: () -> Decorator
850
+
851
+ def on_gold3_178: () -> Decorator
852
+
853
+ def on_goldenrod: () -> Decorator
854
+
855
+ def on_gradient: () -> Decorator
856
+
857
+ def on_gray: () -> Decorator
858
+
859
+ def on_green: () -> Decorator
860
+
861
+ def on_green1: () -> Decorator
862
+
863
+ def on_green3: () -> Decorator
864
+
865
+ def on_green3_40: () -> Decorator
866
+
867
+ def on_green4: () -> Decorator
868
+
869
+ def on_green_system: () -> Decorator
870
+
871
+ def on_green_yellow: () -> Decorator
872
+
873
+ def on_grey0: () -> Decorator
874
+
875
+ def on_grey100: () -> Decorator
876
+
877
+ def on_grey11: () -> Decorator
878
+
879
+ def on_grey15: () -> Decorator
880
+
881
+ def on_grey19: () -> Decorator
882
+
883
+ def on_grey23: () -> Decorator
884
+
885
+ def on_grey27: () -> Decorator
886
+
887
+ def on_grey3: () -> Decorator
888
+
889
+ def on_grey30: () -> Decorator
890
+
891
+ def on_grey35: () -> Decorator
892
+
893
+ def on_grey37: () -> Decorator
894
+
895
+ def on_grey39: () -> Decorator
896
+
897
+ def on_grey42: () -> Decorator
898
+
899
+ def on_grey46: () -> Decorator
900
+
901
+ def on_grey50: () -> Decorator
902
+
903
+ def on_grey53: () -> Decorator
904
+
905
+ def on_grey54: () -> Decorator
906
+
907
+ def on_grey58: () -> Decorator
908
+
909
+ def on_grey62: () -> Decorator
910
+
911
+ def on_grey66: () -> Decorator
912
+
913
+ def on_grey7: () -> Decorator
914
+
915
+ def on_grey70: () -> Decorator
916
+
917
+ def on_grey74: () -> Decorator
918
+
919
+ def on_grey78: () -> Decorator
920
+
921
+ def on_grey82: () -> Decorator
922
+
923
+ def on_grey84: () -> Decorator
924
+
925
+ def on_grey85: () -> Decorator
926
+
927
+ def on_grey89: () -> Decorator
928
+
929
+ def on_grey93: () -> Decorator
930
+
931
+ def on_grey_system: () -> Decorator
932
+
933
+ def on_hex: () -> Decorator
934
+
935
+ def on_honeydew: () -> Decorator
936
+
937
+ def on_honeydew2: () -> Decorator
938
+
939
+ def on_hot_pink: () -> Decorator
940
+
941
+ def on_hot_pink2: () -> Decorator
942
+
943
+ def on_hot_pink3: () -> Decorator
944
+
945
+ def on_hot_pink3_168: () -> Decorator
946
+
947
+ def on_hot_pink_206: () -> Decorator
948
+
949
+ def on_indian_red: () -> Decorator
950
+
951
+ def on_indian_red1: () -> Decorator
952
+
953
+ def on_indian_red1_204: () -> Decorator
954
+
955
+ def on_indian_red_167: () -> Decorator
956
+
957
+ def on_indigo: () -> Decorator
958
+
959
+ def on_ivory: () -> Decorator
960
+
961
+ def on_khaki: () -> Decorator
962
+
963
+ def on_khaki1: () -> Decorator
964
+
965
+ def on_khaki3: () -> Decorator
966
+
967
+ def on_lavender: () -> Decorator
968
+
969
+ def on_lavender_blush: () -> Decorator
970
+
971
+ def on_lawn_green: () -> Decorator
972
+
973
+ def on_lemon_chiffon: () -> Decorator
974
+
975
+ def on_light_blue: () -> Decorator
976
+
977
+ def on_light_coral: () -> Decorator
978
+
979
+ def on_light_cyan: () -> Decorator
980
+
981
+ def on_light_cyan1: () -> Decorator
982
+
983
+ def on_light_cyan3: () -> Decorator
984
+
985
+ def on_light_goldenrod1: () -> Decorator
986
+
987
+ def on_light_goldenrod2: () -> Decorator
988
+
989
+ def on_light_goldenrod2_221: () -> Decorator
990
+
991
+ def on_light_goldenrod3: () -> Decorator
992
+
993
+ def on_light_goldenrod_yellow: () -> Decorator
994
+
995
+ def on_light_gray: () -> Decorator
996
+
997
+ def on_light_green: () -> Decorator
998
+
999
+ def on_light_green_120: () -> Decorator
1000
+
1001
+ def on_light_pink: () -> Decorator
1002
+
1003
+ def on_light_pink1: () -> Decorator
1004
+
1005
+ def on_light_pink3: () -> Decorator
1006
+
1007
+ def on_light_pink4: () -> Decorator
1008
+
1009
+ def on_light_salmon: () -> Decorator
1010
+
1011
+ def on_light_salmon1: () -> Decorator
1012
+
1013
+ def on_light_salmon3: () -> Decorator
1014
+
1015
+ def on_light_salmon3_173: () -> Decorator
1016
+
1017
+ def on_light_sea_green: () -> Decorator
1018
+
1019
+ def on_light_sky_blue: () -> Decorator
1020
+
1021
+ def on_light_sky_blue1: () -> Decorator
1022
+
1023
+ def on_light_sky_blue3: () -> Decorator
1024
+
1025
+ def on_light_sky_blue3_110: () -> Decorator
1026
+
1027
+ def on_light_slate_blue: () -> Decorator
1028
+
1029
+ def on_light_slate_gray: () -> Decorator
1030
+
1031
+ def on_light_slate_grey: () -> Decorator
1032
+
1033
+ def on_light_steel_blue: () -> Decorator
1034
+
1035
+ def on_light_steel_blue1: () -> Decorator
1036
+
1037
+ def on_light_steel_blue3: () -> Decorator
1038
+
1039
+ def on_light_yellow: () -> Decorator
1040
+
1041
+ def on_lime: () -> Decorator
1042
+
1043
+ def on_lime_green: () -> Decorator
1044
+
1045
+ def on_lime_system: () -> Decorator
1046
+
1047
+ def on_linen: () -> Decorator
1048
+
1049
+ def on_magenta: () -> Decorator
1050
+
1051
+ def on_magenta1: () -> Decorator
1052
+
1053
+ def on_magenta2: () -> Decorator
1054
+
1055
+ def on_magenta2_200: () -> Decorator
1056
+
1057
+ def on_magenta3: () -> Decorator
1058
+
1059
+ def on_magenta3_163: () -> Decorator
1060
+
1061
+ def on_magenta3_164: () -> Decorator
1062
+
1063
+ def on_maroon: () -> Decorator
1064
+
1065
+ def on_maroon_system: () -> Decorator
1066
+
1067
+ def on_medium_aquamarine: () -> Decorator
1068
+
1069
+ def on_medium_blue: () -> Decorator
1070
+
1071
+ def on_medium_orchid: () -> Decorator
1072
+
1073
+ def on_medium_orchid1: () -> Decorator
1074
+
1075
+ def on_medium_orchid1_207: () -> Decorator
1076
+
1077
+ def on_medium_orchid3: () -> Decorator
1078
+
1079
+ def on_medium_purple: () -> Decorator
1080
+
1081
+ def on_medium_purple1: () -> Decorator
1082
+
1083
+ def on_medium_purple2: () -> Decorator
1084
+
1085
+ def on_medium_purple2_140: () -> Decorator
1086
+
1087
+ def on_medium_purple3: () -> Decorator
1088
+
1089
+ def on_medium_purple3_98: () -> Decorator
1090
+
1091
+ def on_medium_purple4: () -> Decorator
1092
+
1093
+ def on_medium_sea_green: () -> Decorator
1094
+
1095
+ def on_medium_slate_blue: () -> Decorator
1096
+
1097
+ def on_medium_spring_green: () -> Decorator
1098
+
1099
+ def on_medium_turquoise: () -> Decorator
1100
+
1101
+ def on_medium_violet_red: () -> Decorator
1102
+
1103
+ def on_midnight_blue: () -> Decorator
1104
+
1105
+ def on_mint_cream: () -> Decorator
1106
+
1107
+ def on_misty_rose: () -> Decorator
1108
+
1109
+ def on_misty_rose1: () -> Decorator
1110
+
1111
+ def on_misty_rose3: () -> Decorator
1112
+
1113
+ def on_moccasin: () -> Decorator
1114
+
1115
+ def on_navajo_white: () -> Decorator
1116
+
1117
+ def on_navajo_white1: () -> Decorator
1118
+
1119
+ def on_navajo_white3: () -> Decorator
1120
+
1121
+ def on_navy: () -> Decorator
1122
+
1123
+ def on_navy_blue: () -> Decorator
1124
+
1125
+ def on_navy_system: () -> Decorator
1126
+
1127
+ def on_old_lace: () -> Decorator
1128
+
1129
+ def on_olive: () -> Decorator
1130
+
1131
+ def on_olive_drab: () -> Decorator
1132
+
1133
+ def on_olive_system: () -> Decorator
1134
+
1135
+ def on_orange: () -> Decorator
1136
+
1137
+ def on_orange1: () -> Decorator
1138
+
1139
+ def on_orange3: () -> Decorator
1140
+
1141
+ def on_orange4: () -> Decorator
1142
+
1143
+ def on_orange4_94: () -> Decorator
1144
+
1145
+ def on_orange_red: () -> Decorator
1146
+
1147
+ def on_orange_red1: () -> Decorator
1148
+
1149
+ def on_orchid: () -> Decorator
1150
+
1151
+ def on_orchid1: () -> Decorator
1152
+
1153
+ def on_orchid2: () -> Decorator
1154
+
1155
+ def on_pale_goldenrod: () -> Decorator
1156
+
1157
+ def on_pale_green: () -> Decorator
1158
+
1159
+ def on_pale_green1: () -> Decorator
1160
+
1161
+ def on_pale_green1_156: () -> Decorator
1162
+
1163
+ def on_pale_green3: () -> Decorator
1164
+
1165
+ def on_pale_green3_114: () -> Decorator
1166
+
1167
+ def on_pale_turquoise: () -> Decorator
1168
+
1169
+ def on_pale_turquoise1: () -> Decorator
1170
+
1171
+ def on_pale_turquoise4: () -> Decorator
1172
+
1173
+ def on_pale_violet_red: () -> Decorator
1174
+
1175
+ def on_pale_violet_red1: () -> Decorator
1176
+
1177
+ def on_papaya_whip: () -> Decorator
1178
+
1179
+ def on_peach_puff: () -> Decorator
1180
+
1181
+ def on_peru: () -> Decorator
1182
+
1183
+ def on_pink: () -> Decorator
1184
+
1185
+ def on_pink1: () -> Decorator
1186
+
1187
+ def on_pink3: () -> Decorator
1188
+
1189
+ def on_plum: () -> Decorator
1190
+
1191
+ def on_plum1: () -> Decorator
1192
+
1193
+ def on_plum2: () -> Decorator
1194
+
1195
+ def on_plum3: () -> Decorator
1196
+
1197
+ def on_plum4: () -> Decorator
1198
+
1199
+ def on_powder_blue: () -> Decorator
1200
+
1201
+ def on_purple: () -> Decorator
1202
+
1203
+ def on_purple3: () -> Decorator
1204
+
1205
+ def on_purple4: () -> Decorator
1206
+
1207
+ def on_purple4_55: () -> Decorator
1208
+
1209
+ def on_purple_129: () -> Decorator
1210
+
1211
+ def on_purple_system: () -> Decorator
1212
+
1213
+ def on_rainbow: () -> Decorator
1214
+
1215
+ def on_red: () -> Decorator
1216
+
1217
+ def on_red1: () -> Decorator
1218
+
1219
+ def on_red3: () -> Decorator
1220
+
1221
+ def on_red3_160: () -> Decorator
1222
+
1223
+ def on_red_system: () -> Decorator
1224
+
1225
+ def on_rgb: () -> Decorator
1226
+
1227
+ def on_rosy_brown: () -> Decorator
1228
+
1229
+ def on_royal_blue: () -> Decorator
1230
+
1231
+ def on_royal_blue1: () -> Decorator
1232
+
1233
+ def on_saddle_brown: () -> Decorator
1234
+
1235
+ def on_salmon: () -> Decorator
1236
+
1237
+ def on_salmon1: () -> Decorator
1238
+
1239
+ def on_sandy_brown: () -> Decorator
1240
+
1241
+ def on_sea_green: () -> Decorator
1242
+
1243
+ def on_sea_shell: () -> Decorator
1244
+
1245
+ def on_sienna: () -> Decorator
1246
+
1247
+ def on_silver: () -> Decorator
1248
+
1249
+ def on_silver_system: () -> Decorator
1250
+
1251
+ def on_sky_blue: () -> Decorator
1252
+
1253
+ def on_sky_blue1: () -> Decorator
1254
+
1255
+ def on_sky_blue2: () -> Decorator
1256
+
1257
+ def on_sky_blue3: () -> Decorator
1258
+
1259
+ def on_slate_blue: () -> Decorator
1260
+
1261
+ def on_slate_blue1: () -> Decorator
1262
+
1263
+ def on_slate_blue3: () -> Decorator
1264
+
1265
+ def on_slate_blue3_62: () -> Decorator
1266
+
1267
+ def on_slate_gray: () -> Decorator
1268
+
1269
+ def on_snow: () -> Decorator
1270
+
1271
+ def on_spring_green: () -> Decorator
1272
+
1273
+ def on_spring_green1: () -> Decorator
1274
+
1275
+ def on_spring_green2: () -> Decorator
1276
+
1277
+ def on_spring_green2_47: () -> Decorator
1278
+
1279
+ def on_spring_green3: () -> Decorator
1280
+
1281
+ def on_spring_green3_41: () -> Decorator
1282
+
1283
+ def on_spring_green4: () -> Decorator
1284
+
1285
+ def on_steel_blue: () -> Decorator
1286
+
1287
+ def on_steel_blue1: () -> Decorator
1288
+
1289
+ def on_steel_blue1_81: () -> Decorator
1290
+
1291
+ def on_steel_blue3: () -> Decorator
1292
+
1293
+ def on_tan: () -> Decorator
1294
+
1295
+ def on_teal: () -> Decorator
1296
+
1297
+ def on_teal_system: () -> Decorator
1298
+
1299
+ def on_thistle: () -> Decorator
1300
+
1301
+ def on_thistle1: () -> Decorator
1302
+
1303
+ def on_thistle3: () -> Decorator
1304
+
1305
+ def on_tomato: () -> Decorator
1306
+
1307
+ def on_turquoise: () -> Decorator
1308
+
1309
+ def on_turquoise2: () -> Decorator
1310
+
1311
+ def on_turquoise4: () -> Decorator
1312
+
1313
+ def on_violet: () -> Decorator
1314
+
1315
+ def on_wheat: () -> Decorator
1316
+
1317
+ def on_wheat1: () -> Decorator
1318
+
1319
+ def on_wheat4: () -> Decorator
1320
+
1321
+ def on_white: () -> Decorator
1322
+
1323
+ def on_white_smoke: () -> Decorator
1324
+
1325
+ def on_white_system: () -> Decorator
1326
+
1327
+ def on_yellow: () -> Decorator
1328
+
1329
+ def on_yellow1: () -> Decorator
1330
+
1331
+ def on_yellow2: () -> Decorator
1332
+
1333
+ def on_yellow3: () -> Decorator
1334
+
1335
+ def on_yellow3_184: () -> Decorator
1336
+
1337
+ def on_yellow4: () -> Decorator
1338
+
1339
+ def on_yellow4_106: () -> Decorator
1340
+
1341
+ def on_yellow_green: () -> Decorator
1342
+
1343
+ def on_yellow_system: () -> Decorator
1344
+
1345
+ def orange: () -> Decorator
1346
+
1347
+ def orange1: () -> Decorator
1348
+
1349
+ def orange3: () -> Decorator
1350
+
1351
+ def orange4: () -> Decorator
1352
+
1353
+ def orange4_94: () -> Decorator
1354
+
1355
+ def orange_red: () -> Decorator
1356
+
1357
+ def orange_red1: () -> Decorator
1358
+
1359
+ def orchid: () -> Decorator
1360
+
1361
+ def orchid1: () -> Decorator
1362
+
1363
+ def orchid2: () -> Decorator
1364
+
1365
+ def pale_goldenrod: () -> Decorator
1366
+
1367
+ def pale_green: () -> Decorator
1368
+
1369
+ def pale_green1: () -> Decorator
1370
+
1371
+ def pale_green1_156: () -> Decorator
1372
+
1373
+ def pale_green3: () -> Decorator
1374
+
1375
+ def pale_green3_114: () -> Decorator
1376
+
1377
+ def pale_turquoise: () -> Decorator
1378
+
1379
+ def pale_turquoise1: () -> Decorator
1380
+
1381
+ def pale_turquoise4: () -> Decorator
1382
+
1383
+ def pale_violet_red: () -> Decorator
1384
+
1385
+ def pale_violet_red1: () -> Decorator
1386
+
1387
+ def papaya_whip: () -> Decorator
1388
+
1389
+ def peach_puff: () -> Decorator
1390
+
1391
+ def peru: () -> Decorator
1392
+
1393
+ def pink: () -> Decorator
1394
+
1395
+ def pink1: () -> Decorator
1396
+
1397
+ def pink3: () -> Decorator
1398
+
1399
+ def plum: () -> Decorator
1400
+
1401
+ def plum1: () -> Decorator
1402
+
1403
+ def plum2: () -> Decorator
1404
+
1405
+ def plum3: () -> Decorator
1406
+
1407
+ def plum4: () -> Decorator
1408
+
1409
+ def powder_blue: () -> Decorator
1410
+
1411
+ def purple: () -> Decorator
1412
+
1413
+ def purple3: () -> Decorator
1414
+
1415
+ def purple4: () -> Decorator
1416
+
1417
+ def purple4_55: () -> Decorator
1418
+
1419
+ def purple_129: () -> Decorator
1420
+
1421
+ def purple_system: () -> Decorator
1422
+
1423
+ def rainbow: () -> Decorator
1424
+
1425
+ def rapid_blink: () -> Decorator
1426
+
1427
+ def red: () -> Decorator
1428
+
1429
+ def red1: () -> Decorator
1430
+
1431
+ def red3: () -> Decorator
1432
+
1433
+ def red3_160: () -> Decorator
1434
+
1435
+ def red_system: () -> Decorator
1436
+
1437
+ def reverse: () -> Decorator
1438
+
1439
+ def rgb: () -> Decorator
1440
+
1441
+ def rosy_brown: () -> Decorator
1442
+
1443
+ def royal_blue: () -> Decorator
1444
+
1445
+ def royal_blue1: () -> Decorator
1446
+
1447
+ def saddle_brown: () -> Decorator
1448
+
1449
+ def salmon: () -> Decorator
1450
+
1451
+ def salmon1: () -> Decorator
1452
+
1453
+ def sandy_brown: () -> Decorator
1454
+
1455
+ def sea_green: () -> Decorator
1456
+
1457
+ def sea_shell: () -> Decorator
1458
+
1459
+ def sienna: () -> Decorator
1460
+
1461
+ def silver: () -> Decorator
1462
+
1463
+ def silver_system: () -> Decorator
1464
+
1465
+ def sky_blue: () -> Decorator
1466
+
1467
+ def sky_blue1: () -> Decorator
1468
+
1469
+ def sky_blue2: () -> Decorator
1470
+
1471
+ def sky_blue3: () -> Decorator
1472
+
1473
+ def slate_blue: () -> Decorator
1474
+
1475
+ def slate_blue1: () -> Decorator
1476
+
1477
+ def slate_blue3: () -> Decorator
1478
+
1479
+ def slate_blue3_62: () -> Decorator
1480
+
1481
+ def slate_gray: () -> Decorator
1482
+
1483
+ def snow: () -> Decorator
1484
+
1485
+ def spring_green: () -> Decorator
1486
+
1487
+ def spring_green1: () -> Decorator
1488
+
1489
+ def spring_green2: () -> Decorator
1490
+
1491
+ def spring_green2_47: () -> Decorator
1492
+
1493
+ def spring_green3: () -> Decorator
1494
+
1495
+ def spring_green3_41: () -> Decorator
1496
+
1497
+ def spring_green4: () -> Decorator
1498
+
1499
+ def steel_blue: () -> Decorator
1500
+
1501
+ def steel_blue1: () -> Decorator
1502
+
1503
+ def steel_blue1_81: () -> Decorator
1504
+
1505
+ def steel_blue3: () -> Decorator
1506
+
1507
+ def strike: () -> Decorator
1508
+
1509
+ def tan: () -> Decorator
1510
+
1511
+ def teal: () -> Decorator
1512
+
1513
+ def teal_system: () -> Decorator
1514
+
1515
+ def thistle: () -> Decorator
1516
+
1517
+ def thistle1: () -> Decorator
1518
+
1519
+ def thistle3: () -> Decorator
1520
+
1521
+ def tomato: () -> Decorator
1522
+
1523
+ def turquoise: () -> Decorator
1524
+
1525
+ def turquoise2: () -> Decorator
1526
+
1527
+ def turquoise4: () -> Decorator
1528
+
1529
+ def underline: () -> Decorator
1530
+
1531
+ def violet: () -> Decorator
1532
+
1533
+ def wheat: () -> Decorator
1534
+
1535
+ def wheat1: () -> Decorator
1536
+
1537
+ def wheat4: () -> Decorator
1538
+
1539
+ def white: () -> Decorator
1540
+
1541
+ def white_smoke: () -> Decorator
1542
+
1543
+ def white_system: () -> Decorator
1544
+
1545
+ def yellow: () -> Decorator
1546
+
1547
+ def yellow1: () -> Decorator
1548
+
1549
+ def yellow2: () -> Decorator
1550
+
1551
+ def yellow3: () -> Decorator
1552
+
1553
+ def yellow3_184: () -> Decorator
1554
+
1555
+ def yellow4: () -> Decorator
1556
+
1557
+ def yellow4_106: () -> Decorator
1558
+
1559
+ def yellow_green: () -> Decorator
1560
+
1561
+ def yellow_system: () -> Decorator
1562
+
1563
+ # The Sai {ModeSelector mode selector}
1564
+ #
1565
+ # @author {https://aaronmallen.me Aaron Allen}
1566
+ # @since 0.2.0
1567
+ #
1568
+ # @api public
1569
+ #
1570
+ # @example
1571
+ # Sai.mode.auto #=> 4
1572
+ #
1573
+ # @return [ModeSelector] the mode selector
1574
+ # @rbs () -> singleton(ModeSelector)
1575
+ def self.mode: () -> singleton(ModeSelector)
1576
+
1577
+ # Sequence a string with ANSI escape codes
1578
+ #
1579
+ # @author {https://aaronmallen.me Aaron Allen}
1580
+ # @since 0.3.0
1581
+ #
1582
+ # @api public
1583
+ #
1584
+ # @example Sequence a string with ANSI escape codes
1585
+ # Sai.sequence("\e[38;2;205;0;0mHello, World!\e[0m") #=> #<Sai::ANSI::SequencedString:0x123>
1586
+ #
1587
+ # @param text [String] the text to sequence
1588
+ #
1589
+ # @return [ANSI::SequencedString] the sequenced string
1590
+ # @rbs (String text) -> ANSI::SequencedString
1591
+ def self.sequence: (String text) -> ANSI::SequencedString
151
1592
 
152
1593
  # The supported color modes for the terminal
153
1594
  #