-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathColorEcho.fish
2526 lines (1901 loc) Β· 44.5 KB
/
ColorEcho.fish
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env fish
# ColorEchoForShell
# https://github.com/PeterDaveHello/ColorEchoForShell
# Copyright (C) 2015 ~ Peter Dave Hello
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
function echo.Black
echo -e "\\033[30m$argv\\033[m"
end
function echo.BoldBlack
echo -e "\\033[1;30m$argv\\033[m"
end
function echo.IBlack
echo -e "\\033[3;30m$argv\\033[m"
end
function echo.ULBlack
echo -e "\\033[4;30m$argv\\033[m"
end
function echo.BLBlack
echo -e "\\033[5;30m$argv\\033[m"
end
function echo.STBlack
echo -e "\\033[9;30m$argv\\033[m"
end
function echo.BoldIBlack
echo -e "\\033[1;3;30m$argv\\033[m"
end
function echo.BoldULBlack
echo -e "\\033[1;4;30m$argv\\033[m"
end
function echo.BoldBLBlack
echo -e "\\033[1;5;30m$argv\\033[m"
end
function echo.BoldSTBlack
echo -e "\\033[1;9;30m$argv\\033[m"
end
function echo.IBoldBlack
echo -e "\\033[3;1;30m$argv\\033[m"
end
function echo.IULBlack
echo -e "\\033[3;4;30m$argv\\033[m"
end
function echo.IBLBlack
echo -e "\\033[3;5;30m$argv\\033[m"
end
function echo.ISTBlack
echo -e "\\033[3;9;30m$argv\\033[m"
end
function echo.ULBoldBlack
echo -e "\\033[4;1;30m$argv\\033[m"
end
function echo.ULIBlack
echo -e "\\033[4;3;30m$argv\\033[m"
end
function echo.ULBLBlack
echo -e "\\033[4;5;30m$argv\\033[m"
end
function echo.ULSTBlack
echo -e "\\033[4;9;30m$argv\\033[m"
end
function echo.BLBoldBlack
echo -e "\\033[5;1;30m$argv\\033[m"
end
function echo.BLIBlack
echo -e "\\033[5;3;30m$argv\\033[m"
end
function echo.BLULBlack
echo -e "\\033[5;4;30m$argv\\033[m"
end
function echo.BLSTBlack
echo -e "\\033[5;9;30m$argv\\033[m"
end
function echo.STBoldBlack
echo -e "\\033[9;1;30m$argv\\033[m"
end
function echo.STIBlack
echo -e "\\033[9;3;30m$argv\\033[m"
end
function echo.STULBlack
echo -e "\\033[9;4;30m$argv\\033[m"
end
function echo.STBLBlack
echo -e "\\033[9;5;30m$argv\\033[m"
end
function echo.LightBlack
echo -e "\\033[90m$argv\\033[m"
end
function echo.LightBoldBlack
echo -e "\\033[1;90m$argv\\033[m"
end
function echo.LightIBlack
echo -e "\\033[3;90m$argv\\033[m"
end
function echo.LightULBlack
echo -e "\\033[4;90m$argv\\033[m"
end
function echo.LightBLBlack
echo -e "\\033[5;90m$argv\\033[m"
end
function echo.LightSTBlack
echo -e "\\033[9;90m$argv\\033[m"
end
function echo.LightBoldIBlack
echo -e "\\033[1;3;90m$argv\\033[m"
end
function echo.LightBoldULBlack
echo -e "\\033[1;4;90m$argv\\033[m"
end
function echo.LightBoldBLBlack
echo -e "\\033[1;5;90m$argv\\033[m"
end
function echo.LightBoldSTBlack
echo -e "\\033[1;9;90m$argv\\033[m"
end
function echo.LightIBoldBlack
echo -e "\\033[3;1;90m$argv\\033[m"
end
function echo.LightIULBlack
echo -e "\\033[3;4;90m$argv\\033[m"
end
function echo.LightIBLBlack
echo -e "\\033[3;5;90m$argv\\033[m"
end
function echo.LightISTBlack
echo -e "\\033[3;9;90m$argv\\033[m"
end
function echo.LightULBoldBlack
echo -e "\\033[4;1;90m$argv\\033[m"
end
function echo.LightULIBlack
echo -e "\\033[4;3;90m$argv\\033[m"
end
function echo.LightULBLBlack
echo -e "\\033[4;5;90m$argv\\033[m"
end
function echo.LightULSTBlack
echo -e "\\033[4;9;90m$argv\\033[m"
end
function echo.LightBLBoldBlack
echo -e "\\033[5;1;90m$argv\\033[m"
end
function echo.LightBLIBlack
echo -e "\\033[5;3;90m$argv\\033[m"
end
function echo.LightBLULBlack
echo -e "\\033[5;4;90m$argv\\033[m"
end
function echo.LightBLSTBlack
echo -e "\\033[5;9;90m$argv\\033[m"
end
function echo.LightSTBoldBlack
echo -e "\\033[9;1;90m$argv\\033[m"
end
function echo.LightSTIBlack
echo -e "\\033[9;3;90m$argv\\033[m"
end
function echo.LightSTULBlack
echo -e "\\033[9;4;90m$argv\\033[m"
end
function echo.LightSTBLBlack
echo -e "\\033[9;5;90m$argv\\033[m"
end
function echo.Red
echo -e "\\033[31m$argv\\033[m"
end
function echo.BoldRed
echo -e "\\033[1;31m$argv\\033[m"
end
function echo.IRed
echo -e "\\033[3;31m$argv\\033[m"
end
function echo.ULRed
echo -e "\\033[4;31m$argv\\033[m"
end
function echo.BLRed
echo -e "\\033[5;31m$argv\\033[m"
end
function echo.STRed
echo -e "\\033[9;31m$argv\\033[m"
end
function echo.BoldIRed
echo -e "\\033[1;3;31m$argv\\033[m"
end
function echo.BoldULRed
echo -e "\\033[1;4;31m$argv\\033[m"
end
function echo.BoldBLRed
echo -e "\\033[1;5;31m$argv\\033[m"
end
function echo.BoldSTRed
echo -e "\\033[1;9;31m$argv\\033[m"
end
function echo.IBoldRed
echo -e "\\033[3;1;31m$argv\\033[m"
end
function echo.IULRed
echo -e "\\033[3;4;31m$argv\\033[m"
end
function echo.IBLRed
echo -e "\\033[3;5;31m$argv\\033[m"
end
function echo.ISTRed
echo -e "\\033[3;9;31m$argv\\033[m"
end
function echo.ULBoldRed
echo -e "\\033[4;1;31m$argv\\033[m"
end
function echo.ULIRed
echo -e "\\033[4;3;31m$argv\\033[m"
end
function echo.ULBLRed
echo -e "\\033[4;5;31m$argv\\033[m"
end
function echo.ULSTRed
echo -e "\\033[4;9;31m$argv\\033[m"
end
function echo.BLBoldRed
echo -e "\\033[5;1;31m$argv\\033[m"
end
function echo.BLIRed
echo -e "\\033[5;3;31m$argv\\033[m"
end
function echo.BLULRed
echo -e "\\033[5;4;31m$argv\\033[m"
end
function echo.BLSTRed
echo -e "\\033[5;9;31m$argv\\033[m"
end
function echo.STBoldRed
echo -e "\\033[9;1;31m$argv\\033[m"
end
function echo.STIRed
echo -e "\\033[9;3;31m$argv\\033[m"
end
function echo.STULRed
echo -e "\\033[9;4;31m$argv\\033[m"
end
function echo.STBLRed
echo -e "\\033[9;5;31m$argv\\033[m"
end
function echo.LightRed
echo -e "\\033[91m$argv\\033[m"
end
function echo.LightBoldRed
echo -e "\\033[1;91m$argv\\033[m"
end
function echo.LightIRed
echo -e "\\033[3;91m$argv\\033[m"
end
function echo.LightULRed
echo -e "\\033[4;91m$argv\\033[m"
end
function echo.LightBLRed
echo -e "\\033[5;91m$argv\\033[m"
end
function echo.LightSTRed
echo -e "\\033[9;91m$argv\\033[m"
end
function echo.LightBoldIRed
echo -e "\\033[1;3;91m$argv\\033[m"
end
function echo.LightBoldULRed
echo -e "\\033[1;4;91m$argv\\033[m"
end
function echo.LightBoldBLRed
echo -e "\\033[1;5;91m$argv\\033[m"
end
function echo.LightBoldSTRed
echo -e "\\033[1;9;91m$argv\\033[m"
end
function echo.LightIBoldRed
echo -e "\\033[3;1;91m$argv\\033[m"
end
function echo.LightIULRed
echo -e "\\033[3;4;91m$argv\\033[m"
end
function echo.LightIBLRed
echo -e "\\033[3;5;91m$argv\\033[m"
end
function echo.LightISTRed
echo -e "\\033[3;9;91m$argv\\033[m"
end
function echo.LightULBoldRed
echo -e "\\033[4;1;91m$argv\\033[m"
end
function echo.LightULIRed
echo -e "\\033[4;3;91m$argv\\033[m"
end
function echo.LightULBLRed
echo -e "\\033[4;5;91m$argv\\033[m"
end
function echo.LightULSTRed
echo -e "\\033[4;9;91m$argv\\033[m"
end
function echo.LightBLBoldRed
echo -e "\\033[5;1;91m$argv\\033[m"
end
function echo.LightBLIRed
echo -e "\\033[5;3;91m$argv\\033[m"
end
function echo.LightBLULRed
echo -e "\\033[5;4;91m$argv\\033[m"
end
function echo.LightBLSTRed
echo -e "\\033[5;9;91m$argv\\033[m"
end
function echo.LightSTBoldRed
echo -e "\\033[9;1;91m$argv\\033[m"
end
function echo.LightSTIRed
echo -e "\\033[9;3;91m$argv\\033[m"
end
function echo.LightSTULRed
echo -e "\\033[9;4;91m$argv\\033[m"
end
function echo.LightSTBLRed
echo -e "\\033[9;5;91m$argv\\033[m"
end
function echo.Green
echo -e "\\033[32m$argv\\033[m"
end
function echo.BoldGreen
echo -e "\\033[1;32m$argv\\033[m"
end
function echo.IGreen
echo -e "\\033[3;32m$argv\\033[m"
end
function echo.ULGreen
echo -e "\\033[4;32m$argv\\033[m"
end
function echo.BLGreen
echo -e "\\033[5;32m$argv\\033[m"
end
function echo.STGreen
echo -e "\\033[9;32m$argv\\033[m"
end
function echo.BoldIGreen
echo -e "\\033[1;3;32m$argv\\033[m"
end
function echo.BoldULGreen
echo -e "\\033[1;4;32m$argv\\033[m"
end
function echo.BoldBLGreen
echo -e "\\033[1;5;32m$argv\\033[m"
end
function echo.BoldSTGreen
echo -e "\\033[1;9;32m$argv\\033[m"
end
function echo.IBoldGreen
echo -e "\\033[3;1;32m$argv\\033[m"
end
function echo.IULGreen
echo -e "\\033[3;4;32m$argv\\033[m"
end
function echo.IBLGreen
echo -e "\\033[3;5;32m$argv\\033[m"
end
function echo.ISTGreen
echo -e "\\033[3;9;32m$argv\\033[m"
end
function echo.ULBoldGreen
echo -e "\\033[4;1;32m$argv\\033[m"
end
function echo.ULIGreen
echo -e "\\033[4;3;32m$argv\\033[m"
end
function echo.ULBLGreen
echo -e "\\033[4;5;32m$argv\\033[m"
end
function echo.ULSTGreen
echo -e "\\033[4;9;32m$argv\\033[m"
end
function echo.BLBoldGreen
echo -e "\\033[5;1;32m$argv\\033[m"
end
function echo.BLIGreen
echo -e "\\033[5;3;32m$argv\\033[m"
end
function echo.BLULGreen
echo -e "\\033[5;4;32m$argv\\033[m"
end
function echo.BLSTGreen
echo -e "\\033[5;9;32m$argv\\033[m"
end
function echo.STBoldGreen
echo -e "\\033[9;1;32m$argv\\033[m"
end
function echo.STIGreen
echo -e "\\033[9;3;32m$argv\\033[m"
end
function echo.STULGreen
echo -e "\\033[9;4;32m$argv\\033[m"
end
function echo.STBLGreen
echo -e "\\033[9;5;32m$argv\\033[m"
end
function echo.LightGreen
echo -e "\\033[92m$argv\\033[m"
end
function echo.LightBoldGreen
echo -e "\\033[1;92m$argv\\033[m"
end
function echo.LightIGreen
echo -e "\\033[3;92m$argv\\033[m"
end
function echo.LightULGreen
echo -e "\\033[4;92m$argv\\033[m"
end
function echo.LightBLGreen
echo -e "\\033[5;92m$argv\\033[m"
end
function echo.LightSTGreen
echo -e "\\033[9;92m$argv\\033[m"
end
function echo.LightBoldIGreen
echo -e "\\033[1;3;92m$argv\\033[m"
end
function echo.LightBoldULGreen
echo -e "\\033[1;4;92m$argv\\033[m"
end
function echo.LightBoldBLGreen
echo -e "\\033[1;5;92m$argv\\033[m"
end
function echo.LightBoldSTGreen
echo -e "\\033[1;9;92m$argv\\033[m"
end
function echo.LightIBoldGreen
echo -e "\\033[3;1;92m$argv\\033[m"
end
function echo.LightIULGreen
echo -e "\\033[3;4;92m$argv\\033[m"
end
function echo.LightIBLGreen
echo -e "\\033[3;5;92m$argv\\033[m"
end
function echo.LightISTGreen
echo -e "\\033[3;9;92m$argv\\033[m"
end
function echo.LightULBoldGreen
echo -e "\\033[4;1;92m$argv\\033[m"
end
function echo.LightULIGreen
echo -e "\\033[4;3;92m$argv\\033[m"
end
function echo.LightULBLGreen
echo -e "\\033[4;5;92m$argv\\033[m"
end
function echo.LightULSTGreen
echo -e "\\033[4;9;92m$argv\\033[m"
end
function echo.LightBLBoldGreen
echo -e "\\033[5;1;92m$argv\\033[m"
end
function echo.LightBLIGreen
echo -e "\\033[5;3;92m$argv\\033[m"
end
function echo.LightBLULGreen
echo -e "\\033[5;4;92m$argv\\033[m"
end
function echo.LightBLSTGreen
echo -e "\\033[5;9;92m$argv\\033[m"
end
function echo.LightSTBoldGreen
echo -e "\\033[9;1;92m$argv\\033[m"
end
function echo.LightSTIGreen
echo -e "\\033[9;3;92m$argv\\033[m"
end
function echo.LightSTULGreen
echo -e "\\033[9;4;92m$argv\\033[m"
end
function echo.LightSTBLGreen
echo -e "\\033[9;5;92m$argv\\033[m"
end
function echo.Yellow
echo -e "\\033[33m$argv\\033[m"
end
function echo.BoldYellow
echo -e "\\033[1;33m$argv\\033[m"
end
function echo.IYellow
echo -e "\\033[3;33m$argv\\033[m"
end
function echo.ULYellow
echo -e "\\033[4;33m$argv\\033[m"
end
function echo.BLYellow
echo -e "\\033[5;33m$argv\\033[m"
end
function echo.STYellow
echo -e "\\033[9;33m$argv\\033[m"
end
function echo.BoldIYellow
echo -e "\\033[1;3;33m$argv\\033[m"
end
function echo.BoldULYellow
echo -e "\\033[1;4;33m$argv\\033[m"
end
function echo.BoldBLYellow
echo -e "\\033[1;5;33m$argv\\033[m"
end
function echo.BoldSTYellow
echo -e "\\033[1;9;33m$argv\\033[m"
end
function echo.IBoldYellow
echo -e "\\033[3;1;33m$argv\\033[m"
end
function echo.IULYellow
echo -e "\\033[3;4;33m$argv\\033[m"
end
function echo.IBLYellow
echo -e "\\033[3;5;33m$argv\\033[m"
end
function echo.ISTYellow
echo -e "\\033[3;9;33m$argv\\033[m"
end
function echo.ULBoldYellow
echo -e "\\033[4;1;33m$argv\\033[m"
end
function echo.ULIYellow
echo -e "\\033[4;3;33m$argv\\033[m"
end
function echo.ULBLYellow
echo -e "\\033[4;5;33m$argv\\033[m"
end
function echo.ULSTYellow
echo -e "\\033[4;9;33m$argv\\033[m"
end
function echo.BLBoldYellow
echo -e "\\033[5;1;33m$argv\\033[m"
end
function echo.BLIYellow
echo -e "\\033[5;3;33m$argv\\033[m"
end
function echo.BLULYellow
echo -e "\\033[5;4;33m$argv\\033[m"
end
function echo.BLSTYellow
echo -e "\\033[5;9;33m$argv\\033[m"
end
function echo.STBoldYellow
echo -e "\\033[9;1;33m$argv\\033[m"
end
function echo.STIYellow
echo -e "\\033[9;3;33m$argv\\033[m"
end
function echo.STULYellow
echo -e "\\033[9;4;33m$argv\\033[m"
end
function echo.STBLYellow
echo -e "\\033[9;5;33m$argv\\033[m"
end
function echo.LightYellow
echo -e "\\033[93m$argv\\033[m"
end
function echo.LightBoldYellow
echo -e "\\033[1;93m$argv\\033[m"
end
function echo.LightIYellow
echo -e "\\033[3;93m$argv\\033[m"
end
function echo.LightULYellow
echo -e "\\033[4;93m$argv\\033[m"
end
function echo.LightBLYellow
echo -e "\\033[5;93m$argv\\033[m"
end
function echo.LightSTYellow
echo -e "\\033[9;93m$argv\\033[m"
end
function echo.LightBoldIYellow
echo -e "\\033[1;3;93m$argv\\033[m"
end
function echo.LightBoldULYellow
echo -e "\\033[1;4;93m$argv\\033[m"
end
function echo.LightBoldBLYellow
echo -e "\\033[1;5;93m$argv\\033[m"
end
function echo.LightBoldSTYellow
echo -e "\\033[1;9;93m$argv\\033[m"
end
function echo.LightIBoldYellow
echo -e "\\033[3;1;93m$argv\\033[m"
end
function echo.LightIULYellow
echo -e "\\033[3;4;93m$argv\\033[m"
end
function echo.LightIBLYellow
echo -e "\\033[3;5;93m$argv\\033[m"
end
function echo.LightISTYellow
echo -e "\\033[3;9;93m$argv\\033[m"
end
function echo.LightULBoldYellow
echo -e "\\033[4;1;93m$argv\\033[m"
end
function echo.LightULIYellow
echo -e "\\033[4;3;93m$argv\\033[m"
end
function echo.LightULBLYellow
echo -e "\\033[4;5;93m$argv\\033[m"
end
function echo.LightULSTYellow
echo -e "\\033[4;9;93m$argv\\033[m"
end
function echo.LightBLBoldYellow
echo -e "\\033[5;1;93m$argv\\033[m"
end
function echo.LightBLIYellow
echo -e "\\033[5;3;93m$argv\\033[m"
end
function echo.LightBLULYellow
echo -e "\\033[5;4;93m$argv\\033[m"
end
function echo.LightBLSTYellow
echo -e "\\033[5;9;93m$argv\\033[m"
end
function echo.LightSTBoldYellow
echo -e "\\033[9;1;93m$argv\\033[m"
end
function echo.LightSTIYellow
echo -e "\\033[9;3;93m$argv\\033[m"
end
function echo.LightSTULYellow
echo -e "\\033[9;4;93m$argv\\033[m"
end
function echo.LightSTBLYellow
echo -e "\\033[9;5;93m$argv\\033[m"
end
function echo.Blue
echo -e "\\033[34m$argv\\033[m"
end
function echo.BoldBlue
echo -e "\\033[1;34m$argv\\033[m"
end
function echo.IBlue
echo -e "\\033[3;34m$argv\\033[m"
end
function echo.ULBlue
echo -e "\\033[4;34m$argv\\033[m"
end
function echo.BLBlue
echo -e "\\033[5;34m$argv\\033[m"
end
function echo.STBlue
echo -e "\\033[9;34m$argv\\033[m"
end
function echo.BoldIBlue
echo -e "\\033[1;3;34m$argv\\033[m"
end
function echo.BoldULBlue
echo -e "\\033[1;4;34m$argv\\033[m"
end
function echo.BoldBLBlue
echo -e "\\033[1;5;34m$argv\\033[m"
end
function echo.BoldSTBlue
echo -e "\\033[1;9;34m$argv\\033[m"
end
function echo.IBoldBlue
echo -e "\\033[3;1;34m$argv\\033[m"
end
function echo.IULBlue
echo -e "\\033[3;4;34m$argv\\033[m"
end
function echo.IBLBlue
echo -e "\\033[3;5;34m$argv\\033[m"
end
function echo.ISTBlue
echo -e "\\033[3;9;34m$argv\\033[m"
end
function echo.ULBoldBlue
echo -e "\\033[4;1;34m$argv\\033[m"
end
function echo.ULIBlue
echo -e "\\033[4;3;34m$argv\\033[m"
end
function echo.ULBLBlue
echo -e "\\033[4;5;34m$argv\\033[m"
end
function echo.ULSTBlue
echo -e "\\033[4;9;34m$argv\\033[m"
end
function echo.BLBoldBlue
echo -e "\\033[5;1;34m$argv\\033[m"
end
function echo.BLIBlue
echo -e "\\033[5;3;34m$argv\\033[m"
end
function echo.BLULBlue
echo -e "\\033[5;4;34m$argv\\033[m"
end
function echo.BLSTBlue
echo -e "\\033[5;9;34m$argv\\033[m"
end
function echo.STBoldBlue
echo -e "\\033[9;1;34m$argv\\033[m"
end
function echo.STIBlue
echo -e "\\033[9;3;34m$argv\\033[m"
end
function echo.STULBlue
echo -e "\\033[9;4;34m$argv\\033[m"
end
function echo.STBLBlue
echo -e "\\033[9;5;34m$argv\\033[m"
end
function echo.LightBlue
echo -e "\\033[94m$argv\\033[m"
end
function echo.LightBoldBlue
echo -e "\\033[1;94m$argv\\033[m"
end
function echo.LightIBlue
echo -e "\\033[3;94m$argv\\033[m"
end
function echo.LightULBlue
echo -e "\\033[4;94m$argv\\033[m"
end
function echo.LightBLBlue
echo -e "\\033[5;94m$argv\\033[m"
end
function echo.LightSTBlue
echo -e "\\033[9;94m$argv\\033[m"
end
function echo.LightBoldIBlue
echo -e "\\033[1;3;94m$argv\\033[m"
end
function echo.LightBoldULBlue
echo -e "\\033[1;4;94m$argv\\033[m"
end
function echo.LightBoldBLBlue
echo -e "\\033[1;5;94m$argv\\033[m"
end
function echo.LightBoldSTBlue
echo -e "\\033[1;9;94m$argv\\033[m"
end
function echo.LightIBoldBlue
echo -e "\\033[3;1;94m$argv\\033[m"
end