├── .editorconfig ├── .github └── FUNDING.yml ├── .markdownlint.json ├── .travis.yml ├── Demo.gif ├── Demo.png ├── LICENSE ├── README.md ├── color table.txt ├── dist ├── ColorEcho.bash ├── ColorEcho.fish ├── ColorEcho.ksh ├── ColorEcho.sh └── ColorEcho.zsh ├── generator.sh └── test-scripts ├── bash ├── fish ├── ksh ├── sh └── zsh /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [{*sh,*.md,*.yml}] 4 | indent_size = 2 5 | charset = utf-8 6 | indent_style = space 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: PeterDaveHello 2 | open_collective: peterdavehello 3 | ko_fi: peterdavehello 4 | liberapay: PeterDaveHello 5 | issuehunt: peterdavehello 6 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "default": true, 3 | "line-length": false 4 | } 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: minimal 2 | dist: jammy 3 | 4 | git: 5 | depth: 5 6 | 7 | jobs: 8 | include: 9 | 10 | # ShellCheck tests on generator and sh, ksh, bash dist files 11 | - stage: Static tests 12 | env: 13 | - task=shellcheck 14 | script: 15 | - shellcheck -x generator.sh 16 | - stage: Static tests 17 | env: 18 | - task=shellcheck-dist-sh 19 | script: 20 | - shellcheck dist/ColorEcho.sh 21 | - stage: Static tests 22 | env: 23 | - task=shellcheck-dist-ksh 24 | script: 25 | - shellcheck dist/ColorEcho.ksh 26 | - stage: Static tests 27 | env: 28 | - task=shellcheck-dist-bash 29 | script: 30 | - shellcheck dist/ColorEcho.bash 31 | - stage: Static tests 32 | language: node_js 33 | node_js: 34 | - "18" 35 | env: 36 | - task=editorconfig-check 37 | install: 38 | - npm i -g echint 39 | script: 40 | - echint 41 | - stage: Static tests 42 | env: 43 | - task=markdownlint 44 | services: 45 | - docker 46 | script: 47 | - docker run -it --rm -v "$(pwd)":/md peterdavehello/markdownlint markdownlint '**/*.md' 48 | - stage: Static tests 49 | env: 50 | - task=shfmt 51 | services: 52 | - docker 53 | script: 54 | - docker run -it --rm -v "$(pwd)":/sh -w /sh peterdavehello/shfmt:3.3.0 shfmt -sr -i 2 -l -w -ci . 55 | - git diff --color 56 | - git diff --stat=220 --color --exit-code 57 | 58 | # test all echo functions on difference shell on Linux 59 | - stage: Ubuntu runtime test 60 | env: 61 | - task=test-dist-sh 62 | script: 63 | - ./test-scripts/sh 64 | - stage: Ubuntu runtime test 65 | env: 66 | - task=test-dist-zsh 67 | addons: 68 | apt: 69 | packages: 70 | - zsh 71 | before_script: 72 | - type zsh && zsh --version 73 | script: 74 | - ./test-scripts/zsh 75 | - stage: Ubuntu runtime test 76 | env: 77 | - task=test-dist-ksh 78 | addons: 79 | apt: 80 | packages: 81 | - ksh 82 | before_script: 83 | - type ksh && ksh --version || printf "" 84 | script: 85 | - ./test-scripts/ksh 86 | - stage: Ubuntu runtime test 87 | env: 88 | - task=test-dist-bash 89 | before_script: 90 | - type bash && bash --version 91 | script: 92 | - ./test-scripts/bash 93 | - stage: Ubuntu runtime test 94 | env: 95 | - task=test-dist-fish 96 | addons: 97 | apt: 98 | packages: 99 | - fish 100 | before_script: 101 | - type fish && fish --version 102 | script: 103 | - ./test-scripts/fish 104 | 105 | # test all echo functions on difference shell(except sh, which is actually bash) on Mac 106 | - stage: macOS runtime test 107 | os: osx 108 | osx_image: xcode13.1 109 | env: 110 | - task=test-dist-zsh 111 | addons: 112 | homebrew: 113 | packages: 114 | - zsh 115 | before_script: 116 | - type zsh && zsh --version 117 | script: 118 | - ./test-scripts/zsh 119 | - stage: macOS runtime test 120 | os: osx 121 | osx_image: xcode13.1 122 | env: 123 | - task=test-dist-ksh 124 | addons: 125 | homebrew: 126 | packages: 127 | - ksh 128 | before_script: 129 | - type ksh && ksh --version || printf "" 130 | script: 131 | - ./test-scripts/ksh 132 | - stage: macOS runtime test 133 | os: osx 134 | osx_image: xcode13.1 135 | env: 136 | - task=test-dist-bash-builtin 137 | before_script: 138 | - type bash && bash --version 139 | script: 140 | - ./test-scripts/bash 141 | - stage: macOS runtime test 142 | os: osx 143 | osx_image: xcode13.1 144 | env: 145 | - task=test-dist-bash-brew-install 146 | addons: 147 | homebrew: 148 | packages: 149 | - bash 150 | before_script: 151 | - export PATH="/usr/local/bin:$PATH" 152 | - type bash && bash --version 153 | script: 154 | - ./test-scripts/bash 155 | - stage: macOS runtime test 156 | os: osx 157 | osx_image: xcode13.1 158 | env: 159 | - task=test-dist-fish 160 | addons: 161 | homebrew: 162 | packages: 163 | - fish 164 | before_script: 165 | - type fish && fish --version 166 | script: 167 | - ./test-scripts/fish 168 | -------------------------------------------------------------------------------- /Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDaveHello/ColorEchoForShell/c403e081780a2b31a38e0088bbb8db3c516e022f/Demo.gif -------------------------------------------------------------------------------- /Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterDaveHello/ColorEchoForShell/c403e081780a2b31a38e0088bbb8db3c516e022f/Demo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | 341 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ColorEchoForShell 2 | 3 | [![Build Status](https://app.travis-ci.com/PeterDaveHello/ColorEchoForShell.svg?branch=master)](https://app.travis-ci.com/PeterDaveHello/ColorEchoForShell) 4 | ![License badge](https://img.shields.io/badge/license-GPL%20v2.0-brightgreen.svg) 5 | 6 | **ColorEchoForShell** brings life to your shell scripts by making text output colorful and meaningful. Whether you're debugging, displaying warnings, or showcasing errors, ColorEchoForShell enhances readability and helps you quickly identify messages in various shell environments. 7 | 8 | ## Quick Start 9 | 10 | 1. Download the appropriate script for your shell (e.g., bash, sh, fish, ksh, zsh). 11 | 12 | - For bash, download [dist/ColorEcho.bash](./dist/ColorEcho.bash). 13 | - For other shells, choose the corresponding file from the [dist directory](./dist). 14 | 15 | 2. Source the script in your shell: 16 | 17 | ```bash 18 | . ./ColorEcho.bash # For bash 19 | ``` 20 | 21 | Replace `ColorEcho.bash` with the appropriate filename for your shell. 22 | 23 | 3. Try a colorful echo: 24 | 25 | ```bash 26 | echo.Cyan "Hello, colorful world!" 27 | ``` 28 | 29 | ## Features 30 | 31 | - **Versatile Compatibility**: Works with [bash](https://www.gnu.org/software/bash/), [sh](https://en.wikipedia.org/wiki/Bourne_shell), [fish](http://fishshell.com/), [ksh](http://www.kornshell.com/), and [zsh](http://www.zsh.org/). 32 | - **Easy to Use**: Simple syntax for applying styles and colors. 33 | - **Customizable**: Supports various styles, including bold, italic, underline, blink, and strikethrough. 34 | - **Environment-Dependent Colors**: Please note that [certain colors](./color%20table.txt#L9-L12) may vary depending on the terminal and environment settings. 35 | 36 | ## Table of Contents 37 | 38 | - [Installation](#installation) 39 | - [Usage](#usage) 40 | - [Examples](#examples) 41 | - [Supported Shells](#supported-shells) 42 | - [Supported Styles](#supported-styles) 43 | - [Supported Colors](#supported-colors) 44 | - [Additional Features](#additional-features) 45 | - [Community Contribution](#community-contribution) 46 | - [Screenshots](#screenshots) 47 | - [Demo](#demo) 48 | - [License](#license) 49 | - [Author](#author) 50 | 51 | ## Installation 52 | 53 | To utilize ColorEchoForShell in your shell scripts, download the appropriate script for your specific shell from the [dist directory](./dist). Then, include the ColorEchoForShell script at the beginning of your script by sourcing it: 54 | 55 | ```bash 56 | source ./ColorEcho.bash 57 | ``` 58 | 59 | Replace `./ColorEcho.bash` with the relative path to the downloaded ColorEchoForShell script. 60 | 61 | This inclusion will enable all the features of ColorEchoForShell within your script. 62 | 63 | ## Usage 64 | 65 | Use the `echo.StyleColor` syntax to print colorful text. In `ksh`/`sh`, omit the `.` dot symbol. You can combine up to two styles; the order doesn't matter. 66 | 67 | ### Examples 68 | 69 | - `echo.Cyan`: Prints text in cyan color. 70 | - `echo.ICyan`: Prints text in italic cyan. 71 | - `echo.ULCyan`: Prints text in underline cyan. 72 | - `echo.BLCyan`: Prints text in blinking cyan. 73 | - `echo.STCyan`: Prints text with strikethrough in cyan. 74 | - `echo.BoldCyan`: Prints text in bold cyan. 75 | - `echo.BoldULCyan`: Prints text in bold underline cyan. 76 | - `echo.ULBoldCyan`: Prints text in underline bold cyan. 77 | 78 | ## Supported Shells 79 | 80 | - [Bourne shell (sh)](https://en.wikipedia.org/wiki/Bourne_shell) 81 | - [Bourne-Again shell (bash)](https://www.gnu.org/software/bash/) 82 | - [Z shell (Zsh)](http://zsh.sourceforge.net/) 83 | - [Korn shell (ksh)](http://www.kornshell.org/) 84 | - [Friendly interactive shell (fish)](http://fishshell.com/) 85 | 86 | ## Supported Styles 87 | 88 | - Bold: `Bold` 89 | - Italic: `I` 90 | - Underline: `UL` 91 | - Blink: `BL` 92 | - Strikethrough: `ST` 93 | 94 | ## Supported Colors 95 | 96 | - Refer to the [color table](./color%20table.txt). 97 | - Use the `Light` keyword for lighter versions of standard colors (coded in range 0~7), e.g., `LightYellow`. 98 | 99 | ## Additional Features 100 | 101 | - **Rainbow Output**: If you have [lolcat](https://github.com/busyloop/lolcat), try `echo.Rainbow`. 102 | 103 | ## Community Contribution 104 | 105 | We welcome contributions, bug reports, and suggestions. Feel free to open an issue or submit a pull request. 106 | 107 | ## Screenshots 108 | 109 | ![Screenshot](Demo.png) 110 | 111 | ## Demo 112 | 113 | ![Demo](Demo.gif) 114 | 115 | ## License 116 | 117 | GPL-2.0 (GNU GENERAL PUBLIC LICENSE Version 2) 118 | 119 | ## Author 120 | 121 | [Peter Dave Hello](https://www.peterdavehello.org/), [@Twitter](https://twitter.com/PeterDaveHello), [@GitHub](https://github.com/PeterDaveHello), [@GitLab](https://gitlab.com/PeterDaveHello) 122 | -------------------------------------------------------------------------------- /color table.txt: -------------------------------------------------------------------------------- 1 | Black 0 2 | Red 1 3 | Green 2 4 | Yellow 3 5 | Blue 4 6 | Magenta 5 7 | Cyan 6 8 | White 7 9 | Purple ;38;5;93 10 | Orange ;38;5;202 11 | Pink ;38;5;206 12 | Brown ;38;5;52 13 | -------------------------------------------------------------------------------- /dist/ColorEcho.ksh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ksh 2 | 3 | # ColorEchoForShell 4 | # https://github.com/PeterDaveHello/ColorEchoForShell 5 | # Copyright (C) 2015 ~ Peter Dave Hello 6 | # 7 | # This program is free software; you can redistribute it and/or modify 8 | # it under the terms of the GNU General Public License as published by 9 | # the Free Software Foundation; either version 2 of the License, or (at 10 | # your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, but 13 | # WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 | # General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU General Public License 18 | # along with this program; if not, write to the Free Software 19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 20 | # USA. 21 | 22 | function echoBlack { 23 | echo -e "\\033[30m$*\\033[m" 24 | } 25 | 26 | function echoBoldBlack { 27 | echo -e "\\033[1;30m$*\\033[m" 28 | } 29 | 30 | function echoIBlack { 31 | echo -e "\\033[3;30m$*\\033[m" 32 | } 33 | 34 | function echoULBlack { 35 | echo -e "\\033[4;30m$*\\033[m" 36 | } 37 | 38 | function echoBLBlack { 39 | echo -e "\\033[5;30m$*\\033[m" 40 | } 41 | 42 | function echoSTBlack { 43 | echo -e "\\033[9;30m$*\\033[m" 44 | } 45 | 46 | function echoBoldIBlack { 47 | echo -e "\\033[1;3;30m$*\\033[m" 48 | } 49 | 50 | function echoBoldULBlack { 51 | echo -e "\\033[1;4;30m$*\\033[m" 52 | } 53 | 54 | function echoBoldBLBlack { 55 | echo -e "\\033[1;5;30m$*\\033[m" 56 | } 57 | 58 | function echoBoldSTBlack { 59 | echo -e "\\033[1;9;30m$*\\033[m" 60 | } 61 | 62 | function echoIBoldBlack { 63 | echo -e "\\033[3;1;30m$*\\033[m" 64 | } 65 | 66 | function echoIULBlack { 67 | echo -e "\\033[3;4;30m$*\\033[m" 68 | } 69 | 70 | function echoIBLBlack { 71 | echo -e "\\033[3;5;30m$*\\033[m" 72 | } 73 | 74 | function echoISTBlack { 75 | echo -e "\\033[3;9;30m$*\\033[m" 76 | } 77 | 78 | function echoULBoldBlack { 79 | echo -e "\\033[4;1;30m$*\\033[m" 80 | } 81 | 82 | function echoULIBlack { 83 | echo -e "\\033[4;3;30m$*\\033[m" 84 | } 85 | 86 | function echoULBLBlack { 87 | echo -e "\\033[4;5;30m$*\\033[m" 88 | } 89 | 90 | function echoULSTBlack { 91 | echo -e "\\033[4;9;30m$*\\033[m" 92 | } 93 | 94 | function echoBLBoldBlack { 95 | echo -e "\\033[5;1;30m$*\\033[m" 96 | } 97 | 98 | function echoBLIBlack { 99 | echo -e "\\033[5;3;30m$*\\033[m" 100 | } 101 | 102 | function echoBLULBlack { 103 | echo -e "\\033[5;4;30m$*\\033[m" 104 | } 105 | 106 | function echoBLSTBlack { 107 | echo -e "\\033[5;9;30m$*\\033[m" 108 | } 109 | 110 | function echoSTBoldBlack { 111 | echo -e "\\033[9;1;30m$*\\033[m" 112 | } 113 | 114 | function echoSTIBlack { 115 | echo -e "\\033[9;3;30m$*\\033[m" 116 | } 117 | 118 | function echoSTULBlack { 119 | echo -e "\\033[9;4;30m$*\\033[m" 120 | } 121 | 122 | function echoSTBLBlack { 123 | echo -e "\\033[9;5;30m$*\\033[m" 124 | } 125 | 126 | function echoLightBlack { 127 | echo -e "\\033[90m$*\\033[m" 128 | } 129 | 130 | function echoLightBoldBlack { 131 | echo -e "\\033[1;90m$*\\033[m" 132 | } 133 | 134 | function echoLightIBlack { 135 | echo -e "\\033[3;90m$*\\033[m" 136 | } 137 | 138 | function echoLightULBlack { 139 | echo -e "\\033[4;90m$*\\033[m" 140 | } 141 | 142 | function echoLightBLBlack { 143 | echo -e "\\033[5;90m$*\\033[m" 144 | } 145 | 146 | function echoLightSTBlack { 147 | echo -e "\\033[9;90m$*\\033[m" 148 | } 149 | 150 | function echoLightBoldIBlack { 151 | echo -e "\\033[1;3;90m$*\\033[m" 152 | } 153 | 154 | function echoLightBoldULBlack { 155 | echo -e "\\033[1;4;90m$*\\033[m" 156 | } 157 | 158 | function echoLightBoldBLBlack { 159 | echo -e "\\033[1;5;90m$*\\033[m" 160 | } 161 | 162 | function echoLightBoldSTBlack { 163 | echo -e "\\033[1;9;90m$*\\033[m" 164 | } 165 | 166 | function echoLightIBoldBlack { 167 | echo -e "\\033[3;1;90m$*\\033[m" 168 | } 169 | 170 | function echoLightIULBlack { 171 | echo -e "\\033[3;4;90m$*\\033[m" 172 | } 173 | 174 | function echoLightIBLBlack { 175 | echo -e "\\033[3;5;90m$*\\033[m" 176 | } 177 | 178 | function echoLightISTBlack { 179 | echo -e "\\033[3;9;90m$*\\033[m" 180 | } 181 | 182 | function echoLightULBoldBlack { 183 | echo -e "\\033[4;1;90m$*\\033[m" 184 | } 185 | 186 | function echoLightULIBlack { 187 | echo -e "\\033[4;3;90m$*\\033[m" 188 | } 189 | 190 | function echoLightULBLBlack { 191 | echo -e "\\033[4;5;90m$*\\033[m" 192 | } 193 | 194 | function echoLightULSTBlack { 195 | echo -e "\\033[4;9;90m$*\\033[m" 196 | } 197 | 198 | function echoLightBLBoldBlack { 199 | echo -e "\\033[5;1;90m$*\\033[m" 200 | } 201 | 202 | function echoLightBLIBlack { 203 | echo -e "\\033[5;3;90m$*\\033[m" 204 | } 205 | 206 | function echoLightBLULBlack { 207 | echo -e "\\033[5;4;90m$*\\033[m" 208 | } 209 | 210 | function echoLightBLSTBlack { 211 | echo -e "\\033[5;9;90m$*\\033[m" 212 | } 213 | 214 | function echoLightSTBoldBlack { 215 | echo -e "\\033[9;1;90m$*\\033[m" 216 | } 217 | 218 | function echoLightSTIBlack { 219 | echo -e "\\033[9;3;90m$*\\033[m" 220 | } 221 | 222 | function echoLightSTULBlack { 223 | echo -e "\\033[9;4;90m$*\\033[m" 224 | } 225 | 226 | function echoLightSTBLBlack { 227 | echo -e "\\033[9;5;90m$*\\033[m" 228 | } 229 | 230 | function echoRed { 231 | echo -e "\\033[31m$*\\033[m" 232 | } 233 | 234 | function echoBoldRed { 235 | echo -e "\\033[1;31m$*\\033[m" 236 | } 237 | 238 | function echoIRed { 239 | echo -e "\\033[3;31m$*\\033[m" 240 | } 241 | 242 | function echoULRed { 243 | echo -e "\\033[4;31m$*\\033[m" 244 | } 245 | 246 | function echoBLRed { 247 | echo -e "\\033[5;31m$*\\033[m" 248 | } 249 | 250 | function echoSTRed { 251 | echo -e "\\033[9;31m$*\\033[m" 252 | } 253 | 254 | function echoBoldIRed { 255 | echo -e "\\033[1;3;31m$*\\033[m" 256 | } 257 | 258 | function echoBoldULRed { 259 | echo -e "\\033[1;4;31m$*\\033[m" 260 | } 261 | 262 | function echoBoldBLRed { 263 | echo -e "\\033[1;5;31m$*\\033[m" 264 | } 265 | 266 | function echoBoldSTRed { 267 | echo -e "\\033[1;9;31m$*\\033[m" 268 | } 269 | 270 | function echoIBoldRed { 271 | echo -e "\\033[3;1;31m$*\\033[m" 272 | } 273 | 274 | function echoIULRed { 275 | echo -e "\\033[3;4;31m$*\\033[m" 276 | } 277 | 278 | function echoIBLRed { 279 | echo -e "\\033[3;5;31m$*\\033[m" 280 | } 281 | 282 | function echoISTRed { 283 | echo -e "\\033[3;9;31m$*\\033[m" 284 | } 285 | 286 | function echoULBoldRed { 287 | echo -e "\\033[4;1;31m$*\\033[m" 288 | } 289 | 290 | function echoULIRed { 291 | echo -e "\\033[4;3;31m$*\\033[m" 292 | } 293 | 294 | function echoULBLRed { 295 | echo -e "\\033[4;5;31m$*\\033[m" 296 | } 297 | 298 | function echoULSTRed { 299 | echo -e "\\033[4;9;31m$*\\033[m" 300 | } 301 | 302 | function echoBLBoldRed { 303 | echo -e "\\033[5;1;31m$*\\033[m" 304 | } 305 | 306 | function echoBLIRed { 307 | echo -e "\\033[5;3;31m$*\\033[m" 308 | } 309 | 310 | function echoBLULRed { 311 | echo -e "\\033[5;4;31m$*\\033[m" 312 | } 313 | 314 | function echoBLSTRed { 315 | echo -e "\\033[5;9;31m$*\\033[m" 316 | } 317 | 318 | function echoSTBoldRed { 319 | echo -e "\\033[9;1;31m$*\\033[m" 320 | } 321 | 322 | function echoSTIRed { 323 | echo -e "\\033[9;3;31m$*\\033[m" 324 | } 325 | 326 | function echoSTULRed { 327 | echo -e "\\033[9;4;31m$*\\033[m" 328 | } 329 | 330 | function echoSTBLRed { 331 | echo -e "\\033[9;5;31m$*\\033[m" 332 | } 333 | 334 | function echoLightRed { 335 | echo -e "\\033[91m$*\\033[m" 336 | } 337 | 338 | function echoLightBoldRed { 339 | echo -e "\\033[1;91m$*\\033[m" 340 | } 341 | 342 | function echoLightIRed { 343 | echo -e "\\033[3;91m$*\\033[m" 344 | } 345 | 346 | function echoLightULRed { 347 | echo -e "\\033[4;91m$*\\033[m" 348 | } 349 | 350 | function echoLightBLRed { 351 | echo -e "\\033[5;91m$*\\033[m" 352 | } 353 | 354 | function echoLightSTRed { 355 | echo -e "\\033[9;91m$*\\033[m" 356 | } 357 | 358 | function echoLightBoldIRed { 359 | echo -e "\\033[1;3;91m$*\\033[m" 360 | } 361 | 362 | function echoLightBoldULRed { 363 | echo -e "\\033[1;4;91m$*\\033[m" 364 | } 365 | 366 | function echoLightBoldBLRed { 367 | echo -e "\\033[1;5;91m$*\\033[m" 368 | } 369 | 370 | function echoLightBoldSTRed { 371 | echo -e "\\033[1;9;91m$*\\033[m" 372 | } 373 | 374 | function echoLightIBoldRed { 375 | echo -e "\\033[3;1;91m$*\\033[m" 376 | } 377 | 378 | function echoLightIULRed { 379 | echo -e "\\033[3;4;91m$*\\033[m" 380 | } 381 | 382 | function echoLightIBLRed { 383 | echo -e "\\033[3;5;91m$*\\033[m" 384 | } 385 | 386 | function echoLightISTRed { 387 | echo -e "\\033[3;9;91m$*\\033[m" 388 | } 389 | 390 | function echoLightULBoldRed { 391 | echo -e "\\033[4;1;91m$*\\033[m" 392 | } 393 | 394 | function echoLightULIRed { 395 | echo -e "\\033[4;3;91m$*\\033[m" 396 | } 397 | 398 | function echoLightULBLRed { 399 | echo -e "\\033[4;5;91m$*\\033[m" 400 | } 401 | 402 | function echoLightULSTRed { 403 | echo -e "\\033[4;9;91m$*\\033[m" 404 | } 405 | 406 | function echoLightBLBoldRed { 407 | echo -e "\\033[5;1;91m$*\\033[m" 408 | } 409 | 410 | function echoLightBLIRed { 411 | echo -e "\\033[5;3;91m$*\\033[m" 412 | } 413 | 414 | function echoLightBLULRed { 415 | echo -e "\\033[5;4;91m$*\\033[m" 416 | } 417 | 418 | function echoLightBLSTRed { 419 | echo -e "\\033[5;9;91m$*\\033[m" 420 | } 421 | 422 | function echoLightSTBoldRed { 423 | echo -e "\\033[9;1;91m$*\\033[m" 424 | } 425 | 426 | function echoLightSTIRed { 427 | echo -e "\\033[9;3;91m$*\\033[m" 428 | } 429 | 430 | function echoLightSTULRed { 431 | echo -e "\\033[9;4;91m$*\\033[m" 432 | } 433 | 434 | function echoLightSTBLRed { 435 | echo -e "\\033[9;5;91m$*\\033[m" 436 | } 437 | 438 | function echoGreen { 439 | echo -e "\\033[32m$*\\033[m" 440 | } 441 | 442 | function echoBoldGreen { 443 | echo -e "\\033[1;32m$*\\033[m" 444 | } 445 | 446 | function echoIGreen { 447 | echo -e "\\033[3;32m$*\\033[m" 448 | } 449 | 450 | function echoULGreen { 451 | echo -e "\\033[4;32m$*\\033[m" 452 | } 453 | 454 | function echoBLGreen { 455 | echo -e "\\033[5;32m$*\\033[m" 456 | } 457 | 458 | function echoSTGreen { 459 | echo -e "\\033[9;32m$*\\033[m" 460 | } 461 | 462 | function echoBoldIGreen { 463 | echo -e "\\033[1;3;32m$*\\033[m" 464 | } 465 | 466 | function echoBoldULGreen { 467 | echo -e "\\033[1;4;32m$*\\033[m" 468 | } 469 | 470 | function echoBoldBLGreen { 471 | echo -e "\\033[1;5;32m$*\\033[m" 472 | } 473 | 474 | function echoBoldSTGreen { 475 | echo -e "\\033[1;9;32m$*\\033[m" 476 | } 477 | 478 | function echoIBoldGreen { 479 | echo -e "\\033[3;1;32m$*\\033[m" 480 | } 481 | 482 | function echoIULGreen { 483 | echo -e "\\033[3;4;32m$*\\033[m" 484 | } 485 | 486 | function echoIBLGreen { 487 | echo -e "\\033[3;5;32m$*\\033[m" 488 | } 489 | 490 | function echoISTGreen { 491 | echo -e "\\033[3;9;32m$*\\033[m" 492 | } 493 | 494 | function echoULBoldGreen { 495 | echo -e "\\033[4;1;32m$*\\033[m" 496 | } 497 | 498 | function echoULIGreen { 499 | echo -e "\\033[4;3;32m$*\\033[m" 500 | } 501 | 502 | function echoULBLGreen { 503 | echo -e "\\033[4;5;32m$*\\033[m" 504 | } 505 | 506 | function echoULSTGreen { 507 | echo -e "\\033[4;9;32m$*\\033[m" 508 | } 509 | 510 | function echoBLBoldGreen { 511 | echo -e "\\033[5;1;32m$*\\033[m" 512 | } 513 | 514 | function echoBLIGreen { 515 | echo -e "\\033[5;3;32m$*\\033[m" 516 | } 517 | 518 | function echoBLULGreen { 519 | echo -e "\\033[5;4;32m$*\\033[m" 520 | } 521 | 522 | function echoBLSTGreen { 523 | echo -e "\\033[5;9;32m$*\\033[m" 524 | } 525 | 526 | function echoSTBoldGreen { 527 | echo -e "\\033[9;1;32m$*\\033[m" 528 | } 529 | 530 | function echoSTIGreen { 531 | echo -e "\\033[9;3;32m$*\\033[m" 532 | } 533 | 534 | function echoSTULGreen { 535 | echo -e "\\033[9;4;32m$*\\033[m" 536 | } 537 | 538 | function echoSTBLGreen { 539 | echo -e "\\033[9;5;32m$*\\033[m" 540 | } 541 | 542 | function echoLightGreen { 543 | echo -e "\\033[92m$*\\033[m" 544 | } 545 | 546 | function echoLightBoldGreen { 547 | echo -e "\\033[1;92m$*\\033[m" 548 | } 549 | 550 | function echoLightIGreen { 551 | echo -e "\\033[3;92m$*\\033[m" 552 | } 553 | 554 | function echoLightULGreen { 555 | echo -e "\\033[4;92m$*\\033[m" 556 | } 557 | 558 | function echoLightBLGreen { 559 | echo -e "\\033[5;92m$*\\033[m" 560 | } 561 | 562 | function echoLightSTGreen { 563 | echo -e "\\033[9;92m$*\\033[m" 564 | } 565 | 566 | function echoLightBoldIGreen { 567 | echo -e "\\033[1;3;92m$*\\033[m" 568 | } 569 | 570 | function echoLightBoldULGreen { 571 | echo -e "\\033[1;4;92m$*\\033[m" 572 | } 573 | 574 | function echoLightBoldBLGreen { 575 | echo -e "\\033[1;5;92m$*\\033[m" 576 | } 577 | 578 | function echoLightBoldSTGreen { 579 | echo -e "\\033[1;9;92m$*\\033[m" 580 | } 581 | 582 | function echoLightIBoldGreen { 583 | echo -e "\\033[3;1;92m$*\\033[m" 584 | } 585 | 586 | function echoLightIULGreen { 587 | echo -e "\\033[3;4;92m$*\\033[m" 588 | } 589 | 590 | function echoLightIBLGreen { 591 | echo -e "\\033[3;5;92m$*\\033[m" 592 | } 593 | 594 | function echoLightISTGreen { 595 | echo -e "\\033[3;9;92m$*\\033[m" 596 | } 597 | 598 | function echoLightULBoldGreen { 599 | echo -e "\\033[4;1;92m$*\\033[m" 600 | } 601 | 602 | function echoLightULIGreen { 603 | echo -e "\\033[4;3;92m$*\\033[m" 604 | } 605 | 606 | function echoLightULBLGreen { 607 | echo -e "\\033[4;5;92m$*\\033[m" 608 | } 609 | 610 | function echoLightULSTGreen { 611 | echo -e "\\033[4;9;92m$*\\033[m" 612 | } 613 | 614 | function echoLightBLBoldGreen { 615 | echo -e "\\033[5;1;92m$*\\033[m" 616 | } 617 | 618 | function echoLightBLIGreen { 619 | echo -e "\\033[5;3;92m$*\\033[m" 620 | } 621 | 622 | function echoLightBLULGreen { 623 | echo -e "\\033[5;4;92m$*\\033[m" 624 | } 625 | 626 | function echoLightBLSTGreen { 627 | echo -e "\\033[5;9;92m$*\\033[m" 628 | } 629 | 630 | function echoLightSTBoldGreen { 631 | echo -e "\\033[9;1;92m$*\\033[m" 632 | } 633 | 634 | function echoLightSTIGreen { 635 | echo -e "\\033[9;3;92m$*\\033[m" 636 | } 637 | 638 | function echoLightSTULGreen { 639 | echo -e "\\033[9;4;92m$*\\033[m" 640 | } 641 | 642 | function echoLightSTBLGreen { 643 | echo -e "\\033[9;5;92m$*\\033[m" 644 | } 645 | 646 | function echoYellow { 647 | echo -e "\\033[33m$*\\033[m" 648 | } 649 | 650 | function echoBoldYellow { 651 | echo -e "\\033[1;33m$*\\033[m" 652 | } 653 | 654 | function echoIYellow { 655 | echo -e "\\033[3;33m$*\\033[m" 656 | } 657 | 658 | function echoULYellow { 659 | echo -e "\\033[4;33m$*\\033[m" 660 | } 661 | 662 | function echoBLYellow { 663 | echo -e "\\033[5;33m$*\\033[m" 664 | } 665 | 666 | function echoSTYellow { 667 | echo -e "\\033[9;33m$*\\033[m" 668 | } 669 | 670 | function echoBoldIYellow { 671 | echo -e "\\033[1;3;33m$*\\033[m" 672 | } 673 | 674 | function echoBoldULYellow { 675 | echo -e "\\033[1;4;33m$*\\033[m" 676 | } 677 | 678 | function echoBoldBLYellow { 679 | echo -e "\\033[1;5;33m$*\\033[m" 680 | } 681 | 682 | function echoBoldSTYellow { 683 | echo -e "\\033[1;9;33m$*\\033[m" 684 | } 685 | 686 | function echoIBoldYellow { 687 | echo -e "\\033[3;1;33m$*\\033[m" 688 | } 689 | 690 | function echoIULYellow { 691 | echo -e "\\033[3;4;33m$*\\033[m" 692 | } 693 | 694 | function echoIBLYellow { 695 | echo -e "\\033[3;5;33m$*\\033[m" 696 | } 697 | 698 | function echoISTYellow { 699 | echo -e "\\033[3;9;33m$*\\033[m" 700 | } 701 | 702 | function echoULBoldYellow { 703 | echo -e "\\033[4;1;33m$*\\033[m" 704 | } 705 | 706 | function echoULIYellow { 707 | echo -e "\\033[4;3;33m$*\\033[m" 708 | } 709 | 710 | function echoULBLYellow { 711 | echo -e "\\033[4;5;33m$*\\033[m" 712 | } 713 | 714 | function echoULSTYellow { 715 | echo -e "\\033[4;9;33m$*\\033[m" 716 | } 717 | 718 | function echoBLBoldYellow { 719 | echo -e "\\033[5;1;33m$*\\033[m" 720 | } 721 | 722 | function echoBLIYellow { 723 | echo -e "\\033[5;3;33m$*\\033[m" 724 | } 725 | 726 | function echoBLULYellow { 727 | echo -e "\\033[5;4;33m$*\\033[m" 728 | } 729 | 730 | function echoBLSTYellow { 731 | echo -e "\\033[5;9;33m$*\\033[m" 732 | } 733 | 734 | function echoSTBoldYellow { 735 | echo -e "\\033[9;1;33m$*\\033[m" 736 | } 737 | 738 | function echoSTIYellow { 739 | echo -e "\\033[9;3;33m$*\\033[m" 740 | } 741 | 742 | function echoSTULYellow { 743 | echo -e "\\033[9;4;33m$*\\033[m" 744 | } 745 | 746 | function echoSTBLYellow { 747 | echo -e "\\033[9;5;33m$*\\033[m" 748 | } 749 | 750 | function echoLightYellow { 751 | echo -e "\\033[93m$*\\033[m" 752 | } 753 | 754 | function echoLightBoldYellow { 755 | echo -e "\\033[1;93m$*\\033[m" 756 | } 757 | 758 | function echoLightIYellow { 759 | echo -e "\\033[3;93m$*\\033[m" 760 | } 761 | 762 | function echoLightULYellow { 763 | echo -e "\\033[4;93m$*\\033[m" 764 | } 765 | 766 | function echoLightBLYellow { 767 | echo -e "\\033[5;93m$*\\033[m" 768 | } 769 | 770 | function echoLightSTYellow { 771 | echo -e "\\033[9;93m$*\\033[m" 772 | } 773 | 774 | function echoLightBoldIYellow { 775 | echo -e "\\033[1;3;93m$*\\033[m" 776 | } 777 | 778 | function echoLightBoldULYellow { 779 | echo -e "\\033[1;4;93m$*\\033[m" 780 | } 781 | 782 | function echoLightBoldBLYellow { 783 | echo -e "\\033[1;5;93m$*\\033[m" 784 | } 785 | 786 | function echoLightBoldSTYellow { 787 | echo -e "\\033[1;9;93m$*\\033[m" 788 | } 789 | 790 | function echoLightIBoldYellow { 791 | echo -e "\\033[3;1;93m$*\\033[m" 792 | } 793 | 794 | function echoLightIULYellow { 795 | echo -e "\\033[3;4;93m$*\\033[m" 796 | } 797 | 798 | function echoLightIBLYellow { 799 | echo -e "\\033[3;5;93m$*\\033[m" 800 | } 801 | 802 | function echoLightISTYellow { 803 | echo -e "\\033[3;9;93m$*\\033[m" 804 | } 805 | 806 | function echoLightULBoldYellow { 807 | echo -e "\\033[4;1;93m$*\\033[m" 808 | } 809 | 810 | function echoLightULIYellow { 811 | echo -e "\\033[4;3;93m$*\\033[m" 812 | } 813 | 814 | function echoLightULBLYellow { 815 | echo -e "\\033[4;5;93m$*\\033[m" 816 | } 817 | 818 | function echoLightULSTYellow { 819 | echo -e "\\033[4;9;93m$*\\033[m" 820 | } 821 | 822 | function echoLightBLBoldYellow { 823 | echo -e "\\033[5;1;93m$*\\033[m" 824 | } 825 | 826 | function echoLightBLIYellow { 827 | echo -e "\\033[5;3;93m$*\\033[m" 828 | } 829 | 830 | function echoLightBLULYellow { 831 | echo -e "\\033[5;4;93m$*\\033[m" 832 | } 833 | 834 | function echoLightBLSTYellow { 835 | echo -e "\\033[5;9;93m$*\\033[m" 836 | } 837 | 838 | function echoLightSTBoldYellow { 839 | echo -e "\\033[9;1;93m$*\\033[m" 840 | } 841 | 842 | function echoLightSTIYellow { 843 | echo -e "\\033[9;3;93m$*\\033[m" 844 | } 845 | 846 | function echoLightSTULYellow { 847 | echo -e "\\033[9;4;93m$*\\033[m" 848 | } 849 | 850 | function echoLightSTBLYellow { 851 | echo -e "\\033[9;5;93m$*\\033[m" 852 | } 853 | 854 | function echoBlue { 855 | echo -e "\\033[34m$*\\033[m" 856 | } 857 | 858 | function echoBoldBlue { 859 | echo -e "\\033[1;34m$*\\033[m" 860 | } 861 | 862 | function echoIBlue { 863 | echo -e "\\033[3;34m$*\\033[m" 864 | } 865 | 866 | function echoULBlue { 867 | echo -e "\\033[4;34m$*\\033[m" 868 | } 869 | 870 | function echoBLBlue { 871 | echo -e "\\033[5;34m$*\\033[m" 872 | } 873 | 874 | function echoSTBlue { 875 | echo -e "\\033[9;34m$*\\033[m" 876 | } 877 | 878 | function echoBoldIBlue { 879 | echo -e "\\033[1;3;34m$*\\033[m" 880 | } 881 | 882 | function echoBoldULBlue { 883 | echo -e "\\033[1;4;34m$*\\033[m" 884 | } 885 | 886 | function echoBoldBLBlue { 887 | echo -e "\\033[1;5;34m$*\\033[m" 888 | } 889 | 890 | function echoBoldSTBlue { 891 | echo -e "\\033[1;9;34m$*\\033[m" 892 | } 893 | 894 | function echoIBoldBlue { 895 | echo -e "\\033[3;1;34m$*\\033[m" 896 | } 897 | 898 | function echoIULBlue { 899 | echo -e "\\033[3;4;34m$*\\033[m" 900 | } 901 | 902 | function echoIBLBlue { 903 | echo -e "\\033[3;5;34m$*\\033[m" 904 | } 905 | 906 | function echoISTBlue { 907 | echo -e "\\033[3;9;34m$*\\033[m" 908 | } 909 | 910 | function echoULBoldBlue { 911 | echo -e "\\033[4;1;34m$*\\033[m" 912 | } 913 | 914 | function echoULIBlue { 915 | echo -e "\\033[4;3;34m$*\\033[m" 916 | } 917 | 918 | function echoULBLBlue { 919 | echo -e "\\033[4;5;34m$*\\033[m" 920 | } 921 | 922 | function echoULSTBlue { 923 | echo -e "\\033[4;9;34m$*\\033[m" 924 | } 925 | 926 | function echoBLBoldBlue { 927 | echo -e "\\033[5;1;34m$*\\033[m" 928 | } 929 | 930 | function echoBLIBlue { 931 | echo -e "\\033[5;3;34m$*\\033[m" 932 | } 933 | 934 | function echoBLULBlue { 935 | echo -e "\\033[5;4;34m$*\\033[m" 936 | } 937 | 938 | function echoBLSTBlue { 939 | echo -e "\\033[5;9;34m$*\\033[m" 940 | } 941 | 942 | function echoSTBoldBlue { 943 | echo -e "\\033[9;1;34m$*\\033[m" 944 | } 945 | 946 | function echoSTIBlue { 947 | echo -e "\\033[9;3;34m$*\\033[m" 948 | } 949 | 950 | function echoSTULBlue { 951 | echo -e "\\033[9;4;34m$*\\033[m" 952 | } 953 | 954 | function echoSTBLBlue { 955 | echo -e "\\033[9;5;34m$*\\033[m" 956 | } 957 | 958 | function echoLightBlue { 959 | echo -e "\\033[94m$*\\033[m" 960 | } 961 | 962 | function echoLightBoldBlue { 963 | echo -e "\\033[1;94m$*\\033[m" 964 | } 965 | 966 | function echoLightIBlue { 967 | echo -e "\\033[3;94m$*\\033[m" 968 | } 969 | 970 | function echoLightULBlue { 971 | echo -e "\\033[4;94m$*\\033[m" 972 | } 973 | 974 | function echoLightBLBlue { 975 | echo -e "\\033[5;94m$*\\033[m" 976 | } 977 | 978 | function echoLightSTBlue { 979 | echo -e "\\033[9;94m$*\\033[m" 980 | } 981 | 982 | function echoLightBoldIBlue { 983 | echo -e "\\033[1;3;94m$*\\033[m" 984 | } 985 | 986 | function echoLightBoldULBlue { 987 | echo -e "\\033[1;4;94m$*\\033[m" 988 | } 989 | 990 | function echoLightBoldBLBlue { 991 | echo -e "\\033[1;5;94m$*\\033[m" 992 | } 993 | 994 | function echoLightBoldSTBlue { 995 | echo -e "\\033[1;9;94m$*\\033[m" 996 | } 997 | 998 | function echoLightIBoldBlue { 999 | echo -e "\\033[3;1;94m$*\\033[m" 1000 | } 1001 | 1002 | function echoLightIULBlue { 1003 | echo -e "\\033[3;4;94m$*\\033[m" 1004 | } 1005 | 1006 | function echoLightIBLBlue { 1007 | echo -e "\\033[3;5;94m$*\\033[m" 1008 | } 1009 | 1010 | function echoLightISTBlue { 1011 | echo -e "\\033[3;9;94m$*\\033[m" 1012 | } 1013 | 1014 | function echoLightULBoldBlue { 1015 | echo -e "\\033[4;1;94m$*\\033[m" 1016 | } 1017 | 1018 | function echoLightULIBlue { 1019 | echo -e "\\033[4;3;94m$*\\033[m" 1020 | } 1021 | 1022 | function echoLightULBLBlue { 1023 | echo -e "\\033[4;5;94m$*\\033[m" 1024 | } 1025 | 1026 | function echoLightULSTBlue { 1027 | echo -e "\\033[4;9;94m$*\\033[m" 1028 | } 1029 | 1030 | function echoLightBLBoldBlue { 1031 | echo -e "\\033[5;1;94m$*\\033[m" 1032 | } 1033 | 1034 | function echoLightBLIBlue { 1035 | echo -e "\\033[5;3;94m$*\\033[m" 1036 | } 1037 | 1038 | function echoLightBLULBlue { 1039 | echo -e "\\033[5;4;94m$*\\033[m" 1040 | } 1041 | 1042 | function echoLightBLSTBlue { 1043 | echo -e "\\033[5;9;94m$*\\033[m" 1044 | } 1045 | 1046 | function echoLightSTBoldBlue { 1047 | echo -e "\\033[9;1;94m$*\\033[m" 1048 | } 1049 | 1050 | function echoLightSTIBlue { 1051 | echo -e "\\033[9;3;94m$*\\033[m" 1052 | } 1053 | 1054 | function echoLightSTULBlue { 1055 | echo -e "\\033[9;4;94m$*\\033[m" 1056 | } 1057 | 1058 | function echoLightSTBLBlue { 1059 | echo -e "\\033[9;5;94m$*\\033[m" 1060 | } 1061 | 1062 | function echoMagenta { 1063 | echo -e "\\033[35m$*\\033[m" 1064 | } 1065 | 1066 | function echoBoldMagenta { 1067 | echo -e "\\033[1;35m$*\\033[m" 1068 | } 1069 | 1070 | function echoIMagenta { 1071 | echo -e "\\033[3;35m$*\\033[m" 1072 | } 1073 | 1074 | function echoULMagenta { 1075 | echo -e "\\033[4;35m$*\\033[m" 1076 | } 1077 | 1078 | function echoBLMagenta { 1079 | echo -e "\\033[5;35m$*\\033[m" 1080 | } 1081 | 1082 | function echoSTMagenta { 1083 | echo -e "\\033[9;35m$*\\033[m" 1084 | } 1085 | 1086 | function echoBoldIMagenta { 1087 | echo -e "\\033[1;3;35m$*\\033[m" 1088 | } 1089 | 1090 | function echoBoldULMagenta { 1091 | echo -e "\\033[1;4;35m$*\\033[m" 1092 | } 1093 | 1094 | function echoBoldBLMagenta { 1095 | echo -e "\\033[1;5;35m$*\\033[m" 1096 | } 1097 | 1098 | function echoBoldSTMagenta { 1099 | echo -e "\\033[1;9;35m$*\\033[m" 1100 | } 1101 | 1102 | function echoIBoldMagenta { 1103 | echo -e "\\033[3;1;35m$*\\033[m" 1104 | } 1105 | 1106 | function echoIULMagenta { 1107 | echo -e "\\033[3;4;35m$*\\033[m" 1108 | } 1109 | 1110 | function echoIBLMagenta { 1111 | echo -e "\\033[3;5;35m$*\\033[m" 1112 | } 1113 | 1114 | function echoISTMagenta { 1115 | echo -e "\\033[3;9;35m$*\\033[m" 1116 | } 1117 | 1118 | function echoULBoldMagenta { 1119 | echo -e "\\033[4;1;35m$*\\033[m" 1120 | } 1121 | 1122 | function echoULIMagenta { 1123 | echo -e "\\033[4;3;35m$*\\033[m" 1124 | } 1125 | 1126 | function echoULBLMagenta { 1127 | echo -e "\\033[4;5;35m$*\\033[m" 1128 | } 1129 | 1130 | function echoULSTMagenta { 1131 | echo -e "\\033[4;9;35m$*\\033[m" 1132 | } 1133 | 1134 | function echoBLBoldMagenta { 1135 | echo -e "\\033[5;1;35m$*\\033[m" 1136 | } 1137 | 1138 | function echoBLIMagenta { 1139 | echo -e "\\033[5;3;35m$*\\033[m" 1140 | } 1141 | 1142 | function echoBLULMagenta { 1143 | echo -e "\\033[5;4;35m$*\\033[m" 1144 | } 1145 | 1146 | function echoBLSTMagenta { 1147 | echo -e "\\033[5;9;35m$*\\033[m" 1148 | } 1149 | 1150 | function echoSTBoldMagenta { 1151 | echo -e "\\033[9;1;35m$*\\033[m" 1152 | } 1153 | 1154 | function echoSTIMagenta { 1155 | echo -e "\\033[9;3;35m$*\\033[m" 1156 | } 1157 | 1158 | function echoSTULMagenta { 1159 | echo -e "\\033[9;4;35m$*\\033[m" 1160 | } 1161 | 1162 | function echoSTBLMagenta { 1163 | echo -e "\\033[9;5;35m$*\\033[m" 1164 | } 1165 | 1166 | function echoLightMagenta { 1167 | echo -e "\\033[95m$*\\033[m" 1168 | } 1169 | 1170 | function echoLightBoldMagenta { 1171 | echo -e "\\033[1;95m$*\\033[m" 1172 | } 1173 | 1174 | function echoLightIMagenta { 1175 | echo -e "\\033[3;95m$*\\033[m" 1176 | } 1177 | 1178 | function echoLightULMagenta { 1179 | echo -e "\\033[4;95m$*\\033[m" 1180 | } 1181 | 1182 | function echoLightBLMagenta { 1183 | echo -e "\\033[5;95m$*\\033[m" 1184 | } 1185 | 1186 | function echoLightSTMagenta { 1187 | echo -e "\\033[9;95m$*\\033[m" 1188 | } 1189 | 1190 | function echoLightBoldIMagenta { 1191 | echo -e "\\033[1;3;95m$*\\033[m" 1192 | } 1193 | 1194 | function echoLightBoldULMagenta { 1195 | echo -e "\\033[1;4;95m$*\\033[m" 1196 | } 1197 | 1198 | function echoLightBoldBLMagenta { 1199 | echo -e "\\033[1;5;95m$*\\033[m" 1200 | } 1201 | 1202 | function echoLightBoldSTMagenta { 1203 | echo -e "\\033[1;9;95m$*\\033[m" 1204 | } 1205 | 1206 | function echoLightIBoldMagenta { 1207 | echo -e "\\033[3;1;95m$*\\033[m" 1208 | } 1209 | 1210 | function echoLightIULMagenta { 1211 | echo -e "\\033[3;4;95m$*\\033[m" 1212 | } 1213 | 1214 | function echoLightIBLMagenta { 1215 | echo -e "\\033[3;5;95m$*\\033[m" 1216 | } 1217 | 1218 | function echoLightISTMagenta { 1219 | echo -e "\\033[3;9;95m$*\\033[m" 1220 | } 1221 | 1222 | function echoLightULBoldMagenta { 1223 | echo -e "\\033[4;1;95m$*\\033[m" 1224 | } 1225 | 1226 | function echoLightULIMagenta { 1227 | echo -e "\\033[4;3;95m$*\\033[m" 1228 | } 1229 | 1230 | function echoLightULBLMagenta { 1231 | echo -e "\\033[4;5;95m$*\\033[m" 1232 | } 1233 | 1234 | function echoLightULSTMagenta { 1235 | echo -e "\\033[4;9;95m$*\\033[m" 1236 | } 1237 | 1238 | function echoLightBLBoldMagenta { 1239 | echo -e "\\033[5;1;95m$*\\033[m" 1240 | } 1241 | 1242 | function echoLightBLIMagenta { 1243 | echo -e "\\033[5;3;95m$*\\033[m" 1244 | } 1245 | 1246 | function echoLightBLULMagenta { 1247 | echo -e "\\033[5;4;95m$*\\033[m" 1248 | } 1249 | 1250 | function echoLightBLSTMagenta { 1251 | echo -e "\\033[5;9;95m$*\\033[m" 1252 | } 1253 | 1254 | function echoLightSTBoldMagenta { 1255 | echo -e "\\033[9;1;95m$*\\033[m" 1256 | } 1257 | 1258 | function echoLightSTIMagenta { 1259 | echo -e "\\033[9;3;95m$*\\033[m" 1260 | } 1261 | 1262 | function echoLightSTULMagenta { 1263 | echo -e "\\033[9;4;95m$*\\033[m" 1264 | } 1265 | 1266 | function echoLightSTBLMagenta { 1267 | echo -e "\\033[9;5;95m$*\\033[m" 1268 | } 1269 | 1270 | function echoCyan { 1271 | echo -e "\\033[36m$*\\033[m" 1272 | } 1273 | 1274 | function echoBoldCyan { 1275 | echo -e "\\033[1;36m$*\\033[m" 1276 | } 1277 | 1278 | function echoICyan { 1279 | echo -e "\\033[3;36m$*\\033[m" 1280 | } 1281 | 1282 | function echoULCyan { 1283 | echo -e "\\033[4;36m$*\\033[m" 1284 | } 1285 | 1286 | function echoBLCyan { 1287 | echo -e "\\033[5;36m$*\\033[m" 1288 | } 1289 | 1290 | function echoSTCyan { 1291 | echo -e "\\033[9;36m$*\\033[m" 1292 | } 1293 | 1294 | function echoBoldICyan { 1295 | echo -e "\\033[1;3;36m$*\\033[m" 1296 | } 1297 | 1298 | function echoBoldULCyan { 1299 | echo -e "\\033[1;4;36m$*\\033[m" 1300 | } 1301 | 1302 | function echoBoldBLCyan { 1303 | echo -e "\\033[1;5;36m$*\\033[m" 1304 | } 1305 | 1306 | function echoBoldSTCyan { 1307 | echo -e "\\033[1;9;36m$*\\033[m" 1308 | } 1309 | 1310 | function echoIBoldCyan { 1311 | echo -e "\\033[3;1;36m$*\\033[m" 1312 | } 1313 | 1314 | function echoIULCyan { 1315 | echo -e "\\033[3;4;36m$*\\033[m" 1316 | } 1317 | 1318 | function echoIBLCyan { 1319 | echo -e "\\033[3;5;36m$*\\033[m" 1320 | } 1321 | 1322 | function echoISTCyan { 1323 | echo -e "\\033[3;9;36m$*\\033[m" 1324 | } 1325 | 1326 | function echoULBoldCyan { 1327 | echo -e "\\033[4;1;36m$*\\033[m" 1328 | } 1329 | 1330 | function echoULICyan { 1331 | echo -e "\\033[4;3;36m$*\\033[m" 1332 | } 1333 | 1334 | function echoULBLCyan { 1335 | echo -e "\\033[4;5;36m$*\\033[m" 1336 | } 1337 | 1338 | function echoULSTCyan { 1339 | echo -e "\\033[4;9;36m$*\\033[m" 1340 | } 1341 | 1342 | function echoBLBoldCyan { 1343 | echo -e "\\033[5;1;36m$*\\033[m" 1344 | } 1345 | 1346 | function echoBLICyan { 1347 | echo -e "\\033[5;3;36m$*\\033[m" 1348 | } 1349 | 1350 | function echoBLULCyan { 1351 | echo -e "\\033[5;4;36m$*\\033[m" 1352 | } 1353 | 1354 | function echoBLSTCyan { 1355 | echo -e "\\033[5;9;36m$*\\033[m" 1356 | } 1357 | 1358 | function echoSTBoldCyan { 1359 | echo -e "\\033[9;1;36m$*\\033[m" 1360 | } 1361 | 1362 | function echoSTICyan { 1363 | echo -e "\\033[9;3;36m$*\\033[m" 1364 | } 1365 | 1366 | function echoSTULCyan { 1367 | echo -e "\\033[9;4;36m$*\\033[m" 1368 | } 1369 | 1370 | function echoSTBLCyan { 1371 | echo -e "\\033[9;5;36m$*\\033[m" 1372 | } 1373 | 1374 | function echoLightCyan { 1375 | echo -e "\\033[96m$*\\033[m" 1376 | } 1377 | 1378 | function echoLightBoldCyan { 1379 | echo -e "\\033[1;96m$*\\033[m" 1380 | } 1381 | 1382 | function echoLightICyan { 1383 | echo -e "\\033[3;96m$*\\033[m" 1384 | } 1385 | 1386 | function echoLightULCyan { 1387 | echo -e "\\033[4;96m$*\\033[m" 1388 | } 1389 | 1390 | function echoLightBLCyan { 1391 | echo -e "\\033[5;96m$*\\033[m" 1392 | } 1393 | 1394 | function echoLightSTCyan { 1395 | echo -e "\\033[9;96m$*\\033[m" 1396 | } 1397 | 1398 | function echoLightBoldICyan { 1399 | echo -e "\\033[1;3;96m$*\\033[m" 1400 | } 1401 | 1402 | function echoLightBoldULCyan { 1403 | echo -e "\\033[1;4;96m$*\\033[m" 1404 | } 1405 | 1406 | function echoLightBoldBLCyan { 1407 | echo -e "\\033[1;5;96m$*\\033[m" 1408 | } 1409 | 1410 | function echoLightBoldSTCyan { 1411 | echo -e "\\033[1;9;96m$*\\033[m" 1412 | } 1413 | 1414 | function echoLightIBoldCyan { 1415 | echo -e "\\033[3;1;96m$*\\033[m" 1416 | } 1417 | 1418 | function echoLightIULCyan { 1419 | echo -e "\\033[3;4;96m$*\\033[m" 1420 | } 1421 | 1422 | function echoLightIBLCyan { 1423 | echo -e "\\033[3;5;96m$*\\033[m" 1424 | } 1425 | 1426 | function echoLightISTCyan { 1427 | echo -e "\\033[3;9;96m$*\\033[m" 1428 | } 1429 | 1430 | function echoLightULBoldCyan { 1431 | echo -e "\\033[4;1;96m$*\\033[m" 1432 | } 1433 | 1434 | function echoLightULICyan { 1435 | echo -e "\\033[4;3;96m$*\\033[m" 1436 | } 1437 | 1438 | function echoLightULBLCyan { 1439 | echo -e "\\033[4;5;96m$*\\033[m" 1440 | } 1441 | 1442 | function echoLightULSTCyan { 1443 | echo -e "\\033[4;9;96m$*\\033[m" 1444 | } 1445 | 1446 | function echoLightBLBoldCyan { 1447 | echo -e "\\033[5;1;96m$*\\033[m" 1448 | } 1449 | 1450 | function echoLightBLICyan { 1451 | echo -e "\\033[5;3;96m$*\\033[m" 1452 | } 1453 | 1454 | function echoLightBLULCyan { 1455 | echo -e "\\033[5;4;96m$*\\033[m" 1456 | } 1457 | 1458 | function echoLightBLSTCyan { 1459 | echo -e "\\033[5;9;96m$*\\033[m" 1460 | } 1461 | 1462 | function echoLightSTBoldCyan { 1463 | echo -e "\\033[9;1;96m$*\\033[m" 1464 | } 1465 | 1466 | function echoLightSTICyan { 1467 | echo -e "\\033[9;3;96m$*\\033[m" 1468 | } 1469 | 1470 | function echoLightSTULCyan { 1471 | echo -e "\\033[9;4;96m$*\\033[m" 1472 | } 1473 | 1474 | function echoLightSTBLCyan { 1475 | echo -e "\\033[9;5;96m$*\\033[m" 1476 | } 1477 | 1478 | function echoWhite { 1479 | echo -e "\\033[37m$*\\033[m" 1480 | } 1481 | 1482 | function echoBoldWhite { 1483 | echo -e "\\033[1;37m$*\\033[m" 1484 | } 1485 | 1486 | function echoIWhite { 1487 | echo -e "\\033[3;37m$*\\033[m" 1488 | } 1489 | 1490 | function echoULWhite { 1491 | echo -e "\\033[4;37m$*\\033[m" 1492 | } 1493 | 1494 | function echoBLWhite { 1495 | echo -e "\\033[5;37m$*\\033[m" 1496 | } 1497 | 1498 | function echoSTWhite { 1499 | echo -e "\\033[9;37m$*\\033[m" 1500 | } 1501 | 1502 | function echoBoldIWhite { 1503 | echo -e "\\033[1;3;37m$*\\033[m" 1504 | } 1505 | 1506 | function echoBoldULWhite { 1507 | echo -e "\\033[1;4;37m$*\\033[m" 1508 | } 1509 | 1510 | function echoBoldBLWhite { 1511 | echo -e "\\033[1;5;37m$*\\033[m" 1512 | } 1513 | 1514 | function echoBoldSTWhite { 1515 | echo -e "\\033[1;9;37m$*\\033[m" 1516 | } 1517 | 1518 | function echoIBoldWhite { 1519 | echo -e "\\033[3;1;37m$*\\033[m" 1520 | } 1521 | 1522 | function echoIULWhite { 1523 | echo -e "\\033[3;4;37m$*\\033[m" 1524 | } 1525 | 1526 | function echoIBLWhite { 1527 | echo -e "\\033[3;5;37m$*\\033[m" 1528 | } 1529 | 1530 | function echoISTWhite { 1531 | echo -e "\\033[3;9;37m$*\\033[m" 1532 | } 1533 | 1534 | function echoULBoldWhite { 1535 | echo -e "\\033[4;1;37m$*\\033[m" 1536 | } 1537 | 1538 | function echoULIWhite { 1539 | echo -e "\\033[4;3;37m$*\\033[m" 1540 | } 1541 | 1542 | function echoULBLWhite { 1543 | echo -e "\\033[4;5;37m$*\\033[m" 1544 | } 1545 | 1546 | function echoULSTWhite { 1547 | echo -e "\\033[4;9;37m$*\\033[m" 1548 | } 1549 | 1550 | function echoBLBoldWhite { 1551 | echo -e "\\033[5;1;37m$*\\033[m" 1552 | } 1553 | 1554 | function echoBLIWhite { 1555 | echo -e "\\033[5;3;37m$*\\033[m" 1556 | } 1557 | 1558 | function echoBLULWhite { 1559 | echo -e "\\033[5;4;37m$*\\033[m" 1560 | } 1561 | 1562 | function echoBLSTWhite { 1563 | echo -e "\\033[5;9;37m$*\\033[m" 1564 | } 1565 | 1566 | function echoSTBoldWhite { 1567 | echo -e "\\033[9;1;37m$*\\033[m" 1568 | } 1569 | 1570 | function echoSTIWhite { 1571 | echo -e "\\033[9;3;37m$*\\033[m" 1572 | } 1573 | 1574 | function echoSTULWhite { 1575 | echo -e "\\033[9;4;37m$*\\033[m" 1576 | } 1577 | 1578 | function echoSTBLWhite { 1579 | echo -e "\\033[9;5;37m$*\\033[m" 1580 | } 1581 | 1582 | function echoLightWhite { 1583 | echo -e "\\033[97m$*\\033[m" 1584 | } 1585 | 1586 | function echoLightBoldWhite { 1587 | echo -e "\\033[1;97m$*\\033[m" 1588 | } 1589 | 1590 | function echoLightIWhite { 1591 | echo -e "\\033[3;97m$*\\033[m" 1592 | } 1593 | 1594 | function echoLightULWhite { 1595 | echo -e "\\033[4;97m$*\\033[m" 1596 | } 1597 | 1598 | function echoLightBLWhite { 1599 | echo -e "\\033[5;97m$*\\033[m" 1600 | } 1601 | 1602 | function echoLightSTWhite { 1603 | echo -e "\\033[9;97m$*\\033[m" 1604 | } 1605 | 1606 | function echoLightBoldIWhite { 1607 | echo -e "\\033[1;3;97m$*\\033[m" 1608 | } 1609 | 1610 | function echoLightBoldULWhite { 1611 | echo -e "\\033[1;4;97m$*\\033[m" 1612 | } 1613 | 1614 | function echoLightBoldBLWhite { 1615 | echo -e "\\033[1;5;97m$*\\033[m" 1616 | } 1617 | 1618 | function echoLightBoldSTWhite { 1619 | echo -e "\\033[1;9;97m$*\\033[m" 1620 | } 1621 | 1622 | function echoLightIBoldWhite { 1623 | echo -e "\\033[3;1;97m$*\\033[m" 1624 | } 1625 | 1626 | function echoLightIULWhite { 1627 | echo -e "\\033[3;4;97m$*\\033[m" 1628 | } 1629 | 1630 | function echoLightIBLWhite { 1631 | echo -e "\\033[3;5;97m$*\\033[m" 1632 | } 1633 | 1634 | function echoLightISTWhite { 1635 | echo -e "\\033[3;9;97m$*\\033[m" 1636 | } 1637 | 1638 | function echoLightULBoldWhite { 1639 | echo -e "\\033[4;1;97m$*\\033[m" 1640 | } 1641 | 1642 | function echoLightULIWhite { 1643 | echo -e "\\033[4;3;97m$*\\033[m" 1644 | } 1645 | 1646 | function echoLightULBLWhite { 1647 | echo -e "\\033[4;5;97m$*\\033[m" 1648 | } 1649 | 1650 | function echoLightULSTWhite { 1651 | echo -e "\\033[4;9;97m$*\\033[m" 1652 | } 1653 | 1654 | function echoLightBLBoldWhite { 1655 | echo -e "\\033[5;1;97m$*\\033[m" 1656 | } 1657 | 1658 | function echoLightBLIWhite { 1659 | echo -e "\\033[5;3;97m$*\\033[m" 1660 | } 1661 | 1662 | function echoLightBLULWhite { 1663 | echo -e "\\033[5;4;97m$*\\033[m" 1664 | } 1665 | 1666 | function echoLightBLSTWhite { 1667 | echo -e "\\033[5;9;97m$*\\033[m" 1668 | } 1669 | 1670 | function echoLightSTBoldWhite { 1671 | echo -e "\\033[9;1;97m$*\\033[m" 1672 | } 1673 | 1674 | function echoLightSTIWhite { 1675 | echo -e "\\033[9;3;97m$*\\033[m" 1676 | } 1677 | 1678 | function echoLightSTULWhite { 1679 | echo -e "\\033[9;4;97m$*\\033[m" 1680 | } 1681 | 1682 | function echoLightSTBLWhite { 1683 | echo -e "\\033[9;5;97m$*\\033[m" 1684 | } 1685 | 1686 | function echoPurple { 1687 | echo -e "\\033[3;38;5;93m$*\\033[m" 1688 | } 1689 | 1690 | function echoBoldPurple { 1691 | echo -e "\\033[1;3;38;5;93m$*\\033[m" 1692 | } 1693 | 1694 | function echoIPurple { 1695 | echo -e "\\033[3;3;38;5;93m$*\\033[m" 1696 | } 1697 | 1698 | function echoULPurple { 1699 | echo -e "\\033[4;3;38;5;93m$*\\033[m" 1700 | } 1701 | 1702 | function echoBLPurple { 1703 | echo -e "\\033[5;3;38;5;93m$*\\033[m" 1704 | } 1705 | 1706 | function echoSTPurple { 1707 | echo -e "\\033[9;3;38;5;93m$*\\033[m" 1708 | } 1709 | 1710 | function echoBoldIPurple { 1711 | echo -e "\\033[1;3;3;38;5;93m$*\\033[m" 1712 | } 1713 | 1714 | function echoBoldULPurple { 1715 | echo -e "\\033[1;4;3;38;5;93m$*\\033[m" 1716 | } 1717 | 1718 | function echoBoldBLPurple { 1719 | echo -e "\\033[1;5;3;38;5;93m$*\\033[m" 1720 | } 1721 | 1722 | function echoBoldSTPurple { 1723 | echo -e "\\033[1;9;3;38;5;93m$*\\033[m" 1724 | } 1725 | 1726 | function echoIBoldPurple { 1727 | echo -e "\\033[3;1;3;38;5;93m$*\\033[m" 1728 | } 1729 | 1730 | function echoIULPurple { 1731 | echo -e "\\033[3;4;3;38;5;93m$*\\033[m" 1732 | } 1733 | 1734 | function echoIBLPurple { 1735 | echo -e "\\033[3;5;3;38;5;93m$*\\033[m" 1736 | } 1737 | 1738 | function echoISTPurple { 1739 | echo -e "\\033[3;9;3;38;5;93m$*\\033[m" 1740 | } 1741 | 1742 | function echoULBoldPurple { 1743 | echo -e "\\033[4;1;3;38;5;93m$*\\033[m" 1744 | } 1745 | 1746 | function echoULIPurple { 1747 | echo -e "\\033[4;3;3;38;5;93m$*\\033[m" 1748 | } 1749 | 1750 | function echoULBLPurple { 1751 | echo -e "\\033[4;5;3;38;5;93m$*\\033[m" 1752 | } 1753 | 1754 | function echoULSTPurple { 1755 | echo -e "\\033[4;9;3;38;5;93m$*\\033[m" 1756 | } 1757 | 1758 | function echoBLBoldPurple { 1759 | echo -e "\\033[5;1;3;38;5;93m$*\\033[m" 1760 | } 1761 | 1762 | function echoBLIPurple { 1763 | echo -e "\\033[5;3;3;38;5;93m$*\\033[m" 1764 | } 1765 | 1766 | function echoBLULPurple { 1767 | echo -e "\\033[5;4;3;38;5;93m$*\\033[m" 1768 | } 1769 | 1770 | function echoBLSTPurple { 1771 | echo -e "\\033[5;9;3;38;5;93m$*\\033[m" 1772 | } 1773 | 1774 | function echoSTBoldPurple { 1775 | echo -e "\\033[9;1;3;38;5;93m$*\\033[m" 1776 | } 1777 | 1778 | function echoSTIPurple { 1779 | echo -e "\\033[9;3;3;38;5;93m$*\\033[m" 1780 | } 1781 | 1782 | function echoSTULPurple { 1783 | echo -e "\\033[9;4;3;38;5;93m$*\\033[m" 1784 | } 1785 | 1786 | function echoSTBLPurple { 1787 | echo -e "\\033[9;5;3;38;5;93m$*\\033[m" 1788 | } 1789 | 1790 | function echoLightPurple { 1791 | echo -e "\\033[9;38;5;93m$*\\033[m" 1792 | } 1793 | 1794 | function echoLightBoldPurple { 1795 | echo -e "\\033[1;9;38;5;93m$*\\033[m" 1796 | } 1797 | 1798 | function echoLightIPurple { 1799 | echo -e "\\033[3;9;38;5;93m$*\\033[m" 1800 | } 1801 | 1802 | function echoLightULPurple { 1803 | echo -e "\\033[4;9;38;5;93m$*\\033[m" 1804 | } 1805 | 1806 | function echoLightBLPurple { 1807 | echo -e "\\033[5;9;38;5;93m$*\\033[m" 1808 | } 1809 | 1810 | function echoLightSTPurple { 1811 | echo -e "\\033[9;9;38;5;93m$*\\033[m" 1812 | } 1813 | 1814 | function echoLightBoldIPurple { 1815 | echo -e "\\033[1;3;9;38;5;93m$*\\033[m" 1816 | } 1817 | 1818 | function echoLightBoldULPurple { 1819 | echo -e "\\033[1;4;9;38;5;93m$*\\033[m" 1820 | } 1821 | 1822 | function echoLightBoldBLPurple { 1823 | echo -e "\\033[1;5;9;38;5;93m$*\\033[m" 1824 | } 1825 | 1826 | function echoLightBoldSTPurple { 1827 | echo -e "\\033[1;9;9;38;5;93m$*\\033[m" 1828 | } 1829 | 1830 | function echoLightIBoldPurple { 1831 | echo -e "\\033[3;1;9;38;5;93m$*\\033[m" 1832 | } 1833 | 1834 | function echoLightIULPurple { 1835 | echo -e "\\033[3;4;9;38;5;93m$*\\033[m" 1836 | } 1837 | 1838 | function echoLightIBLPurple { 1839 | echo -e "\\033[3;5;9;38;5;93m$*\\033[m" 1840 | } 1841 | 1842 | function echoLightISTPurple { 1843 | echo -e "\\033[3;9;9;38;5;93m$*\\033[m" 1844 | } 1845 | 1846 | function echoLightULBoldPurple { 1847 | echo -e "\\033[4;1;9;38;5;93m$*\\033[m" 1848 | } 1849 | 1850 | function echoLightULIPurple { 1851 | echo -e "\\033[4;3;9;38;5;93m$*\\033[m" 1852 | } 1853 | 1854 | function echoLightULBLPurple { 1855 | echo -e "\\033[4;5;9;38;5;93m$*\\033[m" 1856 | } 1857 | 1858 | function echoLightULSTPurple { 1859 | echo -e "\\033[4;9;9;38;5;93m$*\\033[m" 1860 | } 1861 | 1862 | function echoLightBLBoldPurple { 1863 | echo -e "\\033[5;1;9;38;5;93m$*\\033[m" 1864 | } 1865 | 1866 | function echoLightBLIPurple { 1867 | echo -e "\\033[5;3;9;38;5;93m$*\\033[m" 1868 | } 1869 | 1870 | function echoLightBLULPurple { 1871 | echo -e "\\033[5;4;9;38;5;93m$*\\033[m" 1872 | } 1873 | 1874 | function echoLightBLSTPurple { 1875 | echo -e "\\033[5;9;9;38;5;93m$*\\033[m" 1876 | } 1877 | 1878 | function echoLightSTBoldPurple { 1879 | echo -e "\\033[9;1;9;38;5;93m$*\\033[m" 1880 | } 1881 | 1882 | function echoLightSTIPurple { 1883 | echo -e "\\033[9;3;9;38;5;93m$*\\033[m" 1884 | } 1885 | 1886 | function echoLightSTULPurple { 1887 | echo -e "\\033[9;4;9;38;5;93m$*\\033[m" 1888 | } 1889 | 1890 | function echoLightSTBLPurple { 1891 | echo -e "\\033[9;5;9;38;5;93m$*\\033[m" 1892 | } 1893 | 1894 | function echoOrange { 1895 | echo -e "\\033[3;38;5;202m$*\\033[m" 1896 | } 1897 | 1898 | function echoBoldOrange { 1899 | echo -e "\\033[1;3;38;5;202m$*\\033[m" 1900 | } 1901 | 1902 | function echoIOrange { 1903 | echo -e "\\033[3;3;38;5;202m$*\\033[m" 1904 | } 1905 | 1906 | function echoULOrange { 1907 | echo -e "\\033[4;3;38;5;202m$*\\033[m" 1908 | } 1909 | 1910 | function echoBLOrange { 1911 | echo -e "\\033[5;3;38;5;202m$*\\033[m" 1912 | } 1913 | 1914 | function echoSTOrange { 1915 | echo -e "\\033[9;3;38;5;202m$*\\033[m" 1916 | } 1917 | 1918 | function echoBoldIOrange { 1919 | echo -e "\\033[1;3;3;38;5;202m$*\\033[m" 1920 | } 1921 | 1922 | function echoBoldULOrange { 1923 | echo -e "\\033[1;4;3;38;5;202m$*\\033[m" 1924 | } 1925 | 1926 | function echoBoldBLOrange { 1927 | echo -e "\\033[1;5;3;38;5;202m$*\\033[m" 1928 | } 1929 | 1930 | function echoBoldSTOrange { 1931 | echo -e "\\033[1;9;3;38;5;202m$*\\033[m" 1932 | } 1933 | 1934 | function echoIBoldOrange { 1935 | echo -e "\\033[3;1;3;38;5;202m$*\\033[m" 1936 | } 1937 | 1938 | function echoIULOrange { 1939 | echo -e "\\033[3;4;3;38;5;202m$*\\033[m" 1940 | } 1941 | 1942 | function echoIBLOrange { 1943 | echo -e "\\033[3;5;3;38;5;202m$*\\033[m" 1944 | } 1945 | 1946 | function echoISTOrange { 1947 | echo -e "\\033[3;9;3;38;5;202m$*\\033[m" 1948 | } 1949 | 1950 | function echoULBoldOrange { 1951 | echo -e "\\033[4;1;3;38;5;202m$*\\033[m" 1952 | } 1953 | 1954 | function echoULIOrange { 1955 | echo -e "\\033[4;3;3;38;5;202m$*\\033[m" 1956 | } 1957 | 1958 | function echoULBLOrange { 1959 | echo -e "\\033[4;5;3;38;5;202m$*\\033[m" 1960 | } 1961 | 1962 | function echoULSTOrange { 1963 | echo -e "\\033[4;9;3;38;5;202m$*\\033[m" 1964 | } 1965 | 1966 | function echoBLBoldOrange { 1967 | echo -e "\\033[5;1;3;38;5;202m$*\\033[m" 1968 | } 1969 | 1970 | function echoBLIOrange { 1971 | echo -e "\\033[5;3;3;38;5;202m$*\\033[m" 1972 | } 1973 | 1974 | function echoBLULOrange { 1975 | echo -e "\\033[5;4;3;38;5;202m$*\\033[m" 1976 | } 1977 | 1978 | function echoBLSTOrange { 1979 | echo -e "\\033[5;9;3;38;5;202m$*\\033[m" 1980 | } 1981 | 1982 | function echoSTBoldOrange { 1983 | echo -e "\\033[9;1;3;38;5;202m$*\\033[m" 1984 | } 1985 | 1986 | function echoSTIOrange { 1987 | echo -e "\\033[9;3;3;38;5;202m$*\\033[m" 1988 | } 1989 | 1990 | function echoSTULOrange { 1991 | echo -e "\\033[9;4;3;38;5;202m$*\\033[m" 1992 | } 1993 | 1994 | function echoSTBLOrange { 1995 | echo -e "\\033[9;5;3;38;5;202m$*\\033[m" 1996 | } 1997 | 1998 | function echoLightOrange { 1999 | echo -e "\\033[9;38;5;202m$*\\033[m" 2000 | } 2001 | 2002 | function echoLightBoldOrange { 2003 | echo -e "\\033[1;9;38;5;202m$*\\033[m" 2004 | } 2005 | 2006 | function echoLightIOrange { 2007 | echo -e "\\033[3;9;38;5;202m$*\\033[m" 2008 | } 2009 | 2010 | function echoLightULOrange { 2011 | echo -e "\\033[4;9;38;5;202m$*\\033[m" 2012 | } 2013 | 2014 | function echoLightBLOrange { 2015 | echo -e "\\033[5;9;38;5;202m$*\\033[m" 2016 | } 2017 | 2018 | function echoLightSTOrange { 2019 | echo -e "\\033[9;9;38;5;202m$*\\033[m" 2020 | } 2021 | 2022 | function echoLightBoldIOrange { 2023 | echo -e "\\033[1;3;9;38;5;202m$*\\033[m" 2024 | } 2025 | 2026 | function echoLightBoldULOrange { 2027 | echo -e "\\033[1;4;9;38;5;202m$*\\033[m" 2028 | } 2029 | 2030 | function echoLightBoldBLOrange { 2031 | echo -e "\\033[1;5;9;38;5;202m$*\\033[m" 2032 | } 2033 | 2034 | function echoLightBoldSTOrange { 2035 | echo -e "\\033[1;9;9;38;5;202m$*\\033[m" 2036 | } 2037 | 2038 | function echoLightIBoldOrange { 2039 | echo -e "\\033[3;1;9;38;5;202m$*\\033[m" 2040 | } 2041 | 2042 | function echoLightIULOrange { 2043 | echo -e "\\033[3;4;9;38;5;202m$*\\033[m" 2044 | } 2045 | 2046 | function echoLightIBLOrange { 2047 | echo -e "\\033[3;5;9;38;5;202m$*\\033[m" 2048 | } 2049 | 2050 | function echoLightISTOrange { 2051 | echo -e "\\033[3;9;9;38;5;202m$*\\033[m" 2052 | } 2053 | 2054 | function echoLightULBoldOrange { 2055 | echo -e "\\033[4;1;9;38;5;202m$*\\033[m" 2056 | } 2057 | 2058 | function echoLightULIOrange { 2059 | echo -e "\\033[4;3;9;38;5;202m$*\\033[m" 2060 | } 2061 | 2062 | function echoLightULBLOrange { 2063 | echo -e "\\033[4;5;9;38;5;202m$*\\033[m" 2064 | } 2065 | 2066 | function echoLightULSTOrange { 2067 | echo -e "\\033[4;9;9;38;5;202m$*\\033[m" 2068 | } 2069 | 2070 | function echoLightBLBoldOrange { 2071 | echo -e "\\033[5;1;9;38;5;202m$*\\033[m" 2072 | } 2073 | 2074 | function echoLightBLIOrange { 2075 | echo -e "\\033[5;3;9;38;5;202m$*\\033[m" 2076 | } 2077 | 2078 | function echoLightBLULOrange { 2079 | echo -e "\\033[5;4;9;38;5;202m$*\\033[m" 2080 | } 2081 | 2082 | function echoLightBLSTOrange { 2083 | echo -e "\\033[5;9;9;38;5;202m$*\\033[m" 2084 | } 2085 | 2086 | function echoLightSTBoldOrange { 2087 | echo -e "\\033[9;1;9;38;5;202m$*\\033[m" 2088 | } 2089 | 2090 | function echoLightSTIOrange { 2091 | echo -e "\\033[9;3;9;38;5;202m$*\\033[m" 2092 | } 2093 | 2094 | function echoLightSTULOrange { 2095 | echo -e "\\033[9;4;9;38;5;202m$*\\033[m" 2096 | } 2097 | 2098 | function echoLightSTBLOrange { 2099 | echo -e "\\033[9;5;9;38;5;202m$*\\033[m" 2100 | } 2101 | 2102 | function echoPink { 2103 | echo -e "\\033[3;38;5;206m$*\\033[m" 2104 | } 2105 | 2106 | function echoBoldPink { 2107 | echo -e "\\033[1;3;38;5;206m$*\\033[m" 2108 | } 2109 | 2110 | function echoIPink { 2111 | echo -e "\\033[3;3;38;5;206m$*\\033[m" 2112 | } 2113 | 2114 | function echoULPink { 2115 | echo -e "\\033[4;3;38;5;206m$*\\033[m" 2116 | } 2117 | 2118 | function echoBLPink { 2119 | echo -e "\\033[5;3;38;5;206m$*\\033[m" 2120 | } 2121 | 2122 | function echoSTPink { 2123 | echo -e "\\033[9;3;38;5;206m$*\\033[m" 2124 | } 2125 | 2126 | function echoBoldIPink { 2127 | echo -e "\\033[1;3;3;38;5;206m$*\\033[m" 2128 | } 2129 | 2130 | function echoBoldULPink { 2131 | echo -e "\\033[1;4;3;38;5;206m$*\\033[m" 2132 | } 2133 | 2134 | function echoBoldBLPink { 2135 | echo -e "\\033[1;5;3;38;5;206m$*\\033[m" 2136 | } 2137 | 2138 | function echoBoldSTPink { 2139 | echo -e "\\033[1;9;3;38;5;206m$*\\033[m" 2140 | } 2141 | 2142 | function echoIBoldPink { 2143 | echo -e "\\033[3;1;3;38;5;206m$*\\033[m" 2144 | } 2145 | 2146 | function echoIULPink { 2147 | echo -e "\\033[3;4;3;38;5;206m$*\\033[m" 2148 | } 2149 | 2150 | function echoIBLPink { 2151 | echo -e "\\033[3;5;3;38;5;206m$*\\033[m" 2152 | } 2153 | 2154 | function echoISTPink { 2155 | echo -e "\\033[3;9;3;38;5;206m$*\\033[m" 2156 | } 2157 | 2158 | function echoULBoldPink { 2159 | echo -e "\\033[4;1;3;38;5;206m$*\\033[m" 2160 | } 2161 | 2162 | function echoULIPink { 2163 | echo -e "\\033[4;3;3;38;5;206m$*\\033[m" 2164 | } 2165 | 2166 | function echoULBLPink { 2167 | echo -e "\\033[4;5;3;38;5;206m$*\\033[m" 2168 | } 2169 | 2170 | function echoULSTPink { 2171 | echo -e "\\033[4;9;3;38;5;206m$*\\033[m" 2172 | } 2173 | 2174 | function echoBLBoldPink { 2175 | echo -e "\\033[5;1;3;38;5;206m$*\\033[m" 2176 | } 2177 | 2178 | function echoBLIPink { 2179 | echo -e "\\033[5;3;3;38;5;206m$*\\033[m" 2180 | } 2181 | 2182 | function echoBLULPink { 2183 | echo -e "\\033[5;4;3;38;5;206m$*\\033[m" 2184 | } 2185 | 2186 | function echoBLSTPink { 2187 | echo -e "\\033[5;9;3;38;5;206m$*\\033[m" 2188 | } 2189 | 2190 | function echoSTBoldPink { 2191 | echo -e "\\033[9;1;3;38;5;206m$*\\033[m" 2192 | } 2193 | 2194 | function echoSTIPink { 2195 | echo -e "\\033[9;3;3;38;5;206m$*\\033[m" 2196 | } 2197 | 2198 | function echoSTULPink { 2199 | echo -e "\\033[9;4;3;38;5;206m$*\\033[m" 2200 | } 2201 | 2202 | function echoSTBLPink { 2203 | echo -e "\\033[9;5;3;38;5;206m$*\\033[m" 2204 | } 2205 | 2206 | function echoLightPink { 2207 | echo -e "\\033[9;38;5;206m$*\\033[m" 2208 | } 2209 | 2210 | function echoLightBoldPink { 2211 | echo -e "\\033[1;9;38;5;206m$*\\033[m" 2212 | } 2213 | 2214 | function echoLightIPink { 2215 | echo -e "\\033[3;9;38;5;206m$*\\033[m" 2216 | } 2217 | 2218 | function echoLightULPink { 2219 | echo -e "\\033[4;9;38;5;206m$*\\033[m" 2220 | } 2221 | 2222 | function echoLightBLPink { 2223 | echo -e "\\033[5;9;38;5;206m$*\\033[m" 2224 | } 2225 | 2226 | function echoLightSTPink { 2227 | echo -e "\\033[9;9;38;5;206m$*\\033[m" 2228 | } 2229 | 2230 | function echoLightBoldIPink { 2231 | echo -e "\\033[1;3;9;38;5;206m$*\\033[m" 2232 | } 2233 | 2234 | function echoLightBoldULPink { 2235 | echo -e "\\033[1;4;9;38;5;206m$*\\033[m" 2236 | } 2237 | 2238 | function echoLightBoldBLPink { 2239 | echo -e "\\033[1;5;9;38;5;206m$*\\033[m" 2240 | } 2241 | 2242 | function echoLightBoldSTPink { 2243 | echo -e "\\033[1;9;9;38;5;206m$*\\033[m" 2244 | } 2245 | 2246 | function echoLightIBoldPink { 2247 | echo -e "\\033[3;1;9;38;5;206m$*\\033[m" 2248 | } 2249 | 2250 | function echoLightIULPink { 2251 | echo -e "\\033[3;4;9;38;5;206m$*\\033[m" 2252 | } 2253 | 2254 | function echoLightIBLPink { 2255 | echo -e "\\033[3;5;9;38;5;206m$*\\033[m" 2256 | } 2257 | 2258 | function echoLightISTPink { 2259 | echo -e "\\033[3;9;9;38;5;206m$*\\033[m" 2260 | } 2261 | 2262 | function echoLightULBoldPink { 2263 | echo -e "\\033[4;1;9;38;5;206m$*\\033[m" 2264 | } 2265 | 2266 | function echoLightULIPink { 2267 | echo -e "\\033[4;3;9;38;5;206m$*\\033[m" 2268 | } 2269 | 2270 | function echoLightULBLPink { 2271 | echo -e "\\033[4;5;9;38;5;206m$*\\033[m" 2272 | } 2273 | 2274 | function echoLightULSTPink { 2275 | echo -e "\\033[4;9;9;38;5;206m$*\\033[m" 2276 | } 2277 | 2278 | function echoLightBLBoldPink { 2279 | echo -e "\\033[5;1;9;38;5;206m$*\\033[m" 2280 | } 2281 | 2282 | function echoLightBLIPink { 2283 | echo -e "\\033[5;3;9;38;5;206m$*\\033[m" 2284 | } 2285 | 2286 | function echoLightBLULPink { 2287 | echo -e "\\033[5;4;9;38;5;206m$*\\033[m" 2288 | } 2289 | 2290 | function echoLightBLSTPink { 2291 | echo -e "\\033[5;9;9;38;5;206m$*\\033[m" 2292 | } 2293 | 2294 | function echoLightSTBoldPink { 2295 | echo -e "\\033[9;1;9;38;5;206m$*\\033[m" 2296 | } 2297 | 2298 | function echoLightSTIPink { 2299 | echo -e "\\033[9;3;9;38;5;206m$*\\033[m" 2300 | } 2301 | 2302 | function echoLightSTULPink { 2303 | echo -e "\\033[9;4;9;38;5;206m$*\\033[m" 2304 | } 2305 | 2306 | function echoLightSTBLPink { 2307 | echo -e "\\033[9;5;9;38;5;206m$*\\033[m" 2308 | } 2309 | 2310 | function echoBrown { 2311 | echo -e "\\033[3;38;5;52m$*\\033[m" 2312 | } 2313 | 2314 | function echoBoldBrown { 2315 | echo -e "\\033[1;3;38;5;52m$*\\033[m" 2316 | } 2317 | 2318 | function echoIBrown { 2319 | echo -e "\\033[3;3;38;5;52m$*\\033[m" 2320 | } 2321 | 2322 | function echoULBrown { 2323 | echo -e "\\033[4;3;38;5;52m$*\\033[m" 2324 | } 2325 | 2326 | function echoBLBrown { 2327 | echo -e "\\033[5;3;38;5;52m$*\\033[m" 2328 | } 2329 | 2330 | function echoSTBrown { 2331 | echo -e "\\033[9;3;38;5;52m$*\\033[m" 2332 | } 2333 | 2334 | function echoBoldIBrown { 2335 | echo -e "\\033[1;3;3;38;5;52m$*\\033[m" 2336 | } 2337 | 2338 | function echoBoldULBrown { 2339 | echo -e "\\033[1;4;3;38;5;52m$*\\033[m" 2340 | } 2341 | 2342 | function echoBoldBLBrown { 2343 | echo -e "\\033[1;5;3;38;5;52m$*\\033[m" 2344 | } 2345 | 2346 | function echoBoldSTBrown { 2347 | echo -e "\\033[1;9;3;38;5;52m$*\\033[m" 2348 | } 2349 | 2350 | function echoIBoldBrown { 2351 | echo -e "\\033[3;1;3;38;5;52m$*\\033[m" 2352 | } 2353 | 2354 | function echoIULBrown { 2355 | echo -e "\\033[3;4;3;38;5;52m$*\\033[m" 2356 | } 2357 | 2358 | function echoIBLBrown { 2359 | echo -e "\\033[3;5;3;38;5;52m$*\\033[m" 2360 | } 2361 | 2362 | function echoISTBrown { 2363 | echo -e "\\033[3;9;3;38;5;52m$*\\033[m" 2364 | } 2365 | 2366 | function echoULBoldBrown { 2367 | echo -e "\\033[4;1;3;38;5;52m$*\\033[m" 2368 | } 2369 | 2370 | function echoULIBrown { 2371 | echo -e "\\033[4;3;3;38;5;52m$*\\033[m" 2372 | } 2373 | 2374 | function echoULBLBrown { 2375 | echo -e "\\033[4;5;3;38;5;52m$*\\033[m" 2376 | } 2377 | 2378 | function echoULSTBrown { 2379 | echo -e "\\033[4;9;3;38;5;52m$*\\033[m" 2380 | } 2381 | 2382 | function echoBLBoldBrown { 2383 | echo -e "\\033[5;1;3;38;5;52m$*\\033[m" 2384 | } 2385 | 2386 | function echoBLIBrown { 2387 | echo -e "\\033[5;3;3;38;5;52m$*\\033[m" 2388 | } 2389 | 2390 | function echoBLULBrown { 2391 | echo -e "\\033[5;4;3;38;5;52m$*\\033[m" 2392 | } 2393 | 2394 | function echoBLSTBrown { 2395 | echo -e "\\033[5;9;3;38;5;52m$*\\033[m" 2396 | } 2397 | 2398 | function echoSTBoldBrown { 2399 | echo -e "\\033[9;1;3;38;5;52m$*\\033[m" 2400 | } 2401 | 2402 | function echoSTIBrown { 2403 | echo -e "\\033[9;3;3;38;5;52m$*\\033[m" 2404 | } 2405 | 2406 | function echoSTULBrown { 2407 | echo -e "\\033[9;4;3;38;5;52m$*\\033[m" 2408 | } 2409 | 2410 | function echoSTBLBrown { 2411 | echo -e "\\033[9;5;3;38;5;52m$*\\033[m" 2412 | } 2413 | 2414 | function echoLightBrown { 2415 | echo -e "\\033[9;38;5;52m$*\\033[m" 2416 | } 2417 | 2418 | function echoLightBoldBrown { 2419 | echo -e "\\033[1;9;38;5;52m$*\\033[m" 2420 | } 2421 | 2422 | function echoLightIBrown { 2423 | echo -e "\\033[3;9;38;5;52m$*\\033[m" 2424 | } 2425 | 2426 | function echoLightULBrown { 2427 | echo -e "\\033[4;9;38;5;52m$*\\033[m" 2428 | } 2429 | 2430 | function echoLightBLBrown { 2431 | echo -e "\\033[5;9;38;5;52m$*\\033[m" 2432 | } 2433 | 2434 | function echoLightSTBrown { 2435 | echo -e "\\033[9;9;38;5;52m$*\\033[m" 2436 | } 2437 | 2438 | function echoLightBoldIBrown { 2439 | echo -e "\\033[1;3;9;38;5;52m$*\\033[m" 2440 | } 2441 | 2442 | function echoLightBoldULBrown { 2443 | echo -e "\\033[1;4;9;38;5;52m$*\\033[m" 2444 | } 2445 | 2446 | function echoLightBoldBLBrown { 2447 | echo -e "\\033[1;5;9;38;5;52m$*\\033[m" 2448 | } 2449 | 2450 | function echoLightBoldSTBrown { 2451 | echo -e "\\033[1;9;9;38;5;52m$*\\033[m" 2452 | } 2453 | 2454 | function echoLightIBoldBrown { 2455 | echo -e "\\033[3;1;9;38;5;52m$*\\033[m" 2456 | } 2457 | 2458 | function echoLightIULBrown { 2459 | echo -e "\\033[3;4;9;38;5;52m$*\\033[m" 2460 | } 2461 | 2462 | function echoLightIBLBrown { 2463 | echo -e "\\033[3;5;9;38;5;52m$*\\033[m" 2464 | } 2465 | 2466 | function echoLightISTBrown { 2467 | echo -e "\\033[3;9;9;38;5;52m$*\\033[m" 2468 | } 2469 | 2470 | function echoLightULBoldBrown { 2471 | echo -e "\\033[4;1;9;38;5;52m$*\\033[m" 2472 | } 2473 | 2474 | function echoLightULIBrown { 2475 | echo -e "\\033[4;3;9;38;5;52m$*\\033[m" 2476 | } 2477 | 2478 | function echoLightULBLBrown { 2479 | echo -e "\\033[4;5;9;38;5;52m$*\\033[m" 2480 | } 2481 | 2482 | function echoLightULSTBrown { 2483 | echo -e "\\033[4;9;9;38;5;52m$*\\033[m" 2484 | } 2485 | 2486 | function echoLightBLBoldBrown { 2487 | echo -e "\\033[5;1;9;38;5;52m$*\\033[m" 2488 | } 2489 | 2490 | function echoLightBLIBrown { 2491 | echo -e "\\033[5;3;9;38;5;52m$*\\033[m" 2492 | } 2493 | 2494 | function echoLightBLULBrown { 2495 | echo -e "\\033[5;4;9;38;5;52m$*\\033[m" 2496 | } 2497 | 2498 | function echoLightBLSTBrown { 2499 | echo -e "\\033[5;9;9;38;5;52m$*\\033[m" 2500 | } 2501 | 2502 | function echoLightSTBoldBrown { 2503 | echo -e "\\033[9;1;9;38;5;52m$*\\033[m" 2504 | } 2505 | 2506 | function echoLightSTIBrown { 2507 | echo -e "\\033[9;3;9;38;5;52m$*\\033[m" 2508 | } 2509 | 2510 | function echoLightSTULBrown { 2511 | echo -e "\\033[9;4;9;38;5;52m$*\\033[m" 2512 | } 2513 | 2514 | function echoLightSTBLBrown { 2515 | echo -e "\\033[9;5;9;38;5;52m$*\\033[m" 2516 | } 2517 | function echoRainbow { 2518 | if command -v lolcat 2> /dev/null >&2; then 2519 | echo "$*" | lolcat 2520 | else 2521 | echo "$*" 2522 | fi 2523 | } 2524 | function echoReset { 2525 | echo "$*" | tr -d '[:cntrl:]' | sed -E "s/\\[((;)?[0-9]{1,3}){0,3}m//g" | xargs 2526 | } 2527 | -------------------------------------------------------------------------------- /dist/ColorEcho.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # ColorEchoForShell 4 | # https://github.com/PeterDaveHello/ColorEchoForShell 5 | # Copyright (C) 2015 ~ Peter Dave Hello 6 | # 7 | # This program is free software; you can redistribute it and/or modify 8 | # it under the terms of the GNU General Public License as published by 9 | # the Free Software Foundation; either version 2 of the License, or (at 10 | # your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, but 13 | # WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 | # General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU General Public License 18 | # along with this program; if not, write to the Free Software 19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 20 | # USA. 21 | if [ "$(uname)" = "FreeBSD" ]; then 22 | ECHO="echo -e" 23 | elif [ "$(uname)" = "Darwin" ]; then 24 | ECHO="echo" 25 | else 26 | ECHO="/bin/echo -e" 27 | fi 28 | 29 | echoBlack() { 30 | $ECHO "\\033[30m$*\\033[m" 31 | } 32 | 33 | echoBoldBlack() { 34 | $ECHO "\\033[1;30m$*\\033[m" 35 | } 36 | 37 | echoIBlack() { 38 | $ECHO "\\033[3;30m$*\\033[m" 39 | } 40 | 41 | echoULBlack() { 42 | $ECHO "\\033[4;30m$*\\033[m" 43 | } 44 | 45 | echoBLBlack() { 46 | $ECHO "\\033[5;30m$*\\033[m" 47 | } 48 | 49 | echoSTBlack() { 50 | $ECHO "\\033[9;30m$*\\033[m" 51 | } 52 | 53 | echoBoldIBlack() { 54 | $ECHO "\\033[1;3;30m$*\\033[m" 55 | } 56 | 57 | echoBoldULBlack() { 58 | $ECHO "\\033[1;4;30m$*\\033[m" 59 | } 60 | 61 | echoBoldBLBlack() { 62 | $ECHO "\\033[1;5;30m$*\\033[m" 63 | } 64 | 65 | echoBoldSTBlack() { 66 | $ECHO "\\033[1;9;30m$*\\033[m" 67 | } 68 | 69 | echoIBoldBlack() { 70 | $ECHO "\\033[3;1;30m$*\\033[m" 71 | } 72 | 73 | echoIULBlack() { 74 | $ECHO "\\033[3;4;30m$*\\033[m" 75 | } 76 | 77 | echoIBLBlack() { 78 | $ECHO "\\033[3;5;30m$*\\033[m" 79 | } 80 | 81 | echoISTBlack() { 82 | $ECHO "\\033[3;9;30m$*\\033[m" 83 | } 84 | 85 | echoULBoldBlack() { 86 | $ECHO "\\033[4;1;30m$*\\033[m" 87 | } 88 | 89 | echoULIBlack() { 90 | $ECHO "\\033[4;3;30m$*\\033[m" 91 | } 92 | 93 | echoULBLBlack() { 94 | $ECHO "\\033[4;5;30m$*\\033[m" 95 | } 96 | 97 | echoULSTBlack() { 98 | $ECHO "\\033[4;9;30m$*\\033[m" 99 | } 100 | 101 | echoBLBoldBlack() { 102 | $ECHO "\\033[5;1;30m$*\\033[m" 103 | } 104 | 105 | echoBLIBlack() { 106 | $ECHO "\\033[5;3;30m$*\\033[m" 107 | } 108 | 109 | echoBLULBlack() { 110 | $ECHO "\\033[5;4;30m$*\\033[m" 111 | } 112 | 113 | echoBLSTBlack() { 114 | $ECHO "\\033[5;9;30m$*\\033[m" 115 | } 116 | 117 | echoSTBoldBlack() { 118 | $ECHO "\\033[9;1;30m$*\\033[m" 119 | } 120 | 121 | echoSTIBlack() { 122 | $ECHO "\\033[9;3;30m$*\\033[m" 123 | } 124 | 125 | echoSTULBlack() { 126 | $ECHO "\\033[9;4;30m$*\\033[m" 127 | } 128 | 129 | echoSTBLBlack() { 130 | $ECHO "\\033[9;5;30m$*\\033[m" 131 | } 132 | 133 | echoLightBlack() { 134 | $ECHO "\\033[90m$*\\033[m" 135 | } 136 | 137 | echoLightBoldBlack() { 138 | $ECHO "\\033[1;90m$*\\033[m" 139 | } 140 | 141 | echoLightIBlack() { 142 | $ECHO "\\033[3;90m$*\\033[m" 143 | } 144 | 145 | echoLightULBlack() { 146 | $ECHO "\\033[4;90m$*\\033[m" 147 | } 148 | 149 | echoLightBLBlack() { 150 | $ECHO "\\033[5;90m$*\\033[m" 151 | } 152 | 153 | echoLightSTBlack() { 154 | $ECHO "\\033[9;90m$*\\033[m" 155 | } 156 | 157 | echoLightBoldIBlack() { 158 | $ECHO "\\033[1;3;90m$*\\033[m" 159 | } 160 | 161 | echoLightBoldULBlack() { 162 | $ECHO "\\033[1;4;90m$*\\033[m" 163 | } 164 | 165 | echoLightBoldBLBlack() { 166 | $ECHO "\\033[1;5;90m$*\\033[m" 167 | } 168 | 169 | echoLightBoldSTBlack() { 170 | $ECHO "\\033[1;9;90m$*\\033[m" 171 | } 172 | 173 | echoLightIBoldBlack() { 174 | $ECHO "\\033[3;1;90m$*\\033[m" 175 | } 176 | 177 | echoLightIULBlack() { 178 | $ECHO "\\033[3;4;90m$*\\033[m" 179 | } 180 | 181 | echoLightIBLBlack() { 182 | $ECHO "\\033[3;5;90m$*\\033[m" 183 | } 184 | 185 | echoLightISTBlack() { 186 | $ECHO "\\033[3;9;90m$*\\033[m" 187 | } 188 | 189 | echoLightULBoldBlack() { 190 | $ECHO "\\033[4;1;90m$*\\033[m" 191 | } 192 | 193 | echoLightULIBlack() { 194 | $ECHO "\\033[4;3;90m$*\\033[m" 195 | } 196 | 197 | echoLightULBLBlack() { 198 | $ECHO "\\033[4;5;90m$*\\033[m" 199 | } 200 | 201 | echoLightULSTBlack() { 202 | $ECHO "\\033[4;9;90m$*\\033[m" 203 | } 204 | 205 | echoLightBLBoldBlack() { 206 | $ECHO "\\033[5;1;90m$*\\033[m" 207 | } 208 | 209 | echoLightBLIBlack() { 210 | $ECHO "\\033[5;3;90m$*\\033[m" 211 | } 212 | 213 | echoLightBLULBlack() { 214 | $ECHO "\\033[5;4;90m$*\\033[m" 215 | } 216 | 217 | echoLightBLSTBlack() { 218 | $ECHO "\\033[5;9;90m$*\\033[m" 219 | } 220 | 221 | echoLightSTBoldBlack() { 222 | $ECHO "\\033[9;1;90m$*\\033[m" 223 | } 224 | 225 | echoLightSTIBlack() { 226 | $ECHO "\\033[9;3;90m$*\\033[m" 227 | } 228 | 229 | echoLightSTULBlack() { 230 | $ECHO "\\033[9;4;90m$*\\033[m" 231 | } 232 | 233 | echoLightSTBLBlack() { 234 | $ECHO "\\033[9;5;90m$*\\033[m" 235 | } 236 | 237 | echoRed() { 238 | $ECHO "\\033[31m$*\\033[m" 239 | } 240 | 241 | echoBoldRed() { 242 | $ECHO "\\033[1;31m$*\\033[m" 243 | } 244 | 245 | echoIRed() { 246 | $ECHO "\\033[3;31m$*\\033[m" 247 | } 248 | 249 | echoULRed() { 250 | $ECHO "\\033[4;31m$*\\033[m" 251 | } 252 | 253 | echoBLRed() { 254 | $ECHO "\\033[5;31m$*\\033[m" 255 | } 256 | 257 | echoSTRed() { 258 | $ECHO "\\033[9;31m$*\\033[m" 259 | } 260 | 261 | echoBoldIRed() { 262 | $ECHO "\\033[1;3;31m$*\\033[m" 263 | } 264 | 265 | echoBoldULRed() { 266 | $ECHO "\\033[1;4;31m$*\\033[m" 267 | } 268 | 269 | echoBoldBLRed() { 270 | $ECHO "\\033[1;5;31m$*\\033[m" 271 | } 272 | 273 | echoBoldSTRed() { 274 | $ECHO "\\033[1;9;31m$*\\033[m" 275 | } 276 | 277 | echoIBoldRed() { 278 | $ECHO "\\033[3;1;31m$*\\033[m" 279 | } 280 | 281 | echoIULRed() { 282 | $ECHO "\\033[3;4;31m$*\\033[m" 283 | } 284 | 285 | echoIBLRed() { 286 | $ECHO "\\033[3;5;31m$*\\033[m" 287 | } 288 | 289 | echoISTRed() { 290 | $ECHO "\\033[3;9;31m$*\\033[m" 291 | } 292 | 293 | echoULBoldRed() { 294 | $ECHO "\\033[4;1;31m$*\\033[m" 295 | } 296 | 297 | echoULIRed() { 298 | $ECHO "\\033[4;3;31m$*\\033[m" 299 | } 300 | 301 | echoULBLRed() { 302 | $ECHO "\\033[4;5;31m$*\\033[m" 303 | } 304 | 305 | echoULSTRed() { 306 | $ECHO "\\033[4;9;31m$*\\033[m" 307 | } 308 | 309 | echoBLBoldRed() { 310 | $ECHO "\\033[5;1;31m$*\\033[m" 311 | } 312 | 313 | echoBLIRed() { 314 | $ECHO "\\033[5;3;31m$*\\033[m" 315 | } 316 | 317 | echoBLULRed() { 318 | $ECHO "\\033[5;4;31m$*\\033[m" 319 | } 320 | 321 | echoBLSTRed() { 322 | $ECHO "\\033[5;9;31m$*\\033[m" 323 | } 324 | 325 | echoSTBoldRed() { 326 | $ECHO "\\033[9;1;31m$*\\033[m" 327 | } 328 | 329 | echoSTIRed() { 330 | $ECHO "\\033[9;3;31m$*\\033[m" 331 | } 332 | 333 | echoSTULRed() { 334 | $ECHO "\\033[9;4;31m$*\\033[m" 335 | } 336 | 337 | echoSTBLRed() { 338 | $ECHO "\\033[9;5;31m$*\\033[m" 339 | } 340 | 341 | echoLightRed() { 342 | $ECHO "\\033[91m$*\\033[m" 343 | } 344 | 345 | echoLightBoldRed() { 346 | $ECHO "\\033[1;91m$*\\033[m" 347 | } 348 | 349 | echoLightIRed() { 350 | $ECHO "\\033[3;91m$*\\033[m" 351 | } 352 | 353 | echoLightULRed() { 354 | $ECHO "\\033[4;91m$*\\033[m" 355 | } 356 | 357 | echoLightBLRed() { 358 | $ECHO "\\033[5;91m$*\\033[m" 359 | } 360 | 361 | echoLightSTRed() { 362 | $ECHO "\\033[9;91m$*\\033[m" 363 | } 364 | 365 | echoLightBoldIRed() { 366 | $ECHO "\\033[1;3;91m$*\\033[m" 367 | } 368 | 369 | echoLightBoldULRed() { 370 | $ECHO "\\033[1;4;91m$*\\033[m" 371 | } 372 | 373 | echoLightBoldBLRed() { 374 | $ECHO "\\033[1;5;91m$*\\033[m" 375 | } 376 | 377 | echoLightBoldSTRed() { 378 | $ECHO "\\033[1;9;91m$*\\033[m" 379 | } 380 | 381 | echoLightIBoldRed() { 382 | $ECHO "\\033[3;1;91m$*\\033[m" 383 | } 384 | 385 | echoLightIULRed() { 386 | $ECHO "\\033[3;4;91m$*\\033[m" 387 | } 388 | 389 | echoLightIBLRed() { 390 | $ECHO "\\033[3;5;91m$*\\033[m" 391 | } 392 | 393 | echoLightISTRed() { 394 | $ECHO "\\033[3;9;91m$*\\033[m" 395 | } 396 | 397 | echoLightULBoldRed() { 398 | $ECHO "\\033[4;1;91m$*\\033[m" 399 | } 400 | 401 | echoLightULIRed() { 402 | $ECHO "\\033[4;3;91m$*\\033[m" 403 | } 404 | 405 | echoLightULBLRed() { 406 | $ECHO "\\033[4;5;91m$*\\033[m" 407 | } 408 | 409 | echoLightULSTRed() { 410 | $ECHO "\\033[4;9;91m$*\\033[m" 411 | } 412 | 413 | echoLightBLBoldRed() { 414 | $ECHO "\\033[5;1;91m$*\\033[m" 415 | } 416 | 417 | echoLightBLIRed() { 418 | $ECHO "\\033[5;3;91m$*\\033[m" 419 | } 420 | 421 | echoLightBLULRed() { 422 | $ECHO "\\033[5;4;91m$*\\033[m" 423 | } 424 | 425 | echoLightBLSTRed() { 426 | $ECHO "\\033[5;9;91m$*\\033[m" 427 | } 428 | 429 | echoLightSTBoldRed() { 430 | $ECHO "\\033[9;1;91m$*\\033[m" 431 | } 432 | 433 | echoLightSTIRed() { 434 | $ECHO "\\033[9;3;91m$*\\033[m" 435 | } 436 | 437 | echoLightSTULRed() { 438 | $ECHO "\\033[9;4;91m$*\\033[m" 439 | } 440 | 441 | echoLightSTBLRed() { 442 | $ECHO "\\033[9;5;91m$*\\033[m" 443 | } 444 | 445 | echoGreen() { 446 | $ECHO "\\033[32m$*\\033[m" 447 | } 448 | 449 | echoBoldGreen() { 450 | $ECHO "\\033[1;32m$*\\033[m" 451 | } 452 | 453 | echoIGreen() { 454 | $ECHO "\\033[3;32m$*\\033[m" 455 | } 456 | 457 | echoULGreen() { 458 | $ECHO "\\033[4;32m$*\\033[m" 459 | } 460 | 461 | echoBLGreen() { 462 | $ECHO "\\033[5;32m$*\\033[m" 463 | } 464 | 465 | echoSTGreen() { 466 | $ECHO "\\033[9;32m$*\\033[m" 467 | } 468 | 469 | echoBoldIGreen() { 470 | $ECHO "\\033[1;3;32m$*\\033[m" 471 | } 472 | 473 | echoBoldULGreen() { 474 | $ECHO "\\033[1;4;32m$*\\033[m" 475 | } 476 | 477 | echoBoldBLGreen() { 478 | $ECHO "\\033[1;5;32m$*\\033[m" 479 | } 480 | 481 | echoBoldSTGreen() { 482 | $ECHO "\\033[1;9;32m$*\\033[m" 483 | } 484 | 485 | echoIBoldGreen() { 486 | $ECHO "\\033[3;1;32m$*\\033[m" 487 | } 488 | 489 | echoIULGreen() { 490 | $ECHO "\\033[3;4;32m$*\\033[m" 491 | } 492 | 493 | echoIBLGreen() { 494 | $ECHO "\\033[3;5;32m$*\\033[m" 495 | } 496 | 497 | echoISTGreen() { 498 | $ECHO "\\033[3;9;32m$*\\033[m" 499 | } 500 | 501 | echoULBoldGreen() { 502 | $ECHO "\\033[4;1;32m$*\\033[m" 503 | } 504 | 505 | echoULIGreen() { 506 | $ECHO "\\033[4;3;32m$*\\033[m" 507 | } 508 | 509 | echoULBLGreen() { 510 | $ECHO "\\033[4;5;32m$*\\033[m" 511 | } 512 | 513 | echoULSTGreen() { 514 | $ECHO "\\033[4;9;32m$*\\033[m" 515 | } 516 | 517 | echoBLBoldGreen() { 518 | $ECHO "\\033[5;1;32m$*\\033[m" 519 | } 520 | 521 | echoBLIGreen() { 522 | $ECHO "\\033[5;3;32m$*\\033[m" 523 | } 524 | 525 | echoBLULGreen() { 526 | $ECHO "\\033[5;4;32m$*\\033[m" 527 | } 528 | 529 | echoBLSTGreen() { 530 | $ECHO "\\033[5;9;32m$*\\033[m" 531 | } 532 | 533 | echoSTBoldGreen() { 534 | $ECHO "\\033[9;1;32m$*\\033[m" 535 | } 536 | 537 | echoSTIGreen() { 538 | $ECHO "\\033[9;3;32m$*\\033[m" 539 | } 540 | 541 | echoSTULGreen() { 542 | $ECHO "\\033[9;4;32m$*\\033[m" 543 | } 544 | 545 | echoSTBLGreen() { 546 | $ECHO "\\033[9;5;32m$*\\033[m" 547 | } 548 | 549 | echoLightGreen() { 550 | $ECHO "\\033[92m$*\\033[m" 551 | } 552 | 553 | echoLightBoldGreen() { 554 | $ECHO "\\033[1;92m$*\\033[m" 555 | } 556 | 557 | echoLightIGreen() { 558 | $ECHO "\\033[3;92m$*\\033[m" 559 | } 560 | 561 | echoLightULGreen() { 562 | $ECHO "\\033[4;92m$*\\033[m" 563 | } 564 | 565 | echoLightBLGreen() { 566 | $ECHO "\\033[5;92m$*\\033[m" 567 | } 568 | 569 | echoLightSTGreen() { 570 | $ECHO "\\033[9;92m$*\\033[m" 571 | } 572 | 573 | echoLightBoldIGreen() { 574 | $ECHO "\\033[1;3;92m$*\\033[m" 575 | } 576 | 577 | echoLightBoldULGreen() { 578 | $ECHO "\\033[1;4;92m$*\\033[m" 579 | } 580 | 581 | echoLightBoldBLGreen() { 582 | $ECHO "\\033[1;5;92m$*\\033[m" 583 | } 584 | 585 | echoLightBoldSTGreen() { 586 | $ECHO "\\033[1;9;92m$*\\033[m" 587 | } 588 | 589 | echoLightIBoldGreen() { 590 | $ECHO "\\033[3;1;92m$*\\033[m" 591 | } 592 | 593 | echoLightIULGreen() { 594 | $ECHO "\\033[3;4;92m$*\\033[m" 595 | } 596 | 597 | echoLightIBLGreen() { 598 | $ECHO "\\033[3;5;92m$*\\033[m" 599 | } 600 | 601 | echoLightISTGreen() { 602 | $ECHO "\\033[3;9;92m$*\\033[m" 603 | } 604 | 605 | echoLightULBoldGreen() { 606 | $ECHO "\\033[4;1;92m$*\\033[m" 607 | } 608 | 609 | echoLightULIGreen() { 610 | $ECHO "\\033[4;3;92m$*\\033[m" 611 | } 612 | 613 | echoLightULBLGreen() { 614 | $ECHO "\\033[4;5;92m$*\\033[m" 615 | } 616 | 617 | echoLightULSTGreen() { 618 | $ECHO "\\033[4;9;92m$*\\033[m" 619 | } 620 | 621 | echoLightBLBoldGreen() { 622 | $ECHO "\\033[5;1;92m$*\\033[m" 623 | } 624 | 625 | echoLightBLIGreen() { 626 | $ECHO "\\033[5;3;92m$*\\033[m" 627 | } 628 | 629 | echoLightBLULGreen() { 630 | $ECHO "\\033[5;4;92m$*\\033[m" 631 | } 632 | 633 | echoLightBLSTGreen() { 634 | $ECHO "\\033[5;9;92m$*\\033[m" 635 | } 636 | 637 | echoLightSTBoldGreen() { 638 | $ECHO "\\033[9;1;92m$*\\033[m" 639 | } 640 | 641 | echoLightSTIGreen() { 642 | $ECHO "\\033[9;3;92m$*\\033[m" 643 | } 644 | 645 | echoLightSTULGreen() { 646 | $ECHO "\\033[9;4;92m$*\\033[m" 647 | } 648 | 649 | echoLightSTBLGreen() { 650 | $ECHO "\\033[9;5;92m$*\\033[m" 651 | } 652 | 653 | echoYellow() { 654 | $ECHO "\\033[33m$*\\033[m" 655 | } 656 | 657 | echoBoldYellow() { 658 | $ECHO "\\033[1;33m$*\\033[m" 659 | } 660 | 661 | echoIYellow() { 662 | $ECHO "\\033[3;33m$*\\033[m" 663 | } 664 | 665 | echoULYellow() { 666 | $ECHO "\\033[4;33m$*\\033[m" 667 | } 668 | 669 | echoBLYellow() { 670 | $ECHO "\\033[5;33m$*\\033[m" 671 | } 672 | 673 | echoSTYellow() { 674 | $ECHO "\\033[9;33m$*\\033[m" 675 | } 676 | 677 | echoBoldIYellow() { 678 | $ECHO "\\033[1;3;33m$*\\033[m" 679 | } 680 | 681 | echoBoldULYellow() { 682 | $ECHO "\\033[1;4;33m$*\\033[m" 683 | } 684 | 685 | echoBoldBLYellow() { 686 | $ECHO "\\033[1;5;33m$*\\033[m" 687 | } 688 | 689 | echoBoldSTYellow() { 690 | $ECHO "\\033[1;9;33m$*\\033[m" 691 | } 692 | 693 | echoIBoldYellow() { 694 | $ECHO "\\033[3;1;33m$*\\033[m" 695 | } 696 | 697 | echoIULYellow() { 698 | $ECHO "\\033[3;4;33m$*\\033[m" 699 | } 700 | 701 | echoIBLYellow() { 702 | $ECHO "\\033[3;5;33m$*\\033[m" 703 | } 704 | 705 | echoISTYellow() { 706 | $ECHO "\\033[3;9;33m$*\\033[m" 707 | } 708 | 709 | echoULBoldYellow() { 710 | $ECHO "\\033[4;1;33m$*\\033[m" 711 | } 712 | 713 | echoULIYellow() { 714 | $ECHO "\\033[4;3;33m$*\\033[m" 715 | } 716 | 717 | echoULBLYellow() { 718 | $ECHO "\\033[4;5;33m$*\\033[m" 719 | } 720 | 721 | echoULSTYellow() { 722 | $ECHO "\\033[4;9;33m$*\\033[m" 723 | } 724 | 725 | echoBLBoldYellow() { 726 | $ECHO "\\033[5;1;33m$*\\033[m" 727 | } 728 | 729 | echoBLIYellow() { 730 | $ECHO "\\033[5;3;33m$*\\033[m" 731 | } 732 | 733 | echoBLULYellow() { 734 | $ECHO "\\033[5;4;33m$*\\033[m" 735 | } 736 | 737 | echoBLSTYellow() { 738 | $ECHO "\\033[5;9;33m$*\\033[m" 739 | } 740 | 741 | echoSTBoldYellow() { 742 | $ECHO "\\033[9;1;33m$*\\033[m" 743 | } 744 | 745 | echoSTIYellow() { 746 | $ECHO "\\033[9;3;33m$*\\033[m" 747 | } 748 | 749 | echoSTULYellow() { 750 | $ECHO "\\033[9;4;33m$*\\033[m" 751 | } 752 | 753 | echoSTBLYellow() { 754 | $ECHO "\\033[9;5;33m$*\\033[m" 755 | } 756 | 757 | echoLightYellow() { 758 | $ECHO "\\033[93m$*\\033[m" 759 | } 760 | 761 | echoLightBoldYellow() { 762 | $ECHO "\\033[1;93m$*\\033[m" 763 | } 764 | 765 | echoLightIYellow() { 766 | $ECHO "\\033[3;93m$*\\033[m" 767 | } 768 | 769 | echoLightULYellow() { 770 | $ECHO "\\033[4;93m$*\\033[m" 771 | } 772 | 773 | echoLightBLYellow() { 774 | $ECHO "\\033[5;93m$*\\033[m" 775 | } 776 | 777 | echoLightSTYellow() { 778 | $ECHO "\\033[9;93m$*\\033[m" 779 | } 780 | 781 | echoLightBoldIYellow() { 782 | $ECHO "\\033[1;3;93m$*\\033[m" 783 | } 784 | 785 | echoLightBoldULYellow() { 786 | $ECHO "\\033[1;4;93m$*\\033[m" 787 | } 788 | 789 | echoLightBoldBLYellow() { 790 | $ECHO "\\033[1;5;93m$*\\033[m" 791 | } 792 | 793 | echoLightBoldSTYellow() { 794 | $ECHO "\\033[1;9;93m$*\\033[m" 795 | } 796 | 797 | echoLightIBoldYellow() { 798 | $ECHO "\\033[3;1;93m$*\\033[m" 799 | } 800 | 801 | echoLightIULYellow() { 802 | $ECHO "\\033[3;4;93m$*\\033[m" 803 | } 804 | 805 | echoLightIBLYellow() { 806 | $ECHO "\\033[3;5;93m$*\\033[m" 807 | } 808 | 809 | echoLightISTYellow() { 810 | $ECHO "\\033[3;9;93m$*\\033[m" 811 | } 812 | 813 | echoLightULBoldYellow() { 814 | $ECHO "\\033[4;1;93m$*\\033[m" 815 | } 816 | 817 | echoLightULIYellow() { 818 | $ECHO "\\033[4;3;93m$*\\033[m" 819 | } 820 | 821 | echoLightULBLYellow() { 822 | $ECHO "\\033[4;5;93m$*\\033[m" 823 | } 824 | 825 | echoLightULSTYellow() { 826 | $ECHO "\\033[4;9;93m$*\\033[m" 827 | } 828 | 829 | echoLightBLBoldYellow() { 830 | $ECHO "\\033[5;1;93m$*\\033[m" 831 | } 832 | 833 | echoLightBLIYellow() { 834 | $ECHO "\\033[5;3;93m$*\\033[m" 835 | } 836 | 837 | echoLightBLULYellow() { 838 | $ECHO "\\033[5;4;93m$*\\033[m" 839 | } 840 | 841 | echoLightBLSTYellow() { 842 | $ECHO "\\033[5;9;93m$*\\033[m" 843 | } 844 | 845 | echoLightSTBoldYellow() { 846 | $ECHO "\\033[9;1;93m$*\\033[m" 847 | } 848 | 849 | echoLightSTIYellow() { 850 | $ECHO "\\033[9;3;93m$*\\033[m" 851 | } 852 | 853 | echoLightSTULYellow() { 854 | $ECHO "\\033[9;4;93m$*\\033[m" 855 | } 856 | 857 | echoLightSTBLYellow() { 858 | $ECHO "\\033[9;5;93m$*\\033[m" 859 | } 860 | 861 | echoBlue() { 862 | $ECHO "\\033[34m$*\\033[m" 863 | } 864 | 865 | echoBoldBlue() { 866 | $ECHO "\\033[1;34m$*\\033[m" 867 | } 868 | 869 | echoIBlue() { 870 | $ECHO "\\033[3;34m$*\\033[m" 871 | } 872 | 873 | echoULBlue() { 874 | $ECHO "\\033[4;34m$*\\033[m" 875 | } 876 | 877 | echoBLBlue() { 878 | $ECHO "\\033[5;34m$*\\033[m" 879 | } 880 | 881 | echoSTBlue() { 882 | $ECHO "\\033[9;34m$*\\033[m" 883 | } 884 | 885 | echoBoldIBlue() { 886 | $ECHO "\\033[1;3;34m$*\\033[m" 887 | } 888 | 889 | echoBoldULBlue() { 890 | $ECHO "\\033[1;4;34m$*\\033[m" 891 | } 892 | 893 | echoBoldBLBlue() { 894 | $ECHO "\\033[1;5;34m$*\\033[m" 895 | } 896 | 897 | echoBoldSTBlue() { 898 | $ECHO "\\033[1;9;34m$*\\033[m" 899 | } 900 | 901 | echoIBoldBlue() { 902 | $ECHO "\\033[3;1;34m$*\\033[m" 903 | } 904 | 905 | echoIULBlue() { 906 | $ECHO "\\033[3;4;34m$*\\033[m" 907 | } 908 | 909 | echoIBLBlue() { 910 | $ECHO "\\033[3;5;34m$*\\033[m" 911 | } 912 | 913 | echoISTBlue() { 914 | $ECHO "\\033[3;9;34m$*\\033[m" 915 | } 916 | 917 | echoULBoldBlue() { 918 | $ECHO "\\033[4;1;34m$*\\033[m" 919 | } 920 | 921 | echoULIBlue() { 922 | $ECHO "\\033[4;3;34m$*\\033[m" 923 | } 924 | 925 | echoULBLBlue() { 926 | $ECHO "\\033[4;5;34m$*\\033[m" 927 | } 928 | 929 | echoULSTBlue() { 930 | $ECHO "\\033[4;9;34m$*\\033[m" 931 | } 932 | 933 | echoBLBoldBlue() { 934 | $ECHO "\\033[5;1;34m$*\\033[m" 935 | } 936 | 937 | echoBLIBlue() { 938 | $ECHO "\\033[5;3;34m$*\\033[m" 939 | } 940 | 941 | echoBLULBlue() { 942 | $ECHO "\\033[5;4;34m$*\\033[m" 943 | } 944 | 945 | echoBLSTBlue() { 946 | $ECHO "\\033[5;9;34m$*\\033[m" 947 | } 948 | 949 | echoSTBoldBlue() { 950 | $ECHO "\\033[9;1;34m$*\\033[m" 951 | } 952 | 953 | echoSTIBlue() { 954 | $ECHO "\\033[9;3;34m$*\\033[m" 955 | } 956 | 957 | echoSTULBlue() { 958 | $ECHO "\\033[9;4;34m$*\\033[m" 959 | } 960 | 961 | echoSTBLBlue() { 962 | $ECHO "\\033[9;5;34m$*\\033[m" 963 | } 964 | 965 | echoLightBlue() { 966 | $ECHO "\\033[94m$*\\033[m" 967 | } 968 | 969 | echoLightBoldBlue() { 970 | $ECHO "\\033[1;94m$*\\033[m" 971 | } 972 | 973 | echoLightIBlue() { 974 | $ECHO "\\033[3;94m$*\\033[m" 975 | } 976 | 977 | echoLightULBlue() { 978 | $ECHO "\\033[4;94m$*\\033[m" 979 | } 980 | 981 | echoLightBLBlue() { 982 | $ECHO "\\033[5;94m$*\\033[m" 983 | } 984 | 985 | echoLightSTBlue() { 986 | $ECHO "\\033[9;94m$*\\033[m" 987 | } 988 | 989 | echoLightBoldIBlue() { 990 | $ECHO "\\033[1;3;94m$*\\033[m" 991 | } 992 | 993 | echoLightBoldULBlue() { 994 | $ECHO "\\033[1;4;94m$*\\033[m" 995 | } 996 | 997 | echoLightBoldBLBlue() { 998 | $ECHO "\\033[1;5;94m$*\\033[m" 999 | } 1000 | 1001 | echoLightBoldSTBlue() { 1002 | $ECHO "\\033[1;9;94m$*\\033[m" 1003 | } 1004 | 1005 | echoLightIBoldBlue() { 1006 | $ECHO "\\033[3;1;94m$*\\033[m" 1007 | } 1008 | 1009 | echoLightIULBlue() { 1010 | $ECHO "\\033[3;4;94m$*\\033[m" 1011 | } 1012 | 1013 | echoLightIBLBlue() { 1014 | $ECHO "\\033[3;5;94m$*\\033[m" 1015 | } 1016 | 1017 | echoLightISTBlue() { 1018 | $ECHO "\\033[3;9;94m$*\\033[m" 1019 | } 1020 | 1021 | echoLightULBoldBlue() { 1022 | $ECHO "\\033[4;1;94m$*\\033[m" 1023 | } 1024 | 1025 | echoLightULIBlue() { 1026 | $ECHO "\\033[4;3;94m$*\\033[m" 1027 | } 1028 | 1029 | echoLightULBLBlue() { 1030 | $ECHO "\\033[4;5;94m$*\\033[m" 1031 | } 1032 | 1033 | echoLightULSTBlue() { 1034 | $ECHO "\\033[4;9;94m$*\\033[m" 1035 | } 1036 | 1037 | echoLightBLBoldBlue() { 1038 | $ECHO "\\033[5;1;94m$*\\033[m" 1039 | } 1040 | 1041 | echoLightBLIBlue() { 1042 | $ECHO "\\033[5;3;94m$*\\033[m" 1043 | } 1044 | 1045 | echoLightBLULBlue() { 1046 | $ECHO "\\033[5;4;94m$*\\033[m" 1047 | } 1048 | 1049 | echoLightBLSTBlue() { 1050 | $ECHO "\\033[5;9;94m$*\\033[m" 1051 | } 1052 | 1053 | echoLightSTBoldBlue() { 1054 | $ECHO "\\033[9;1;94m$*\\033[m" 1055 | } 1056 | 1057 | echoLightSTIBlue() { 1058 | $ECHO "\\033[9;3;94m$*\\033[m" 1059 | } 1060 | 1061 | echoLightSTULBlue() { 1062 | $ECHO "\\033[9;4;94m$*\\033[m" 1063 | } 1064 | 1065 | echoLightSTBLBlue() { 1066 | $ECHO "\\033[9;5;94m$*\\033[m" 1067 | } 1068 | 1069 | echoMagenta() { 1070 | $ECHO "\\033[35m$*\\033[m" 1071 | } 1072 | 1073 | echoBoldMagenta() { 1074 | $ECHO "\\033[1;35m$*\\033[m" 1075 | } 1076 | 1077 | echoIMagenta() { 1078 | $ECHO "\\033[3;35m$*\\033[m" 1079 | } 1080 | 1081 | echoULMagenta() { 1082 | $ECHO "\\033[4;35m$*\\033[m" 1083 | } 1084 | 1085 | echoBLMagenta() { 1086 | $ECHO "\\033[5;35m$*\\033[m" 1087 | } 1088 | 1089 | echoSTMagenta() { 1090 | $ECHO "\\033[9;35m$*\\033[m" 1091 | } 1092 | 1093 | echoBoldIMagenta() { 1094 | $ECHO "\\033[1;3;35m$*\\033[m" 1095 | } 1096 | 1097 | echoBoldULMagenta() { 1098 | $ECHO "\\033[1;4;35m$*\\033[m" 1099 | } 1100 | 1101 | echoBoldBLMagenta() { 1102 | $ECHO "\\033[1;5;35m$*\\033[m" 1103 | } 1104 | 1105 | echoBoldSTMagenta() { 1106 | $ECHO "\\033[1;9;35m$*\\033[m" 1107 | } 1108 | 1109 | echoIBoldMagenta() { 1110 | $ECHO "\\033[3;1;35m$*\\033[m" 1111 | } 1112 | 1113 | echoIULMagenta() { 1114 | $ECHO "\\033[3;4;35m$*\\033[m" 1115 | } 1116 | 1117 | echoIBLMagenta() { 1118 | $ECHO "\\033[3;5;35m$*\\033[m" 1119 | } 1120 | 1121 | echoISTMagenta() { 1122 | $ECHO "\\033[3;9;35m$*\\033[m" 1123 | } 1124 | 1125 | echoULBoldMagenta() { 1126 | $ECHO "\\033[4;1;35m$*\\033[m" 1127 | } 1128 | 1129 | echoULIMagenta() { 1130 | $ECHO "\\033[4;3;35m$*\\033[m" 1131 | } 1132 | 1133 | echoULBLMagenta() { 1134 | $ECHO "\\033[4;5;35m$*\\033[m" 1135 | } 1136 | 1137 | echoULSTMagenta() { 1138 | $ECHO "\\033[4;9;35m$*\\033[m" 1139 | } 1140 | 1141 | echoBLBoldMagenta() { 1142 | $ECHO "\\033[5;1;35m$*\\033[m" 1143 | } 1144 | 1145 | echoBLIMagenta() { 1146 | $ECHO "\\033[5;3;35m$*\\033[m" 1147 | } 1148 | 1149 | echoBLULMagenta() { 1150 | $ECHO "\\033[5;4;35m$*\\033[m" 1151 | } 1152 | 1153 | echoBLSTMagenta() { 1154 | $ECHO "\\033[5;9;35m$*\\033[m" 1155 | } 1156 | 1157 | echoSTBoldMagenta() { 1158 | $ECHO "\\033[9;1;35m$*\\033[m" 1159 | } 1160 | 1161 | echoSTIMagenta() { 1162 | $ECHO "\\033[9;3;35m$*\\033[m" 1163 | } 1164 | 1165 | echoSTULMagenta() { 1166 | $ECHO "\\033[9;4;35m$*\\033[m" 1167 | } 1168 | 1169 | echoSTBLMagenta() { 1170 | $ECHO "\\033[9;5;35m$*\\033[m" 1171 | } 1172 | 1173 | echoLightMagenta() { 1174 | $ECHO "\\033[95m$*\\033[m" 1175 | } 1176 | 1177 | echoLightBoldMagenta() { 1178 | $ECHO "\\033[1;95m$*\\033[m" 1179 | } 1180 | 1181 | echoLightIMagenta() { 1182 | $ECHO "\\033[3;95m$*\\033[m" 1183 | } 1184 | 1185 | echoLightULMagenta() { 1186 | $ECHO "\\033[4;95m$*\\033[m" 1187 | } 1188 | 1189 | echoLightBLMagenta() { 1190 | $ECHO "\\033[5;95m$*\\033[m" 1191 | } 1192 | 1193 | echoLightSTMagenta() { 1194 | $ECHO "\\033[9;95m$*\\033[m" 1195 | } 1196 | 1197 | echoLightBoldIMagenta() { 1198 | $ECHO "\\033[1;3;95m$*\\033[m" 1199 | } 1200 | 1201 | echoLightBoldULMagenta() { 1202 | $ECHO "\\033[1;4;95m$*\\033[m" 1203 | } 1204 | 1205 | echoLightBoldBLMagenta() { 1206 | $ECHO "\\033[1;5;95m$*\\033[m" 1207 | } 1208 | 1209 | echoLightBoldSTMagenta() { 1210 | $ECHO "\\033[1;9;95m$*\\033[m" 1211 | } 1212 | 1213 | echoLightIBoldMagenta() { 1214 | $ECHO "\\033[3;1;95m$*\\033[m" 1215 | } 1216 | 1217 | echoLightIULMagenta() { 1218 | $ECHO "\\033[3;4;95m$*\\033[m" 1219 | } 1220 | 1221 | echoLightIBLMagenta() { 1222 | $ECHO "\\033[3;5;95m$*\\033[m" 1223 | } 1224 | 1225 | echoLightISTMagenta() { 1226 | $ECHO "\\033[3;9;95m$*\\033[m" 1227 | } 1228 | 1229 | echoLightULBoldMagenta() { 1230 | $ECHO "\\033[4;1;95m$*\\033[m" 1231 | } 1232 | 1233 | echoLightULIMagenta() { 1234 | $ECHO "\\033[4;3;95m$*\\033[m" 1235 | } 1236 | 1237 | echoLightULBLMagenta() { 1238 | $ECHO "\\033[4;5;95m$*\\033[m" 1239 | } 1240 | 1241 | echoLightULSTMagenta() { 1242 | $ECHO "\\033[4;9;95m$*\\033[m" 1243 | } 1244 | 1245 | echoLightBLBoldMagenta() { 1246 | $ECHO "\\033[5;1;95m$*\\033[m" 1247 | } 1248 | 1249 | echoLightBLIMagenta() { 1250 | $ECHO "\\033[5;3;95m$*\\033[m" 1251 | } 1252 | 1253 | echoLightBLULMagenta() { 1254 | $ECHO "\\033[5;4;95m$*\\033[m" 1255 | } 1256 | 1257 | echoLightBLSTMagenta() { 1258 | $ECHO "\\033[5;9;95m$*\\033[m" 1259 | } 1260 | 1261 | echoLightSTBoldMagenta() { 1262 | $ECHO "\\033[9;1;95m$*\\033[m" 1263 | } 1264 | 1265 | echoLightSTIMagenta() { 1266 | $ECHO "\\033[9;3;95m$*\\033[m" 1267 | } 1268 | 1269 | echoLightSTULMagenta() { 1270 | $ECHO "\\033[9;4;95m$*\\033[m" 1271 | } 1272 | 1273 | echoLightSTBLMagenta() { 1274 | $ECHO "\\033[9;5;95m$*\\033[m" 1275 | } 1276 | 1277 | echoCyan() { 1278 | $ECHO "\\033[36m$*\\033[m" 1279 | } 1280 | 1281 | echoBoldCyan() { 1282 | $ECHO "\\033[1;36m$*\\033[m" 1283 | } 1284 | 1285 | echoICyan() { 1286 | $ECHO "\\033[3;36m$*\\033[m" 1287 | } 1288 | 1289 | echoULCyan() { 1290 | $ECHO "\\033[4;36m$*\\033[m" 1291 | } 1292 | 1293 | echoBLCyan() { 1294 | $ECHO "\\033[5;36m$*\\033[m" 1295 | } 1296 | 1297 | echoSTCyan() { 1298 | $ECHO "\\033[9;36m$*\\033[m" 1299 | } 1300 | 1301 | echoBoldICyan() { 1302 | $ECHO "\\033[1;3;36m$*\\033[m" 1303 | } 1304 | 1305 | echoBoldULCyan() { 1306 | $ECHO "\\033[1;4;36m$*\\033[m" 1307 | } 1308 | 1309 | echoBoldBLCyan() { 1310 | $ECHO "\\033[1;5;36m$*\\033[m" 1311 | } 1312 | 1313 | echoBoldSTCyan() { 1314 | $ECHO "\\033[1;9;36m$*\\033[m" 1315 | } 1316 | 1317 | echoIBoldCyan() { 1318 | $ECHO "\\033[3;1;36m$*\\033[m" 1319 | } 1320 | 1321 | echoIULCyan() { 1322 | $ECHO "\\033[3;4;36m$*\\033[m" 1323 | } 1324 | 1325 | echoIBLCyan() { 1326 | $ECHO "\\033[3;5;36m$*\\033[m" 1327 | } 1328 | 1329 | echoISTCyan() { 1330 | $ECHO "\\033[3;9;36m$*\\033[m" 1331 | } 1332 | 1333 | echoULBoldCyan() { 1334 | $ECHO "\\033[4;1;36m$*\\033[m" 1335 | } 1336 | 1337 | echoULICyan() { 1338 | $ECHO "\\033[4;3;36m$*\\033[m" 1339 | } 1340 | 1341 | echoULBLCyan() { 1342 | $ECHO "\\033[4;5;36m$*\\033[m" 1343 | } 1344 | 1345 | echoULSTCyan() { 1346 | $ECHO "\\033[4;9;36m$*\\033[m" 1347 | } 1348 | 1349 | echoBLBoldCyan() { 1350 | $ECHO "\\033[5;1;36m$*\\033[m" 1351 | } 1352 | 1353 | echoBLICyan() { 1354 | $ECHO "\\033[5;3;36m$*\\033[m" 1355 | } 1356 | 1357 | echoBLULCyan() { 1358 | $ECHO "\\033[5;4;36m$*\\033[m" 1359 | } 1360 | 1361 | echoBLSTCyan() { 1362 | $ECHO "\\033[5;9;36m$*\\033[m" 1363 | } 1364 | 1365 | echoSTBoldCyan() { 1366 | $ECHO "\\033[9;1;36m$*\\033[m" 1367 | } 1368 | 1369 | echoSTICyan() { 1370 | $ECHO "\\033[9;3;36m$*\\033[m" 1371 | } 1372 | 1373 | echoSTULCyan() { 1374 | $ECHO "\\033[9;4;36m$*\\033[m" 1375 | } 1376 | 1377 | echoSTBLCyan() { 1378 | $ECHO "\\033[9;5;36m$*\\033[m" 1379 | } 1380 | 1381 | echoLightCyan() { 1382 | $ECHO "\\033[96m$*\\033[m" 1383 | } 1384 | 1385 | echoLightBoldCyan() { 1386 | $ECHO "\\033[1;96m$*\\033[m" 1387 | } 1388 | 1389 | echoLightICyan() { 1390 | $ECHO "\\033[3;96m$*\\033[m" 1391 | } 1392 | 1393 | echoLightULCyan() { 1394 | $ECHO "\\033[4;96m$*\\033[m" 1395 | } 1396 | 1397 | echoLightBLCyan() { 1398 | $ECHO "\\033[5;96m$*\\033[m" 1399 | } 1400 | 1401 | echoLightSTCyan() { 1402 | $ECHO "\\033[9;96m$*\\033[m" 1403 | } 1404 | 1405 | echoLightBoldICyan() { 1406 | $ECHO "\\033[1;3;96m$*\\033[m" 1407 | } 1408 | 1409 | echoLightBoldULCyan() { 1410 | $ECHO "\\033[1;4;96m$*\\033[m" 1411 | } 1412 | 1413 | echoLightBoldBLCyan() { 1414 | $ECHO "\\033[1;5;96m$*\\033[m" 1415 | } 1416 | 1417 | echoLightBoldSTCyan() { 1418 | $ECHO "\\033[1;9;96m$*\\033[m" 1419 | } 1420 | 1421 | echoLightIBoldCyan() { 1422 | $ECHO "\\033[3;1;96m$*\\033[m" 1423 | } 1424 | 1425 | echoLightIULCyan() { 1426 | $ECHO "\\033[3;4;96m$*\\033[m" 1427 | } 1428 | 1429 | echoLightIBLCyan() { 1430 | $ECHO "\\033[3;5;96m$*\\033[m" 1431 | } 1432 | 1433 | echoLightISTCyan() { 1434 | $ECHO "\\033[3;9;96m$*\\033[m" 1435 | } 1436 | 1437 | echoLightULBoldCyan() { 1438 | $ECHO "\\033[4;1;96m$*\\033[m" 1439 | } 1440 | 1441 | echoLightULICyan() { 1442 | $ECHO "\\033[4;3;96m$*\\033[m" 1443 | } 1444 | 1445 | echoLightULBLCyan() { 1446 | $ECHO "\\033[4;5;96m$*\\033[m" 1447 | } 1448 | 1449 | echoLightULSTCyan() { 1450 | $ECHO "\\033[4;9;96m$*\\033[m" 1451 | } 1452 | 1453 | echoLightBLBoldCyan() { 1454 | $ECHO "\\033[5;1;96m$*\\033[m" 1455 | } 1456 | 1457 | echoLightBLICyan() { 1458 | $ECHO "\\033[5;3;96m$*\\033[m" 1459 | } 1460 | 1461 | echoLightBLULCyan() { 1462 | $ECHO "\\033[5;4;96m$*\\033[m" 1463 | } 1464 | 1465 | echoLightBLSTCyan() { 1466 | $ECHO "\\033[5;9;96m$*\\033[m" 1467 | } 1468 | 1469 | echoLightSTBoldCyan() { 1470 | $ECHO "\\033[9;1;96m$*\\033[m" 1471 | } 1472 | 1473 | echoLightSTICyan() { 1474 | $ECHO "\\033[9;3;96m$*\\033[m" 1475 | } 1476 | 1477 | echoLightSTULCyan() { 1478 | $ECHO "\\033[9;4;96m$*\\033[m" 1479 | } 1480 | 1481 | echoLightSTBLCyan() { 1482 | $ECHO "\\033[9;5;96m$*\\033[m" 1483 | } 1484 | 1485 | echoWhite() { 1486 | $ECHO "\\033[37m$*\\033[m" 1487 | } 1488 | 1489 | echoBoldWhite() { 1490 | $ECHO "\\033[1;37m$*\\033[m" 1491 | } 1492 | 1493 | echoIWhite() { 1494 | $ECHO "\\033[3;37m$*\\033[m" 1495 | } 1496 | 1497 | echoULWhite() { 1498 | $ECHO "\\033[4;37m$*\\033[m" 1499 | } 1500 | 1501 | echoBLWhite() { 1502 | $ECHO "\\033[5;37m$*\\033[m" 1503 | } 1504 | 1505 | echoSTWhite() { 1506 | $ECHO "\\033[9;37m$*\\033[m" 1507 | } 1508 | 1509 | echoBoldIWhite() { 1510 | $ECHO "\\033[1;3;37m$*\\033[m" 1511 | } 1512 | 1513 | echoBoldULWhite() { 1514 | $ECHO "\\033[1;4;37m$*\\033[m" 1515 | } 1516 | 1517 | echoBoldBLWhite() { 1518 | $ECHO "\\033[1;5;37m$*\\033[m" 1519 | } 1520 | 1521 | echoBoldSTWhite() { 1522 | $ECHO "\\033[1;9;37m$*\\033[m" 1523 | } 1524 | 1525 | echoIBoldWhite() { 1526 | $ECHO "\\033[3;1;37m$*\\033[m" 1527 | } 1528 | 1529 | echoIULWhite() { 1530 | $ECHO "\\033[3;4;37m$*\\033[m" 1531 | } 1532 | 1533 | echoIBLWhite() { 1534 | $ECHO "\\033[3;5;37m$*\\033[m" 1535 | } 1536 | 1537 | echoISTWhite() { 1538 | $ECHO "\\033[3;9;37m$*\\033[m" 1539 | } 1540 | 1541 | echoULBoldWhite() { 1542 | $ECHO "\\033[4;1;37m$*\\033[m" 1543 | } 1544 | 1545 | echoULIWhite() { 1546 | $ECHO "\\033[4;3;37m$*\\033[m" 1547 | } 1548 | 1549 | echoULBLWhite() { 1550 | $ECHO "\\033[4;5;37m$*\\033[m" 1551 | } 1552 | 1553 | echoULSTWhite() { 1554 | $ECHO "\\033[4;9;37m$*\\033[m" 1555 | } 1556 | 1557 | echoBLBoldWhite() { 1558 | $ECHO "\\033[5;1;37m$*\\033[m" 1559 | } 1560 | 1561 | echoBLIWhite() { 1562 | $ECHO "\\033[5;3;37m$*\\033[m" 1563 | } 1564 | 1565 | echoBLULWhite() { 1566 | $ECHO "\\033[5;4;37m$*\\033[m" 1567 | } 1568 | 1569 | echoBLSTWhite() { 1570 | $ECHO "\\033[5;9;37m$*\\033[m" 1571 | } 1572 | 1573 | echoSTBoldWhite() { 1574 | $ECHO "\\033[9;1;37m$*\\033[m" 1575 | } 1576 | 1577 | echoSTIWhite() { 1578 | $ECHO "\\033[9;3;37m$*\\033[m" 1579 | } 1580 | 1581 | echoSTULWhite() { 1582 | $ECHO "\\033[9;4;37m$*\\033[m" 1583 | } 1584 | 1585 | echoSTBLWhite() { 1586 | $ECHO "\\033[9;5;37m$*\\033[m" 1587 | } 1588 | 1589 | echoLightWhite() { 1590 | $ECHO "\\033[97m$*\\033[m" 1591 | } 1592 | 1593 | echoLightBoldWhite() { 1594 | $ECHO "\\033[1;97m$*\\033[m" 1595 | } 1596 | 1597 | echoLightIWhite() { 1598 | $ECHO "\\033[3;97m$*\\033[m" 1599 | } 1600 | 1601 | echoLightULWhite() { 1602 | $ECHO "\\033[4;97m$*\\033[m" 1603 | } 1604 | 1605 | echoLightBLWhite() { 1606 | $ECHO "\\033[5;97m$*\\033[m" 1607 | } 1608 | 1609 | echoLightSTWhite() { 1610 | $ECHO "\\033[9;97m$*\\033[m" 1611 | } 1612 | 1613 | echoLightBoldIWhite() { 1614 | $ECHO "\\033[1;3;97m$*\\033[m" 1615 | } 1616 | 1617 | echoLightBoldULWhite() { 1618 | $ECHO "\\033[1;4;97m$*\\033[m" 1619 | } 1620 | 1621 | echoLightBoldBLWhite() { 1622 | $ECHO "\\033[1;5;97m$*\\033[m" 1623 | } 1624 | 1625 | echoLightBoldSTWhite() { 1626 | $ECHO "\\033[1;9;97m$*\\033[m" 1627 | } 1628 | 1629 | echoLightIBoldWhite() { 1630 | $ECHO "\\033[3;1;97m$*\\033[m" 1631 | } 1632 | 1633 | echoLightIULWhite() { 1634 | $ECHO "\\033[3;4;97m$*\\033[m" 1635 | } 1636 | 1637 | echoLightIBLWhite() { 1638 | $ECHO "\\033[3;5;97m$*\\033[m" 1639 | } 1640 | 1641 | echoLightISTWhite() { 1642 | $ECHO "\\033[3;9;97m$*\\033[m" 1643 | } 1644 | 1645 | echoLightULBoldWhite() { 1646 | $ECHO "\\033[4;1;97m$*\\033[m" 1647 | } 1648 | 1649 | echoLightULIWhite() { 1650 | $ECHO "\\033[4;3;97m$*\\033[m" 1651 | } 1652 | 1653 | echoLightULBLWhite() { 1654 | $ECHO "\\033[4;5;97m$*\\033[m" 1655 | } 1656 | 1657 | echoLightULSTWhite() { 1658 | $ECHO "\\033[4;9;97m$*\\033[m" 1659 | } 1660 | 1661 | echoLightBLBoldWhite() { 1662 | $ECHO "\\033[5;1;97m$*\\033[m" 1663 | } 1664 | 1665 | echoLightBLIWhite() { 1666 | $ECHO "\\033[5;3;97m$*\\033[m" 1667 | } 1668 | 1669 | echoLightBLULWhite() { 1670 | $ECHO "\\033[5;4;97m$*\\033[m" 1671 | } 1672 | 1673 | echoLightBLSTWhite() { 1674 | $ECHO "\\033[5;9;97m$*\\033[m" 1675 | } 1676 | 1677 | echoLightSTBoldWhite() { 1678 | $ECHO "\\033[9;1;97m$*\\033[m" 1679 | } 1680 | 1681 | echoLightSTIWhite() { 1682 | $ECHO "\\033[9;3;97m$*\\033[m" 1683 | } 1684 | 1685 | echoLightSTULWhite() { 1686 | $ECHO "\\033[9;4;97m$*\\033[m" 1687 | } 1688 | 1689 | echoLightSTBLWhite() { 1690 | $ECHO "\\033[9;5;97m$*\\033[m" 1691 | } 1692 | 1693 | echoPurple() { 1694 | $ECHO "\\033[3;38;5;93m$*\\033[m" 1695 | } 1696 | 1697 | echoBoldPurple() { 1698 | $ECHO "\\033[1;3;38;5;93m$*\\033[m" 1699 | } 1700 | 1701 | echoIPurple() { 1702 | $ECHO "\\033[3;3;38;5;93m$*\\033[m" 1703 | } 1704 | 1705 | echoULPurple() { 1706 | $ECHO "\\033[4;3;38;5;93m$*\\033[m" 1707 | } 1708 | 1709 | echoBLPurple() { 1710 | $ECHO "\\033[5;3;38;5;93m$*\\033[m" 1711 | } 1712 | 1713 | echoSTPurple() { 1714 | $ECHO "\\033[9;3;38;5;93m$*\\033[m" 1715 | } 1716 | 1717 | echoBoldIPurple() { 1718 | $ECHO "\\033[1;3;3;38;5;93m$*\\033[m" 1719 | } 1720 | 1721 | echoBoldULPurple() { 1722 | $ECHO "\\033[1;4;3;38;5;93m$*\\033[m" 1723 | } 1724 | 1725 | echoBoldBLPurple() { 1726 | $ECHO "\\033[1;5;3;38;5;93m$*\\033[m" 1727 | } 1728 | 1729 | echoBoldSTPurple() { 1730 | $ECHO "\\033[1;9;3;38;5;93m$*\\033[m" 1731 | } 1732 | 1733 | echoIBoldPurple() { 1734 | $ECHO "\\033[3;1;3;38;5;93m$*\\033[m" 1735 | } 1736 | 1737 | echoIULPurple() { 1738 | $ECHO "\\033[3;4;3;38;5;93m$*\\033[m" 1739 | } 1740 | 1741 | echoIBLPurple() { 1742 | $ECHO "\\033[3;5;3;38;5;93m$*\\033[m" 1743 | } 1744 | 1745 | echoISTPurple() { 1746 | $ECHO "\\033[3;9;3;38;5;93m$*\\033[m" 1747 | } 1748 | 1749 | echoULBoldPurple() { 1750 | $ECHO "\\033[4;1;3;38;5;93m$*\\033[m" 1751 | } 1752 | 1753 | echoULIPurple() { 1754 | $ECHO "\\033[4;3;3;38;5;93m$*\\033[m" 1755 | } 1756 | 1757 | echoULBLPurple() { 1758 | $ECHO "\\033[4;5;3;38;5;93m$*\\033[m" 1759 | } 1760 | 1761 | echoULSTPurple() { 1762 | $ECHO "\\033[4;9;3;38;5;93m$*\\033[m" 1763 | } 1764 | 1765 | echoBLBoldPurple() { 1766 | $ECHO "\\033[5;1;3;38;5;93m$*\\033[m" 1767 | } 1768 | 1769 | echoBLIPurple() { 1770 | $ECHO "\\033[5;3;3;38;5;93m$*\\033[m" 1771 | } 1772 | 1773 | echoBLULPurple() { 1774 | $ECHO "\\033[5;4;3;38;5;93m$*\\033[m" 1775 | } 1776 | 1777 | echoBLSTPurple() { 1778 | $ECHO "\\033[5;9;3;38;5;93m$*\\033[m" 1779 | } 1780 | 1781 | echoSTBoldPurple() { 1782 | $ECHO "\\033[9;1;3;38;5;93m$*\\033[m" 1783 | } 1784 | 1785 | echoSTIPurple() { 1786 | $ECHO "\\033[9;3;3;38;5;93m$*\\033[m" 1787 | } 1788 | 1789 | echoSTULPurple() { 1790 | $ECHO "\\033[9;4;3;38;5;93m$*\\033[m" 1791 | } 1792 | 1793 | echoSTBLPurple() { 1794 | $ECHO "\\033[9;5;3;38;5;93m$*\\033[m" 1795 | } 1796 | 1797 | echoLightPurple() { 1798 | $ECHO "\\033[9;38;5;93m$*\\033[m" 1799 | } 1800 | 1801 | echoLightBoldPurple() { 1802 | $ECHO "\\033[1;9;38;5;93m$*\\033[m" 1803 | } 1804 | 1805 | echoLightIPurple() { 1806 | $ECHO "\\033[3;9;38;5;93m$*\\033[m" 1807 | } 1808 | 1809 | echoLightULPurple() { 1810 | $ECHO "\\033[4;9;38;5;93m$*\\033[m" 1811 | } 1812 | 1813 | echoLightBLPurple() { 1814 | $ECHO "\\033[5;9;38;5;93m$*\\033[m" 1815 | } 1816 | 1817 | echoLightSTPurple() { 1818 | $ECHO "\\033[9;9;38;5;93m$*\\033[m" 1819 | } 1820 | 1821 | echoLightBoldIPurple() { 1822 | $ECHO "\\033[1;3;9;38;5;93m$*\\033[m" 1823 | } 1824 | 1825 | echoLightBoldULPurple() { 1826 | $ECHO "\\033[1;4;9;38;5;93m$*\\033[m" 1827 | } 1828 | 1829 | echoLightBoldBLPurple() { 1830 | $ECHO "\\033[1;5;9;38;5;93m$*\\033[m" 1831 | } 1832 | 1833 | echoLightBoldSTPurple() { 1834 | $ECHO "\\033[1;9;9;38;5;93m$*\\033[m" 1835 | } 1836 | 1837 | echoLightIBoldPurple() { 1838 | $ECHO "\\033[3;1;9;38;5;93m$*\\033[m" 1839 | } 1840 | 1841 | echoLightIULPurple() { 1842 | $ECHO "\\033[3;4;9;38;5;93m$*\\033[m" 1843 | } 1844 | 1845 | echoLightIBLPurple() { 1846 | $ECHO "\\033[3;5;9;38;5;93m$*\\033[m" 1847 | } 1848 | 1849 | echoLightISTPurple() { 1850 | $ECHO "\\033[3;9;9;38;5;93m$*\\033[m" 1851 | } 1852 | 1853 | echoLightULBoldPurple() { 1854 | $ECHO "\\033[4;1;9;38;5;93m$*\\033[m" 1855 | } 1856 | 1857 | echoLightULIPurple() { 1858 | $ECHO "\\033[4;3;9;38;5;93m$*\\033[m" 1859 | } 1860 | 1861 | echoLightULBLPurple() { 1862 | $ECHO "\\033[4;5;9;38;5;93m$*\\033[m" 1863 | } 1864 | 1865 | echoLightULSTPurple() { 1866 | $ECHO "\\033[4;9;9;38;5;93m$*\\033[m" 1867 | } 1868 | 1869 | echoLightBLBoldPurple() { 1870 | $ECHO "\\033[5;1;9;38;5;93m$*\\033[m" 1871 | } 1872 | 1873 | echoLightBLIPurple() { 1874 | $ECHO "\\033[5;3;9;38;5;93m$*\\033[m" 1875 | } 1876 | 1877 | echoLightBLULPurple() { 1878 | $ECHO "\\033[5;4;9;38;5;93m$*\\033[m" 1879 | } 1880 | 1881 | echoLightBLSTPurple() { 1882 | $ECHO "\\033[5;9;9;38;5;93m$*\\033[m" 1883 | } 1884 | 1885 | echoLightSTBoldPurple() { 1886 | $ECHO "\\033[9;1;9;38;5;93m$*\\033[m" 1887 | } 1888 | 1889 | echoLightSTIPurple() { 1890 | $ECHO "\\033[9;3;9;38;5;93m$*\\033[m" 1891 | } 1892 | 1893 | echoLightSTULPurple() { 1894 | $ECHO "\\033[9;4;9;38;5;93m$*\\033[m" 1895 | } 1896 | 1897 | echoLightSTBLPurple() { 1898 | $ECHO "\\033[9;5;9;38;5;93m$*\\033[m" 1899 | } 1900 | 1901 | echoOrange() { 1902 | $ECHO "\\033[3;38;5;202m$*\\033[m" 1903 | } 1904 | 1905 | echoBoldOrange() { 1906 | $ECHO "\\033[1;3;38;5;202m$*\\033[m" 1907 | } 1908 | 1909 | echoIOrange() { 1910 | $ECHO "\\033[3;3;38;5;202m$*\\033[m" 1911 | } 1912 | 1913 | echoULOrange() { 1914 | $ECHO "\\033[4;3;38;5;202m$*\\033[m" 1915 | } 1916 | 1917 | echoBLOrange() { 1918 | $ECHO "\\033[5;3;38;5;202m$*\\033[m" 1919 | } 1920 | 1921 | echoSTOrange() { 1922 | $ECHO "\\033[9;3;38;5;202m$*\\033[m" 1923 | } 1924 | 1925 | echoBoldIOrange() { 1926 | $ECHO "\\033[1;3;3;38;5;202m$*\\033[m" 1927 | } 1928 | 1929 | echoBoldULOrange() { 1930 | $ECHO "\\033[1;4;3;38;5;202m$*\\033[m" 1931 | } 1932 | 1933 | echoBoldBLOrange() { 1934 | $ECHO "\\033[1;5;3;38;5;202m$*\\033[m" 1935 | } 1936 | 1937 | echoBoldSTOrange() { 1938 | $ECHO "\\033[1;9;3;38;5;202m$*\\033[m" 1939 | } 1940 | 1941 | echoIBoldOrange() { 1942 | $ECHO "\\033[3;1;3;38;5;202m$*\\033[m" 1943 | } 1944 | 1945 | echoIULOrange() { 1946 | $ECHO "\\033[3;4;3;38;5;202m$*\\033[m" 1947 | } 1948 | 1949 | echoIBLOrange() { 1950 | $ECHO "\\033[3;5;3;38;5;202m$*\\033[m" 1951 | } 1952 | 1953 | echoISTOrange() { 1954 | $ECHO "\\033[3;9;3;38;5;202m$*\\033[m" 1955 | } 1956 | 1957 | echoULBoldOrange() { 1958 | $ECHO "\\033[4;1;3;38;5;202m$*\\033[m" 1959 | } 1960 | 1961 | echoULIOrange() { 1962 | $ECHO "\\033[4;3;3;38;5;202m$*\\033[m" 1963 | } 1964 | 1965 | echoULBLOrange() { 1966 | $ECHO "\\033[4;5;3;38;5;202m$*\\033[m" 1967 | } 1968 | 1969 | echoULSTOrange() { 1970 | $ECHO "\\033[4;9;3;38;5;202m$*\\033[m" 1971 | } 1972 | 1973 | echoBLBoldOrange() { 1974 | $ECHO "\\033[5;1;3;38;5;202m$*\\033[m" 1975 | } 1976 | 1977 | echoBLIOrange() { 1978 | $ECHO "\\033[5;3;3;38;5;202m$*\\033[m" 1979 | } 1980 | 1981 | echoBLULOrange() { 1982 | $ECHO "\\033[5;4;3;38;5;202m$*\\033[m" 1983 | } 1984 | 1985 | echoBLSTOrange() { 1986 | $ECHO "\\033[5;9;3;38;5;202m$*\\033[m" 1987 | } 1988 | 1989 | echoSTBoldOrange() { 1990 | $ECHO "\\033[9;1;3;38;5;202m$*\\033[m" 1991 | } 1992 | 1993 | echoSTIOrange() { 1994 | $ECHO "\\033[9;3;3;38;5;202m$*\\033[m" 1995 | } 1996 | 1997 | echoSTULOrange() { 1998 | $ECHO "\\033[9;4;3;38;5;202m$*\\033[m" 1999 | } 2000 | 2001 | echoSTBLOrange() { 2002 | $ECHO "\\033[9;5;3;38;5;202m$*\\033[m" 2003 | } 2004 | 2005 | echoLightOrange() { 2006 | $ECHO "\\033[9;38;5;202m$*\\033[m" 2007 | } 2008 | 2009 | echoLightBoldOrange() { 2010 | $ECHO "\\033[1;9;38;5;202m$*\\033[m" 2011 | } 2012 | 2013 | echoLightIOrange() { 2014 | $ECHO "\\033[3;9;38;5;202m$*\\033[m" 2015 | } 2016 | 2017 | echoLightULOrange() { 2018 | $ECHO "\\033[4;9;38;5;202m$*\\033[m" 2019 | } 2020 | 2021 | echoLightBLOrange() { 2022 | $ECHO "\\033[5;9;38;5;202m$*\\033[m" 2023 | } 2024 | 2025 | echoLightSTOrange() { 2026 | $ECHO "\\033[9;9;38;5;202m$*\\033[m" 2027 | } 2028 | 2029 | echoLightBoldIOrange() { 2030 | $ECHO "\\033[1;3;9;38;5;202m$*\\033[m" 2031 | } 2032 | 2033 | echoLightBoldULOrange() { 2034 | $ECHO "\\033[1;4;9;38;5;202m$*\\033[m" 2035 | } 2036 | 2037 | echoLightBoldBLOrange() { 2038 | $ECHO "\\033[1;5;9;38;5;202m$*\\033[m" 2039 | } 2040 | 2041 | echoLightBoldSTOrange() { 2042 | $ECHO "\\033[1;9;9;38;5;202m$*\\033[m" 2043 | } 2044 | 2045 | echoLightIBoldOrange() { 2046 | $ECHO "\\033[3;1;9;38;5;202m$*\\033[m" 2047 | } 2048 | 2049 | echoLightIULOrange() { 2050 | $ECHO "\\033[3;4;9;38;5;202m$*\\033[m" 2051 | } 2052 | 2053 | echoLightIBLOrange() { 2054 | $ECHO "\\033[3;5;9;38;5;202m$*\\033[m" 2055 | } 2056 | 2057 | echoLightISTOrange() { 2058 | $ECHO "\\033[3;9;9;38;5;202m$*\\033[m" 2059 | } 2060 | 2061 | echoLightULBoldOrange() { 2062 | $ECHO "\\033[4;1;9;38;5;202m$*\\033[m" 2063 | } 2064 | 2065 | echoLightULIOrange() { 2066 | $ECHO "\\033[4;3;9;38;5;202m$*\\033[m" 2067 | } 2068 | 2069 | echoLightULBLOrange() { 2070 | $ECHO "\\033[4;5;9;38;5;202m$*\\033[m" 2071 | } 2072 | 2073 | echoLightULSTOrange() { 2074 | $ECHO "\\033[4;9;9;38;5;202m$*\\033[m" 2075 | } 2076 | 2077 | echoLightBLBoldOrange() { 2078 | $ECHO "\\033[5;1;9;38;5;202m$*\\033[m" 2079 | } 2080 | 2081 | echoLightBLIOrange() { 2082 | $ECHO "\\033[5;3;9;38;5;202m$*\\033[m" 2083 | } 2084 | 2085 | echoLightBLULOrange() { 2086 | $ECHO "\\033[5;4;9;38;5;202m$*\\033[m" 2087 | } 2088 | 2089 | echoLightBLSTOrange() { 2090 | $ECHO "\\033[5;9;9;38;5;202m$*\\033[m" 2091 | } 2092 | 2093 | echoLightSTBoldOrange() { 2094 | $ECHO "\\033[9;1;9;38;5;202m$*\\033[m" 2095 | } 2096 | 2097 | echoLightSTIOrange() { 2098 | $ECHO "\\033[9;3;9;38;5;202m$*\\033[m" 2099 | } 2100 | 2101 | echoLightSTULOrange() { 2102 | $ECHO "\\033[9;4;9;38;5;202m$*\\033[m" 2103 | } 2104 | 2105 | echoLightSTBLOrange() { 2106 | $ECHO "\\033[9;5;9;38;5;202m$*\\033[m" 2107 | } 2108 | 2109 | echoPink() { 2110 | $ECHO "\\033[3;38;5;206m$*\\033[m" 2111 | } 2112 | 2113 | echoBoldPink() { 2114 | $ECHO "\\033[1;3;38;5;206m$*\\033[m" 2115 | } 2116 | 2117 | echoIPink() { 2118 | $ECHO "\\033[3;3;38;5;206m$*\\033[m" 2119 | } 2120 | 2121 | echoULPink() { 2122 | $ECHO "\\033[4;3;38;5;206m$*\\033[m" 2123 | } 2124 | 2125 | echoBLPink() { 2126 | $ECHO "\\033[5;3;38;5;206m$*\\033[m" 2127 | } 2128 | 2129 | echoSTPink() { 2130 | $ECHO "\\033[9;3;38;5;206m$*\\033[m" 2131 | } 2132 | 2133 | echoBoldIPink() { 2134 | $ECHO "\\033[1;3;3;38;5;206m$*\\033[m" 2135 | } 2136 | 2137 | echoBoldULPink() { 2138 | $ECHO "\\033[1;4;3;38;5;206m$*\\033[m" 2139 | } 2140 | 2141 | echoBoldBLPink() { 2142 | $ECHO "\\033[1;5;3;38;5;206m$*\\033[m" 2143 | } 2144 | 2145 | echoBoldSTPink() { 2146 | $ECHO "\\033[1;9;3;38;5;206m$*\\033[m" 2147 | } 2148 | 2149 | echoIBoldPink() { 2150 | $ECHO "\\033[3;1;3;38;5;206m$*\\033[m" 2151 | } 2152 | 2153 | echoIULPink() { 2154 | $ECHO "\\033[3;4;3;38;5;206m$*\\033[m" 2155 | } 2156 | 2157 | echoIBLPink() { 2158 | $ECHO "\\033[3;5;3;38;5;206m$*\\033[m" 2159 | } 2160 | 2161 | echoISTPink() { 2162 | $ECHO "\\033[3;9;3;38;5;206m$*\\033[m" 2163 | } 2164 | 2165 | echoULBoldPink() { 2166 | $ECHO "\\033[4;1;3;38;5;206m$*\\033[m" 2167 | } 2168 | 2169 | echoULIPink() { 2170 | $ECHO "\\033[4;3;3;38;5;206m$*\\033[m" 2171 | } 2172 | 2173 | echoULBLPink() { 2174 | $ECHO "\\033[4;5;3;38;5;206m$*\\033[m" 2175 | } 2176 | 2177 | echoULSTPink() { 2178 | $ECHO "\\033[4;9;3;38;5;206m$*\\033[m" 2179 | } 2180 | 2181 | echoBLBoldPink() { 2182 | $ECHO "\\033[5;1;3;38;5;206m$*\\033[m" 2183 | } 2184 | 2185 | echoBLIPink() { 2186 | $ECHO "\\033[5;3;3;38;5;206m$*\\033[m" 2187 | } 2188 | 2189 | echoBLULPink() { 2190 | $ECHO "\\033[5;4;3;38;5;206m$*\\033[m" 2191 | } 2192 | 2193 | echoBLSTPink() { 2194 | $ECHO "\\033[5;9;3;38;5;206m$*\\033[m" 2195 | } 2196 | 2197 | echoSTBoldPink() { 2198 | $ECHO "\\033[9;1;3;38;5;206m$*\\033[m" 2199 | } 2200 | 2201 | echoSTIPink() { 2202 | $ECHO "\\033[9;3;3;38;5;206m$*\\033[m" 2203 | } 2204 | 2205 | echoSTULPink() { 2206 | $ECHO "\\033[9;4;3;38;5;206m$*\\033[m" 2207 | } 2208 | 2209 | echoSTBLPink() { 2210 | $ECHO "\\033[9;5;3;38;5;206m$*\\033[m" 2211 | } 2212 | 2213 | echoLightPink() { 2214 | $ECHO "\\033[9;38;5;206m$*\\033[m" 2215 | } 2216 | 2217 | echoLightBoldPink() { 2218 | $ECHO "\\033[1;9;38;5;206m$*\\033[m" 2219 | } 2220 | 2221 | echoLightIPink() { 2222 | $ECHO "\\033[3;9;38;5;206m$*\\033[m" 2223 | } 2224 | 2225 | echoLightULPink() { 2226 | $ECHO "\\033[4;9;38;5;206m$*\\033[m" 2227 | } 2228 | 2229 | echoLightBLPink() { 2230 | $ECHO "\\033[5;9;38;5;206m$*\\033[m" 2231 | } 2232 | 2233 | echoLightSTPink() { 2234 | $ECHO "\\033[9;9;38;5;206m$*\\033[m" 2235 | } 2236 | 2237 | echoLightBoldIPink() { 2238 | $ECHO "\\033[1;3;9;38;5;206m$*\\033[m" 2239 | } 2240 | 2241 | echoLightBoldULPink() { 2242 | $ECHO "\\033[1;4;9;38;5;206m$*\\033[m" 2243 | } 2244 | 2245 | echoLightBoldBLPink() { 2246 | $ECHO "\\033[1;5;9;38;5;206m$*\\033[m" 2247 | } 2248 | 2249 | echoLightBoldSTPink() { 2250 | $ECHO "\\033[1;9;9;38;5;206m$*\\033[m" 2251 | } 2252 | 2253 | echoLightIBoldPink() { 2254 | $ECHO "\\033[3;1;9;38;5;206m$*\\033[m" 2255 | } 2256 | 2257 | echoLightIULPink() { 2258 | $ECHO "\\033[3;4;9;38;5;206m$*\\033[m" 2259 | } 2260 | 2261 | echoLightIBLPink() { 2262 | $ECHO "\\033[3;5;9;38;5;206m$*\\033[m" 2263 | } 2264 | 2265 | echoLightISTPink() { 2266 | $ECHO "\\033[3;9;9;38;5;206m$*\\033[m" 2267 | } 2268 | 2269 | echoLightULBoldPink() { 2270 | $ECHO "\\033[4;1;9;38;5;206m$*\\033[m" 2271 | } 2272 | 2273 | echoLightULIPink() { 2274 | $ECHO "\\033[4;3;9;38;5;206m$*\\033[m" 2275 | } 2276 | 2277 | echoLightULBLPink() { 2278 | $ECHO "\\033[4;5;9;38;5;206m$*\\033[m" 2279 | } 2280 | 2281 | echoLightULSTPink() { 2282 | $ECHO "\\033[4;9;9;38;5;206m$*\\033[m" 2283 | } 2284 | 2285 | echoLightBLBoldPink() { 2286 | $ECHO "\\033[5;1;9;38;5;206m$*\\033[m" 2287 | } 2288 | 2289 | echoLightBLIPink() { 2290 | $ECHO "\\033[5;3;9;38;5;206m$*\\033[m" 2291 | } 2292 | 2293 | echoLightBLULPink() { 2294 | $ECHO "\\033[5;4;9;38;5;206m$*\\033[m" 2295 | } 2296 | 2297 | echoLightBLSTPink() { 2298 | $ECHO "\\033[5;9;9;38;5;206m$*\\033[m" 2299 | } 2300 | 2301 | echoLightSTBoldPink() { 2302 | $ECHO "\\033[9;1;9;38;5;206m$*\\033[m" 2303 | } 2304 | 2305 | echoLightSTIPink() { 2306 | $ECHO "\\033[9;3;9;38;5;206m$*\\033[m" 2307 | } 2308 | 2309 | echoLightSTULPink() { 2310 | $ECHO "\\033[9;4;9;38;5;206m$*\\033[m" 2311 | } 2312 | 2313 | echoLightSTBLPink() { 2314 | $ECHO "\\033[9;5;9;38;5;206m$*\\033[m" 2315 | } 2316 | 2317 | echoBrown() { 2318 | $ECHO "\\033[3;38;5;52m$*\\033[m" 2319 | } 2320 | 2321 | echoBoldBrown() { 2322 | $ECHO "\\033[1;3;38;5;52m$*\\033[m" 2323 | } 2324 | 2325 | echoIBrown() { 2326 | $ECHO "\\033[3;3;38;5;52m$*\\033[m" 2327 | } 2328 | 2329 | echoULBrown() { 2330 | $ECHO "\\033[4;3;38;5;52m$*\\033[m" 2331 | } 2332 | 2333 | echoBLBrown() { 2334 | $ECHO "\\033[5;3;38;5;52m$*\\033[m" 2335 | } 2336 | 2337 | echoSTBrown() { 2338 | $ECHO "\\033[9;3;38;5;52m$*\\033[m" 2339 | } 2340 | 2341 | echoBoldIBrown() { 2342 | $ECHO "\\033[1;3;3;38;5;52m$*\\033[m" 2343 | } 2344 | 2345 | echoBoldULBrown() { 2346 | $ECHO "\\033[1;4;3;38;5;52m$*\\033[m" 2347 | } 2348 | 2349 | echoBoldBLBrown() { 2350 | $ECHO "\\033[1;5;3;38;5;52m$*\\033[m" 2351 | } 2352 | 2353 | echoBoldSTBrown() { 2354 | $ECHO "\\033[1;9;3;38;5;52m$*\\033[m" 2355 | } 2356 | 2357 | echoIBoldBrown() { 2358 | $ECHO "\\033[3;1;3;38;5;52m$*\\033[m" 2359 | } 2360 | 2361 | echoIULBrown() { 2362 | $ECHO "\\033[3;4;3;38;5;52m$*\\033[m" 2363 | } 2364 | 2365 | echoIBLBrown() { 2366 | $ECHO "\\033[3;5;3;38;5;52m$*\\033[m" 2367 | } 2368 | 2369 | echoISTBrown() { 2370 | $ECHO "\\033[3;9;3;38;5;52m$*\\033[m" 2371 | } 2372 | 2373 | echoULBoldBrown() { 2374 | $ECHO "\\033[4;1;3;38;5;52m$*\\033[m" 2375 | } 2376 | 2377 | echoULIBrown() { 2378 | $ECHO "\\033[4;3;3;38;5;52m$*\\033[m" 2379 | } 2380 | 2381 | echoULBLBrown() { 2382 | $ECHO "\\033[4;5;3;38;5;52m$*\\033[m" 2383 | } 2384 | 2385 | echoULSTBrown() { 2386 | $ECHO "\\033[4;9;3;38;5;52m$*\\033[m" 2387 | } 2388 | 2389 | echoBLBoldBrown() { 2390 | $ECHO "\\033[5;1;3;38;5;52m$*\\033[m" 2391 | } 2392 | 2393 | echoBLIBrown() { 2394 | $ECHO "\\033[5;3;3;38;5;52m$*\\033[m" 2395 | } 2396 | 2397 | echoBLULBrown() { 2398 | $ECHO "\\033[5;4;3;38;5;52m$*\\033[m" 2399 | } 2400 | 2401 | echoBLSTBrown() { 2402 | $ECHO "\\033[5;9;3;38;5;52m$*\\033[m" 2403 | } 2404 | 2405 | echoSTBoldBrown() { 2406 | $ECHO "\\033[9;1;3;38;5;52m$*\\033[m" 2407 | } 2408 | 2409 | echoSTIBrown() { 2410 | $ECHO "\\033[9;3;3;38;5;52m$*\\033[m" 2411 | } 2412 | 2413 | echoSTULBrown() { 2414 | $ECHO "\\033[9;4;3;38;5;52m$*\\033[m" 2415 | } 2416 | 2417 | echoSTBLBrown() { 2418 | $ECHO "\\033[9;5;3;38;5;52m$*\\033[m" 2419 | } 2420 | 2421 | echoLightBrown() { 2422 | $ECHO "\\033[9;38;5;52m$*\\033[m" 2423 | } 2424 | 2425 | echoLightBoldBrown() { 2426 | $ECHO "\\033[1;9;38;5;52m$*\\033[m" 2427 | } 2428 | 2429 | echoLightIBrown() { 2430 | $ECHO "\\033[3;9;38;5;52m$*\\033[m" 2431 | } 2432 | 2433 | echoLightULBrown() { 2434 | $ECHO "\\033[4;9;38;5;52m$*\\033[m" 2435 | } 2436 | 2437 | echoLightBLBrown() { 2438 | $ECHO "\\033[5;9;38;5;52m$*\\033[m" 2439 | } 2440 | 2441 | echoLightSTBrown() { 2442 | $ECHO "\\033[9;9;38;5;52m$*\\033[m" 2443 | } 2444 | 2445 | echoLightBoldIBrown() { 2446 | $ECHO "\\033[1;3;9;38;5;52m$*\\033[m" 2447 | } 2448 | 2449 | echoLightBoldULBrown() { 2450 | $ECHO "\\033[1;4;9;38;5;52m$*\\033[m" 2451 | } 2452 | 2453 | echoLightBoldBLBrown() { 2454 | $ECHO "\\033[1;5;9;38;5;52m$*\\033[m" 2455 | } 2456 | 2457 | echoLightBoldSTBrown() { 2458 | $ECHO "\\033[1;9;9;38;5;52m$*\\033[m" 2459 | } 2460 | 2461 | echoLightIBoldBrown() { 2462 | $ECHO "\\033[3;1;9;38;5;52m$*\\033[m" 2463 | } 2464 | 2465 | echoLightIULBrown() { 2466 | $ECHO "\\033[3;4;9;38;5;52m$*\\033[m" 2467 | } 2468 | 2469 | echoLightIBLBrown() { 2470 | $ECHO "\\033[3;5;9;38;5;52m$*\\033[m" 2471 | } 2472 | 2473 | echoLightISTBrown() { 2474 | $ECHO "\\033[3;9;9;38;5;52m$*\\033[m" 2475 | } 2476 | 2477 | echoLightULBoldBrown() { 2478 | $ECHO "\\033[4;1;9;38;5;52m$*\\033[m" 2479 | } 2480 | 2481 | echoLightULIBrown() { 2482 | $ECHO "\\033[4;3;9;38;5;52m$*\\033[m" 2483 | } 2484 | 2485 | echoLightULBLBrown() { 2486 | $ECHO "\\033[4;5;9;38;5;52m$*\\033[m" 2487 | } 2488 | 2489 | echoLightULSTBrown() { 2490 | $ECHO "\\033[4;9;9;38;5;52m$*\\033[m" 2491 | } 2492 | 2493 | echoLightBLBoldBrown() { 2494 | $ECHO "\\033[5;1;9;38;5;52m$*\\033[m" 2495 | } 2496 | 2497 | echoLightBLIBrown() { 2498 | $ECHO "\\033[5;3;9;38;5;52m$*\\033[m" 2499 | } 2500 | 2501 | echoLightBLULBrown() { 2502 | $ECHO "\\033[5;4;9;38;5;52m$*\\033[m" 2503 | } 2504 | 2505 | echoLightBLSTBrown() { 2506 | $ECHO "\\033[5;9;9;38;5;52m$*\\033[m" 2507 | } 2508 | 2509 | echoLightSTBoldBrown() { 2510 | $ECHO "\\033[9;1;9;38;5;52m$*\\033[m" 2511 | } 2512 | 2513 | echoLightSTIBrown() { 2514 | $ECHO "\\033[9;3;9;38;5;52m$*\\033[m" 2515 | } 2516 | 2517 | echoLightSTULBrown() { 2518 | $ECHO "\\033[9;4;9;38;5;52m$*\\033[m" 2519 | } 2520 | 2521 | echoLightSTBLBrown() { 2522 | $ECHO "\\033[9;5;9;38;5;52m$*\\033[m" 2523 | } 2524 | echoRainbow() { 2525 | if command -v lolcat > /dev/null 2>&1; then 2526 | echo "$*" | lolcat 2527 | else 2528 | echo "$*" 2529 | fi 2530 | } 2531 | echoReset() { 2532 | echo "$*" | tr -d '[:cntrl:]' | sed -E "s/\\[((;)?[0-9]{1,3}){0,3}m//g" | xargs 2533 | } 2534 | -------------------------------------------------------------------------------- /dist/ColorEcho.zsh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | 3 | # ColorEchoForShell 4 | # https://github.com/PeterDaveHello/ColorEchoForShell 5 | # Copyright (C) 2015 ~ Peter Dave Hello 6 | # 7 | # This program is free software; you can redistribute it and/or modify 8 | # it under the terms of the GNU General Public License as published by 9 | # the Free Software Foundation; either version 2 of the License, or (at 10 | # your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, but 13 | # WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 | # General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU General Public License 18 | # along with this program; if not, write to the Free Software 19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 20 | # USA. 21 | 22 | function echo.Black() { 23 | echo -e "\\033[30m$*\\033[m" 24 | } 25 | 26 | function echo.BoldBlack() { 27 | echo -e "\\033[1;30m$*\\033[m" 28 | } 29 | 30 | function echo.IBlack() { 31 | echo -e "\\033[3;30m$*\\033[m" 32 | } 33 | 34 | function echo.ULBlack() { 35 | echo -e "\\033[4;30m$*\\033[m" 36 | } 37 | 38 | function echo.BLBlack() { 39 | echo -e "\\033[5;30m$*\\033[m" 40 | } 41 | 42 | function echo.STBlack() { 43 | echo -e "\\033[9;30m$*\\033[m" 44 | } 45 | 46 | function echo.BoldIBlack() { 47 | echo -e "\\033[1;3;30m$*\\033[m" 48 | } 49 | 50 | function echo.BoldULBlack() { 51 | echo -e "\\033[1;4;30m$*\\033[m" 52 | } 53 | 54 | function echo.BoldBLBlack() { 55 | echo -e "\\033[1;5;30m$*\\033[m" 56 | } 57 | 58 | function echo.BoldSTBlack() { 59 | echo -e "\\033[1;9;30m$*\\033[m" 60 | } 61 | 62 | function echo.IBoldBlack() { 63 | echo -e "\\033[3;1;30m$*\\033[m" 64 | } 65 | 66 | function echo.IULBlack() { 67 | echo -e "\\033[3;4;30m$*\\033[m" 68 | } 69 | 70 | function echo.IBLBlack() { 71 | echo -e "\\033[3;5;30m$*\\033[m" 72 | } 73 | 74 | function echo.ISTBlack() { 75 | echo -e "\\033[3;9;30m$*\\033[m" 76 | } 77 | 78 | function echo.ULBoldBlack() { 79 | echo -e "\\033[4;1;30m$*\\033[m" 80 | } 81 | 82 | function echo.ULIBlack() { 83 | echo -e "\\033[4;3;30m$*\\033[m" 84 | } 85 | 86 | function echo.ULBLBlack() { 87 | echo -e "\\033[4;5;30m$*\\033[m" 88 | } 89 | 90 | function echo.ULSTBlack() { 91 | echo -e "\\033[4;9;30m$*\\033[m" 92 | } 93 | 94 | function echo.BLBoldBlack() { 95 | echo -e "\\033[5;1;30m$*\\033[m" 96 | } 97 | 98 | function echo.BLIBlack() { 99 | echo -e "\\033[5;3;30m$*\\033[m" 100 | } 101 | 102 | function echo.BLULBlack() { 103 | echo -e "\\033[5;4;30m$*\\033[m" 104 | } 105 | 106 | function echo.BLSTBlack() { 107 | echo -e "\\033[5;9;30m$*\\033[m" 108 | } 109 | 110 | function echo.STBoldBlack() { 111 | echo -e "\\033[9;1;30m$*\\033[m" 112 | } 113 | 114 | function echo.STIBlack() { 115 | echo -e "\\033[9;3;30m$*\\033[m" 116 | } 117 | 118 | function echo.STULBlack() { 119 | echo -e "\\033[9;4;30m$*\\033[m" 120 | } 121 | 122 | function echo.STBLBlack() { 123 | echo -e "\\033[9;5;30m$*\\033[m" 124 | } 125 | 126 | function echo.LightBlack() { 127 | echo -e "\\033[90m$*\\033[m" 128 | } 129 | 130 | function echo.LightBoldBlack() { 131 | echo -e "\\033[1;90m$*\\033[m" 132 | } 133 | 134 | function echo.LightIBlack() { 135 | echo -e "\\033[3;90m$*\\033[m" 136 | } 137 | 138 | function echo.LightULBlack() { 139 | echo -e "\\033[4;90m$*\\033[m" 140 | } 141 | 142 | function echo.LightBLBlack() { 143 | echo -e "\\033[5;90m$*\\033[m" 144 | } 145 | 146 | function echo.LightSTBlack() { 147 | echo -e "\\033[9;90m$*\\033[m" 148 | } 149 | 150 | function echo.LightBoldIBlack() { 151 | echo -e "\\033[1;3;90m$*\\033[m" 152 | } 153 | 154 | function echo.LightBoldULBlack() { 155 | echo -e "\\033[1;4;90m$*\\033[m" 156 | } 157 | 158 | function echo.LightBoldBLBlack() { 159 | echo -e "\\033[1;5;90m$*\\033[m" 160 | } 161 | 162 | function echo.LightBoldSTBlack() { 163 | echo -e "\\033[1;9;90m$*\\033[m" 164 | } 165 | 166 | function echo.LightIBoldBlack() { 167 | echo -e "\\033[3;1;90m$*\\033[m" 168 | } 169 | 170 | function echo.LightIULBlack() { 171 | echo -e "\\033[3;4;90m$*\\033[m" 172 | } 173 | 174 | function echo.LightIBLBlack() { 175 | echo -e "\\033[3;5;90m$*\\033[m" 176 | } 177 | 178 | function echo.LightISTBlack() { 179 | echo -e "\\033[3;9;90m$*\\033[m" 180 | } 181 | 182 | function echo.LightULBoldBlack() { 183 | echo -e "\\033[4;1;90m$*\\033[m" 184 | } 185 | 186 | function echo.LightULIBlack() { 187 | echo -e "\\033[4;3;90m$*\\033[m" 188 | } 189 | 190 | function echo.LightULBLBlack() { 191 | echo -e "\\033[4;5;90m$*\\033[m" 192 | } 193 | 194 | function echo.LightULSTBlack() { 195 | echo -e "\\033[4;9;90m$*\\033[m" 196 | } 197 | 198 | function echo.LightBLBoldBlack() { 199 | echo -e "\\033[5;1;90m$*\\033[m" 200 | } 201 | 202 | function echo.LightBLIBlack() { 203 | echo -e "\\033[5;3;90m$*\\033[m" 204 | } 205 | 206 | function echo.LightBLULBlack() { 207 | echo -e "\\033[5;4;90m$*\\033[m" 208 | } 209 | 210 | function echo.LightBLSTBlack() { 211 | echo -e "\\033[5;9;90m$*\\033[m" 212 | } 213 | 214 | function echo.LightSTBoldBlack() { 215 | echo -e "\\033[9;1;90m$*\\033[m" 216 | } 217 | 218 | function echo.LightSTIBlack() { 219 | echo -e "\\033[9;3;90m$*\\033[m" 220 | } 221 | 222 | function echo.LightSTULBlack() { 223 | echo -e "\\033[9;4;90m$*\\033[m" 224 | } 225 | 226 | function echo.LightSTBLBlack() { 227 | echo -e "\\033[9;5;90m$*\\033[m" 228 | } 229 | 230 | function echo.Red() { 231 | echo -e "\\033[31m$*\\033[m" 232 | } 233 | 234 | function echo.BoldRed() { 235 | echo -e "\\033[1;31m$*\\033[m" 236 | } 237 | 238 | function echo.IRed() { 239 | echo -e "\\033[3;31m$*\\033[m" 240 | } 241 | 242 | function echo.ULRed() { 243 | echo -e "\\033[4;31m$*\\033[m" 244 | } 245 | 246 | function echo.BLRed() { 247 | echo -e "\\033[5;31m$*\\033[m" 248 | } 249 | 250 | function echo.STRed() { 251 | echo -e "\\033[9;31m$*\\033[m" 252 | } 253 | 254 | function echo.BoldIRed() { 255 | echo -e "\\033[1;3;31m$*\\033[m" 256 | } 257 | 258 | function echo.BoldULRed() { 259 | echo -e "\\033[1;4;31m$*\\033[m" 260 | } 261 | 262 | function echo.BoldBLRed() { 263 | echo -e "\\033[1;5;31m$*\\033[m" 264 | } 265 | 266 | function echo.BoldSTRed() { 267 | echo -e "\\033[1;9;31m$*\\033[m" 268 | } 269 | 270 | function echo.IBoldRed() { 271 | echo -e "\\033[3;1;31m$*\\033[m" 272 | } 273 | 274 | function echo.IULRed() { 275 | echo -e "\\033[3;4;31m$*\\033[m" 276 | } 277 | 278 | function echo.IBLRed() { 279 | echo -e "\\033[3;5;31m$*\\033[m" 280 | } 281 | 282 | function echo.ISTRed() { 283 | echo -e "\\033[3;9;31m$*\\033[m" 284 | } 285 | 286 | function echo.ULBoldRed() { 287 | echo -e "\\033[4;1;31m$*\\033[m" 288 | } 289 | 290 | function echo.ULIRed() { 291 | echo -e "\\033[4;3;31m$*\\033[m" 292 | } 293 | 294 | function echo.ULBLRed() { 295 | echo -e "\\033[4;5;31m$*\\033[m" 296 | } 297 | 298 | function echo.ULSTRed() { 299 | echo -e "\\033[4;9;31m$*\\033[m" 300 | } 301 | 302 | function echo.BLBoldRed() { 303 | echo -e "\\033[5;1;31m$*\\033[m" 304 | } 305 | 306 | function echo.BLIRed() { 307 | echo -e "\\033[5;3;31m$*\\033[m" 308 | } 309 | 310 | function echo.BLULRed() { 311 | echo -e "\\033[5;4;31m$*\\033[m" 312 | } 313 | 314 | function echo.BLSTRed() { 315 | echo -e "\\033[5;9;31m$*\\033[m" 316 | } 317 | 318 | function echo.STBoldRed() { 319 | echo -e "\\033[9;1;31m$*\\033[m" 320 | } 321 | 322 | function echo.STIRed() { 323 | echo -e "\\033[9;3;31m$*\\033[m" 324 | } 325 | 326 | function echo.STULRed() { 327 | echo -e "\\033[9;4;31m$*\\033[m" 328 | } 329 | 330 | function echo.STBLRed() { 331 | echo -e "\\033[9;5;31m$*\\033[m" 332 | } 333 | 334 | function echo.LightRed() { 335 | echo -e "\\033[91m$*\\033[m" 336 | } 337 | 338 | function echo.LightBoldRed() { 339 | echo -e "\\033[1;91m$*\\033[m" 340 | } 341 | 342 | function echo.LightIRed() { 343 | echo -e "\\033[3;91m$*\\033[m" 344 | } 345 | 346 | function echo.LightULRed() { 347 | echo -e "\\033[4;91m$*\\033[m" 348 | } 349 | 350 | function echo.LightBLRed() { 351 | echo -e "\\033[5;91m$*\\033[m" 352 | } 353 | 354 | function echo.LightSTRed() { 355 | echo -e "\\033[9;91m$*\\033[m" 356 | } 357 | 358 | function echo.LightBoldIRed() { 359 | echo -e "\\033[1;3;91m$*\\033[m" 360 | } 361 | 362 | function echo.LightBoldULRed() { 363 | echo -e "\\033[1;4;91m$*\\033[m" 364 | } 365 | 366 | function echo.LightBoldBLRed() { 367 | echo -e "\\033[1;5;91m$*\\033[m" 368 | } 369 | 370 | function echo.LightBoldSTRed() { 371 | echo -e "\\033[1;9;91m$*\\033[m" 372 | } 373 | 374 | function echo.LightIBoldRed() { 375 | echo -e "\\033[3;1;91m$*\\033[m" 376 | } 377 | 378 | function echo.LightIULRed() { 379 | echo -e "\\033[3;4;91m$*\\033[m" 380 | } 381 | 382 | function echo.LightIBLRed() { 383 | echo -e "\\033[3;5;91m$*\\033[m" 384 | } 385 | 386 | function echo.LightISTRed() { 387 | echo -e "\\033[3;9;91m$*\\033[m" 388 | } 389 | 390 | function echo.LightULBoldRed() { 391 | echo -e "\\033[4;1;91m$*\\033[m" 392 | } 393 | 394 | function echo.LightULIRed() { 395 | echo -e "\\033[4;3;91m$*\\033[m" 396 | } 397 | 398 | function echo.LightULBLRed() { 399 | echo -e "\\033[4;5;91m$*\\033[m" 400 | } 401 | 402 | function echo.LightULSTRed() { 403 | echo -e "\\033[4;9;91m$*\\033[m" 404 | } 405 | 406 | function echo.LightBLBoldRed() { 407 | echo -e "\\033[5;1;91m$*\\033[m" 408 | } 409 | 410 | function echo.LightBLIRed() { 411 | echo -e "\\033[5;3;91m$*\\033[m" 412 | } 413 | 414 | function echo.LightBLULRed() { 415 | echo -e "\\033[5;4;91m$*\\033[m" 416 | } 417 | 418 | function echo.LightBLSTRed() { 419 | echo -e "\\033[5;9;91m$*\\033[m" 420 | } 421 | 422 | function echo.LightSTBoldRed() { 423 | echo -e "\\033[9;1;91m$*\\033[m" 424 | } 425 | 426 | function echo.LightSTIRed() { 427 | echo -e "\\033[9;3;91m$*\\033[m" 428 | } 429 | 430 | function echo.LightSTULRed() { 431 | echo -e "\\033[9;4;91m$*\\033[m" 432 | } 433 | 434 | function echo.LightSTBLRed() { 435 | echo -e "\\033[9;5;91m$*\\033[m" 436 | } 437 | 438 | function echo.Green() { 439 | echo -e "\\033[32m$*\\033[m" 440 | } 441 | 442 | function echo.BoldGreen() { 443 | echo -e "\\033[1;32m$*\\033[m" 444 | } 445 | 446 | function echo.IGreen() { 447 | echo -e "\\033[3;32m$*\\033[m" 448 | } 449 | 450 | function echo.ULGreen() { 451 | echo -e "\\033[4;32m$*\\033[m" 452 | } 453 | 454 | function echo.BLGreen() { 455 | echo -e "\\033[5;32m$*\\033[m" 456 | } 457 | 458 | function echo.STGreen() { 459 | echo -e "\\033[9;32m$*\\033[m" 460 | } 461 | 462 | function echo.BoldIGreen() { 463 | echo -e "\\033[1;3;32m$*\\033[m" 464 | } 465 | 466 | function echo.BoldULGreen() { 467 | echo -e "\\033[1;4;32m$*\\033[m" 468 | } 469 | 470 | function echo.BoldBLGreen() { 471 | echo -e "\\033[1;5;32m$*\\033[m" 472 | } 473 | 474 | function echo.BoldSTGreen() { 475 | echo -e "\\033[1;9;32m$*\\033[m" 476 | } 477 | 478 | function echo.IBoldGreen() { 479 | echo -e "\\033[3;1;32m$*\\033[m" 480 | } 481 | 482 | function echo.IULGreen() { 483 | echo -e "\\033[3;4;32m$*\\033[m" 484 | } 485 | 486 | function echo.IBLGreen() { 487 | echo -e "\\033[3;5;32m$*\\033[m" 488 | } 489 | 490 | function echo.ISTGreen() { 491 | echo -e "\\033[3;9;32m$*\\033[m" 492 | } 493 | 494 | function echo.ULBoldGreen() { 495 | echo -e "\\033[4;1;32m$*\\033[m" 496 | } 497 | 498 | function echo.ULIGreen() { 499 | echo -e "\\033[4;3;32m$*\\033[m" 500 | } 501 | 502 | function echo.ULBLGreen() { 503 | echo -e "\\033[4;5;32m$*\\033[m" 504 | } 505 | 506 | function echo.ULSTGreen() { 507 | echo -e "\\033[4;9;32m$*\\033[m" 508 | } 509 | 510 | function echo.BLBoldGreen() { 511 | echo -e "\\033[5;1;32m$*\\033[m" 512 | } 513 | 514 | function echo.BLIGreen() { 515 | echo -e "\\033[5;3;32m$*\\033[m" 516 | } 517 | 518 | function echo.BLULGreen() { 519 | echo -e "\\033[5;4;32m$*\\033[m" 520 | } 521 | 522 | function echo.BLSTGreen() { 523 | echo -e "\\033[5;9;32m$*\\033[m" 524 | } 525 | 526 | function echo.STBoldGreen() { 527 | echo -e "\\033[9;1;32m$*\\033[m" 528 | } 529 | 530 | function echo.STIGreen() { 531 | echo -e "\\033[9;3;32m$*\\033[m" 532 | } 533 | 534 | function echo.STULGreen() { 535 | echo -e "\\033[9;4;32m$*\\033[m" 536 | } 537 | 538 | function echo.STBLGreen() { 539 | echo -e "\\033[9;5;32m$*\\033[m" 540 | } 541 | 542 | function echo.LightGreen() { 543 | echo -e "\\033[92m$*\\033[m" 544 | } 545 | 546 | function echo.LightBoldGreen() { 547 | echo -e "\\033[1;92m$*\\033[m" 548 | } 549 | 550 | function echo.LightIGreen() { 551 | echo -e "\\033[3;92m$*\\033[m" 552 | } 553 | 554 | function echo.LightULGreen() { 555 | echo -e "\\033[4;92m$*\\033[m" 556 | } 557 | 558 | function echo.LightBLGreen() { 559 | echo -e "\\033[5;92m$*\\033[m" 560 | } 561 | 562 | function echo.LightSTGreen() { 563 | echo -e "\\033[9;92m$*\\033[m" 564 | } 565 | 566 | function echo.LightBoldIGreen() { 567 | echo -e "\\033[1;3;92m$*\\033[m" 568 | } 569 | 570 | function echo.LightBoldULGreen() { 571 | echo -e "\\033[1;4;92m$*\\033[m" 572 | } 573 | 574 | function echo.LightBoldBLGreen() { 575 | echo -e "\\033[1;5;92m$*\\033[m" 576 | } 577 | 578 | function echo.LightBoldSTGreen() { 579 | echo -e "\\033[1;9;92m$*\\033[m" 580 | } 581 | 582 | function echo.LightIBoldGreen() { 583 | echo -e "\\033[3;1;92m$*\\033[m" 584 | } 585 | 586 | function echo.LightIULGreen() { 587 | echo -e "\\033[3;4;92m$*\\033[m" 588 | } 589 | 590 | function echo.LightIBLGreen() { 591 | echo -e "\\033[3;5;92m$*\\033[m" 592 | } 593 | 594 | function echo.LightISTGreen() { 595 | echo -e "\\033[3;9;92m$*\\033[m" 596 | } 597 | 598 | function echo.LightULBoldGreen() { 599 | echo -e "\\033[4;1;92m$*\\033[m" 600 | } 601 | 602 | function echo.LightULIGreen() { 603 | echo -e "\\033[4;3;92m$*\\033[m" 604 | } 605 | 606 | function echo.LightULBLGreen() { 607 | echo -e "\\033[4;5;92m$*\\033[m" 608 | } 609 | 610 | function echo.LightULSTGreen() { 611 | echo -e "\\033[4;9;92m$*\\033[m" 612 | } 613 | 614 | function echo.LightBLBoldGreen() { 615 | echo -e "\\033[5;1;92m$*\\033[m" 616 | } 617 | 618 | function echo.LightBLIGreen() { 619 | echo -e "\\033[5;3;92m$*\\033[m" 620 | } 621 | 622 | function echo.LightBLULGreen() { 623 | echo -e "\\033[5;4;92m$*\\033[m" 624 | } 625 | 626 | function echo.LightBLSTGreen() { 627 | echo -e "\\033[5;9;92m$*\\033[m" 628 | } 629 | 630 | function echo.LightSTBoldGreen() { 631 | echo -e "\\033[9;1;92m$*\\033[m" 632 | } 633 | 634 | function echo.LightSTIGreen() { 635 | echo -e "\\033[9;3;92m$*\\033[m" 636 | } 637 | 638 | function echo.LightSTULGreen() { 639 | echo -e "\\033[9;4;92m$*\\033[m" 640 | } 641 | 642 | function echo.LightSTBLGreen() { 643 | echo -e "\\033[9;5;92m$*\\033[m" 644 | } 645 | 646 | function echo.Yellow() { 647 | echo -e "\\033[33m$*\\033[m" 648 | } 649 | 650 | function echo.BoldYellow() { 651 | echo -e "\\033[1;33m$*\\033[m" 652 | } 653 | 654 | function echo.IYellow() { 655 | echo -e "\\033[3;33m$*\\033[m" 656 | } 657 | 658 | function echo.ULYellow() { 659 | echo -e "\\033[4;33m$*\\033[m" 660 | } 661 | 662 | function echo.BLYellow() { 663 | echo -e "\\033[5;33m$*\\033[m" 664 | } 665 | 666 | function echo.STYellow() { 667 | echo -e "\\033[9;33m$*\\033[m" 668 | } 669 | 670 | function echo.BoldIYellow() { 671 | echo -e "\\033[1;3;33m$*\\033[m" 672 | } 673 | 674 | function echo.BoldULYellow() { 675 | echo -e "\\033[1;4;33m$*\\033[m" 676 | } 677 | 678 | function echo.BoldBLYellow() { 679 | echo -e "\\033[1;5;33m$*\\033[m" 680 | } 681 | 682 | function echo.BoldSTYellow() { 683 | echo -e "\\033[1;9;33m$*\\033[m" 684 | } 685 | 686 | function echo.IBoldYellow() { 687 | echo -e "\\033[3;1;33m$*\\033[m" 688 | } 689 | 690 | function echo.IULYellow() { 691 | echo -e "\\033[3;4;33m$*\\033[m" 692 | } 693 | 694 | function echo.IBLYellow() { 695 | echo -e "\\033[3;5;33m$*\\033[m" 696 | } 697 | 698 | function echo.ISTYellow() { 699 | echo -e "\\033[3;9;33m$*\\033[m" 700 | } 701 | 702 | function echo.ULBoldYellow() { 703 | echo -e "\\033[4;1;33m$*\\033[m" 704 | } 705 | 706 | function echo.ULIYellow() { 707 | echo -e "\\033[4;3;33m$*\\033[m" 708 | } 709 | 710 | function echo.ULBLYellow() { 711 | echo -e "\\033[4;5;33m$*\\033[m" 712 | } 713 | 714 | function echo.ULSTYellow() { 715 | echo -e "\\033[4;9;33m$*\\033[m" 716 | } 717 | 718 | function echo.BLBoldYellow() { 719 | echo -e "\\033[5;1;33m$*\\033[m" 720 | } 721 | 722 | function echo.BLIYellow() { 723 | echo -e "\\033[5;3;33m$*\\033[m" 724 | } 725 | 726 | function echo.BLULYellow() { 727 | echo -e "\\033[5;4;33m$*\\033[m" 728 | } 729 | 730 | function echo.BLSTYellow() { 731 | echo -e "\\033[5;9;33m$*\\033[m" 732 | } 733 | 734 | function echo.STBoldYellow() { 735 | echo -e "\\033[9;1;33m$*\\033[m" 736 | } 737 | 738 | function echo.STIYellow() { 739 | echo -e "\\033[9;3;33m$*\\033[m" 740 | } 741 | 742 | function echo.STULYellow() { 743 | echo -e "\\033[9;4;33m$*\\033[m" 744 | } 745 | 746 | function echo.STBLYellow() { 747 | echo -e "\\033[9;5;33m$*\\033[m" 748 | } 749 | 750 | function echo.LightYellow() { 751 | echo -e "\\033[93m$*\\033[m" 752 | } 753 | 754 | function echo.LightBoldYellow() { 755 | echo -e "\\033[1;93m$*\\033[m" 756 | } 757 | 758 | function echo.LightIYellow() { 759 | echo -e "\\033[3;93m$*\\033[m" 760 | } 761 | 762 | function echo.LightULYellow() { 763 | echo -e "\\033[4;93m$*\\033[m" 764 | } 765 | 766 | function echo.LightBLYellow() { 767 | echo -e "\\033[5;93m$*\\033[m" 768 | } 769 | 770 | function echo.LightSTYellow() { 771 | echo -e "\\033[9;93m$*\\033[m" 772 | } 773 | 774 | function echo.LightBoldIYellow() { 775 | echo -e "\\033[1;3;93m$*\\033[m" 776 | } 777 | 778 | function echo.LightBoldULYellow() { 779 | echo -e "\\033[1;4;93m$*\\033[m" 780 | } 781 | 782 | function echo.LightBoldBLYellow() { 783 | echo -e "\\033[1;5;93m$*\\033[m" 784 | } 785 | 786 | function echo.LightBoldSTYellow() { 787 | echo -e "\\033[1;9;93m$*\\033[m" 788 | } 789 | 790 | function echo.LightIBoldYellow() { 791 | echo -e "\\033[3;1;93m$*\\033[m" 792 | } 793 | 794 | function echo.LightIULYellow() { 795 | echo -e "\\033[3;4;93m$*\\033[m" 796 | } 797 | 798 | function echo.LightIBLYellow() { 799 | echo -e "\\033[3;5;93m$*\\033[m" 800 | } 801 | 802 | function echo.LightISTYellow() { 803 | echo -e "\\033[3;9;93m$*\\033[m" 804 | } 805 | 806 | function echo.LightULBoldYellow() { 807 | echo -e "\\033[4;1;93m$*\\033[m" 808 | } 809 | 810 | function echo.LightULIYellow() { 811 | echo -e "\\033[4;3;93m$*\\033[m" 812 | } 813 | 814 | function echo.LightULBLYellow() { 815 | echo -e "\\033[4;5;93m$*\\033[m" 816 | } 817 | 818 | function echo.LightULSTYellow() { 819 | echo -e "\\033[4;9;93m$*\\033[m" 820 | } 821 | 822 | function echo.LightBLBoldYellow() { 823 | echo -e "\\033[5;1;93m$*\\033[m" 824 | } 825 | 826 | function echo.LightBLIYellow() { 827 | echo -e "\\033[5;3;93m$*\\033[m" 828 | } 829 | 830 | function echo.LightBLULYellow() { 831 | echo -e "\\033[5;4;93m$*\\033[m" 832 | } 833 | 834 | function echo.LightBLSTYellow() { 835 | echo -e "\\033[5;9;93m$*\\033[m" 836 | } 837 | 838 | function echo.LightSTBoldYellow() { 839 | echo -e "\\033[9;1;93m$*\\033[m" 840 | } 841 | 842 | function echo.LightSTIYellow() { 843 | echo -e "\\033[9;3;93m$*\\033[m" 844 | } 845 | 846 | function echo.LightSTULYellow() { 847 | echo -e "\\033[9;4;93m$*\\033[m" 848 | } 849 | 850 | function echo.LightSTBLYellow() { 851 | echo -e "\\033[9;5;93m$*\\033[m" 852 | } 853 | 854 | function echo.Blue() { 855 | echo -e "\\033[34m$*\\033[m" 856 | } 857 | 858 | function echo.BoldBlue() { 859 | echo -e "\\033[1;34m$*\\033[m" 860 | } 861 | 862 | function echo.IBlue() { 863 | echo -e "\\033[3;34m$*\\033[m" 864 | } 865 | 866 | function echo.ULBlue() { 867 | echo -e "\\033[4;34m$*\\033[m" 868 | } 869 | 870 | function echo.BLBlue() { 871 | echo -e "\\033[5;34m$*\\033[m" 872 | } 873 | 874 | function echo.STBlue() { 875 | echo -e "\\033[9;34m$*\\033[m" 876 | } 877 | 878 | function echo.BoldIBlue() { 879 | echo -e "\\033[1;3;34m$*\\033[m" 880 | } 881 | 882 | function echo.BoldULBlue() { 883 | echo -e "\\033[1;4;34m$*\\033[m" 884 | } 885 | 886 | function echo.BoldBLBlue() { 887 | echo -e "\\033[1;5;34m$*\\033[m" 888 | } 889 | 890 | function echo.BoldSTBlue() { 891 | echo -e "\\033[1;9;34m$*\\033[m" 892 | } 893 | 894 | function echo.IBoldBlue() { 895 | echo -e "\\033[3;1;34m$*\\033[m" 896 | } 897 | 898 | function echo.IULBlue() { 899 | echo -e "\\033[3;4;34m$*\\033[m" 900 | } 901 | 902 | function echo.IBLBlue() { 903 | echo -e "\\033[3;5;34m$*\\033[m" 904 | } 905 | 906 | function echo.ISTBlue() { 907 | echo -e "\\033[3;9;34m$*\\033[m" 908 | } 909 | 910 | function echo.ULBoldBlue() { 911 | echo -e "\\033[4;1;34m$*\\033[m" 912 | } 913 | 914 | function echo.ULIBlue() { 915 | echo -e "\\033[4;3;34m$*\\033[m" 916 | } 917 | 918 | function echo.ULBLBlue() { 919 | echo -e "\\033[4;5;34m$*\\033[m" 920 | } 921 | 922 | function echo.ULSTBlue() { 923 | echo -e "\\033[4;9;34m$*\\033[m" 924 | } 925 | 926 | function echo.BLBoldBlue() { 927 | echo -e "\\033[5;1;34m$*\\033[m" 928 | } 929 | 930 | function echo.BLIBlue() { 931 | echo -e "\\033[5;3;34m$*\\033[m" 932 | } 933 | 934 | function echo.BLULBlue() { 935 | echo -e "\\033[5;4;34m$*\\033[m" 936 | } 937 | 938 | function echo.BLSTBlue() { 939 | echo -e "\\033[5;9;34m$*\\033[m" 940 | } 941 | 942 | function echo.STBoldBlue() { 943 | echo -e "\\033[9;1;34m$*\\033[m" 944 | } 945 | 946 | function echo.STIBlue() { 947 | echo -e "\\033[9;3;34m$*\\033[m" 948 | } 949 | 950 | function echo.STULBlue() { 951 | echo -e "\\033[9;4;34m$*\\033[m" 952 | } 953 | 954 | function echo.STBLBlue() { 955 | echo -e "\\033[9;5;34m$*\\033[m" 956 | } 957 | 958 | function echo.LightBlue() { 959 | echo -e "\\033[94m$*\\033[m" 960 | } 961 | 962 | function echo.LightBoldBlue() { 963 | echo -e "\\033[1;94m$*\\033[m" 964 | } 965 | 966 | function echo.LightIBlue() { 967 | echo -e "\\033[3;94m$*\\033[m" 968 | } 969 | 970 | function echo.LightULBlue() { 971 | echo -e "\\033[4;94m$*\\033[m" 972 | } 973 | 974 | function echo.LightBLBlue() { 975 | echo -e "\\033[5;94m$*\\033[m" 976 | } 977 | 978 | function echo.LightSTBlue() { 979 | echo -e "\\033[9;94m$*\\033[m" 980 | } 981 | 982 | function echo.LightBoldIBlue() { 983 | echo -e "\\033[1;3;94m$*\\033[m" 984 | } 985 | 986 | function echo.LightBoldULBlue() { 987 | echo -e "\\033[1;4;94m$*\\033[m" 988 | } 989 | 990 | function echo.LightBoldBLBlue() { 991 | echo -e "\\033[1;5;94m$*\\033[m" 992 | } 993 | 994 | function echo.LightBoldSTBlue() { 995 | echo -e "\\033[1;9;94m$*\\033[m" 996 | } 997 | 998 | function echo.LightIBoldBlue() { 999 | echo -e "\\033[3;1;94m$*\\033[m" 1000 | } 1001 | 1002 | function echo.LightIULBlue() { 1003 | echo -e "\\033[3;4;94m$*\\033[m" 1004 | } 1005 | 1006 | function echo.LightIBLBlue() { 1007 | echo -e "\\033[3;5;94m$*\\033[m" 1008 | } 1009 | 1010 | function echo.LightISTBlue() { 1011 | echo -e "\\033[3;9;94m$*\\033[m" 1012 | } 1013 | 1014 | function echo.LightULBoldBlue() { 1015 | echo -e "\\033[4;1;94m$*\\033[m" 1016 | } 1017 | 1018 | function echo.LightULIBlue() { 1019 | echo -e "\\033[4;3;94m$*\\033[m" 1020 | } 1021 | 1022 | function echo.LightULBLBlue() { 1023 | echo -e "\\033[4;5;94m$*\\033[m" 1024 | } 1025 | 1026 | function echo.LightULSTBlue() { 1027 | echo -e "\\033[4;9;94m$*\\033[m" 1028 | } 1029 | 1030 | function echo.LightBLBoldBlue() { 1031 | echo -e "\\033[5;1;94m$*\\033[m" 1032 | } 1033 | 1034 | function echo.LightBLIBlue() { 1035 | echo -e "\\033[5;3;94m$*\\033[m" 1036 | } 1037 | 1038 | function echo.LightBLULBlue() { 1039 | echo -e "\\033[5;4;94m$*\\033[m" 1040 | } 1041 | 1042 | function echo.LightBLSTBlue() { 1043 | echo -e "\\033[5;9;94m$*\\033[m" 1044 | } 1045 | 1046 | function echo.LightSTBoldBlue() { 1047 | echo -e "\\033[9;1;94m$*\\033[m" 1048 | } 1049 | 1050 | function echo.LightSTIBlue() { 1051 | echo -e "\\033[9;3;94m$*\\033[m" 1052 | } 1053 | 1054 | function echo.LightSTULBlue() { 1055 | echo -e "\\033[9;4;94m$*\\033[m" 1056 | } 1057 | 1058 | function echo.LightSTBLBlue() { 1059 | echo -e "\\033[9;5;94m$*\\033[m" 1060 | } 1061 | 1062 | function echo.Magenta() { 1063 | echo -e "\\033[35m$*\\033[m" 1064 | } 1065 | 1066 | function echo.BoldMagenta() { 1067 | echo -e "\\033[1;35m$*\\033[m" 1068 | } 1069 | 1070 | function echo.IMagenta() { 1071 | echo -e "\\033[3;35m$*\\033[m" 1072 | } 1073 | 1074 | function echo.ULMagenta() { 1075 | echo -e "\\033[4;35m$*\\033[m" 1076 | } 1077 | 1078 | function echo.BLMagenta() { 1079 | echo -e "\\033[5;35m$*\\033[m" 1080 | } 1081 | 1082 | function echo.STMagenta() { 1083 | echo -e "\\033[9;35m$*\\033[m" 1084 | } 1085 | 1086 | function echo.BoldIMagenta() { 1087 | echo -e "\\033[1;3;35m$*\\033[m" 1088 | } 1089 | 1090 | function echo.BoldULMagenta() { 1091 | echo -e "\\033[1;4;35m$*\\033[m" 1092 | } 1093 | 1094 | function echo.BoldBLMagenta() { 1095 | echo -e "\\033[1;5;35m$*\\033[m" 1096 | } 1097 | 1098 | function echo.BoldSTMagenta() { 1099 | echo -e "\\033[1;9;35m$*\\033[m" 1100 | } 1101 | 1102 | function echo.IBoldMagenta() { 1103 | echo -e "\\033[3;1;35m$*\\033[m" 1104 | } 1105 | 1106 | function echo.IULMagenta() { 1107 | echo -e "\\033[3;4;35m$*\\033[m" 1108 | } 1109 | 1110 | function echo.IBLMagenta() { 1111 | echo -e "\\033[3;5;35m$*\\033[m" 1112 | } 1113 | 1114 | function echo.ISTMagenta() { 1115 | echo -e "\\033[3;9;35m$*\\033[m" 1116 | } 1117 | 1118 | function echo.ULBoldMagenta() { 1119 | echo -e "\\033[4;1;35m$*\\033[m" 1120 | } 1121 | 1122 | function echo.ULIMagenta() { 1123 | echo -e "\\033[4;3;35m$*\\033[m" 1124 | } 1125 | 1126 | function echo.ULBLMagenta() { 1127 | echo -e "\\033[4;5;35m$*\\033[m" 1128 | } 1129 | 1130 | function echo.ULSTMagenta() { 1131 | echo -e "\\033[4;9;35m$*\\033[m" 1132 | } 1133 | 1134 | function echo.BLBoldMagenta() { 1135 | echo -e "\\033[5;1;35m$*\\033[m" 1136 | } 1137 | 1138 | function echo.BLIMagenta() { 1139 | echo -e "\\033[5;3;35m$*\\033[m" 1140 | } 1141 | 1142 | function echo.BLULMagenta() { 1143 | echo -e "\\033[5;4;35m$*\\033[m" 1144 | } 1145 | 1146 | function echo.BLSTMagenta() { 1147 | echo -e "\\033[5;9;35m$*\\033[m" 1148 | } 1149 | 1150 | function echo.STBoldMagenta() { 1151 | echo -e "\\033[9;1;35m$*\\033[m" 1152 | } 1153 | 1154 | function echo.STIMagenta() { 1155 | echo -e "\\033[9;3;35m$*\\033[m" 1156 | } 1157 | 1158 | function echo.STULMagenta() { 1159 | echo -e "\\033[9;4;35m$*\\033[m" 1160 | } 1161 | 1162 | function echo.STBLMagenta() { 1163 | echo -e "\\033[9;5;35m$*\\033[m" 1164 | } 1165 | 1166 | function echo.LightMagenta() { 1167 | echo -e "\\033[95m$*\\033[m" 1168 | } 1169 | 1170 | function echo.LightBoldMagenta() { 1171 | echo -e "\\033[1;95m$*\\033[m" 1172 | } 1173 | 1174 | function echo.LightIMagenta() { 1175 | echo -e "\\033[3;95m$*\\033[m" 1176 | } 1177 | 1178 | function echo.LightULMagenta() { 1179 | echo -e "\\033[4;95m$*\\033[m" 1180 | } 1181 | 1182 | function echo.LightBLMagenta() { 1183 | echo -e "\\033[5;95m$*\\033[m" 1184 | } 1185 | 1186 | function echo.LightSTMagenta() { 1187 | echo -e "\\033[9;95m$*\\033[m" 1188 | } 1189 | 1190 | function echo.LightBoldIMagenta() { 1191 | echo -e "\\033[1;3;95m$*\\033[m" 1192 | } 1193 | 1194 | function echo.LightBoldULMagenta() { 1195 | echo -e "\\033[1;4;95m$*\\033[m" 1196 | } 1197 | 1198 | function echo.LightBoldBLMagenta() { 1199 | echo -e "\\033[1;5;95m$*\\033[m" 1200 | } 1201 | 1202 | function echo.LightBoldSTMagenta() { 1203 | echo -e "\\033[1;9;95m$*\\033[m" 1204 | } 1205 | 1206 | function echo.LightIBoldMagenta() { 1207 | echo -e "\\033[3;1;95m$*\\033[m" 1208 | } 1209 | 1210 | function echo.LightIULMagenta() { 1211 | echo -e "\\033[3;4;95m$*\\033[m" 1212 | } 1213 | 1214 | function echo.LightIBLMagenta() { 1215 | echo -e "\\033[3;5;95m$*\\033[m" 1216 | } 1217 | 1218 | function echo.LightISTMagenta() { 1219 | echo -e "\\033[3;9;95m$*\\033[m" 1220 | } 1221 | 1222 | function echo.LightULBoldMagenta() { 1223 | echo -e "\\033[4;1;95m$*\\033[m" 1224 | } 1225 | 1226 | function echo.LightULIMagenta() { 1227 | echo -e "\\033[4;3;95m$*\\033[m" 1228 | } 1229 | 1230 | function echo.LightULBLMagenta() { 1231 | echo -e "\\033[4;5;95m$*\\033[m" 1232 | } 1233 | 1234 | function echo.LightULSTMagenta() { 1235 | echo -e "\\033[4;9;95m$*\\033[m" 1236 | } 1237 | 1238 | function echo.LightBLBoldMagenta() { 1239 | echo -e "\\033[5;1;95m$*\\033[m" 1240 | } 1241 | 1242 | function echo.LightBLIMagenta() { 1243 | echo -e "\\033[5;3;95m$*\\033[m" 1244 | } 1245 | 1246 | function echo.LightBLULMagenta() { 1247 | echo -e "\\033[5;4;95m$*\\033[m" 1248 | } 1249 | 1250 | function echo.LightBLSTMagenta() { 1251 | echo -e "\\033[5;9;95m$*\\033[m" 1252 | } 1253 | 1254 | function echo.LightSTBoldMagenta() { 1255 | echo -e "\\033[9;1;95m$*\\033[m" 1256 | } 1257 | 1258 | function echo.LightSTIMagenta() { 1259 | echo -e "\\033[9;3;95m$*\\033[m" 1260 | } 1261 | 1262 | function echo.LightSTULMagenta() { 1263 | echo -e "\\033[9;4;95m$*\\033[m" 1264 | } 1265 | 1266 | function echo.LightSTBLMagenta() { 1267 | echo -e "\\033[9;5;95m$*\\033[m" 1268 | } 1269 | 1270 | function echo.Cyan() { 1271 | echo -e "\\033[36m$*\\033[m" 1272 | } 1273 | 1274 | function echo.BoldCyan() { 1275 | echo -e "\\033[1;36m$*\\033[m" 1276 | } 1277 | 1278 | function echo.ICyan() { 1279 | echo -e "\\033[3;36m$*\\033[m" 1280 | } 1281 | 1282 | function echo.ULCyan() { 1283 | echo -e "\\033[4;36m$*\\033[m" 1284 | } 1285 | 1286 | function echo.BLCyan() { 1287 | echo -e "\\033[5;36m$*\\033[m" 1288 | } 1289 | 1290 | function echo.STCyan() { 1291 | echo -e "\\033[9;36m$*\\033[m" 1292 | } 1293 | 1294 | function echo.BoldICyan() { 1295 | echo -e "\\033[1;3;36m$*\\033[m" 1296 | } 1297 | 1298 | function echo.BoldULCyan() { 1299 | echo -e "\\033[1;4;36m$*\\033[m" 1300 | } 1301 | 1302 | function echo.BoldBLCyan() { 1303 | echo -e "\\033[1;5;36m$*\\033[m" 1304 | } 1305 | 1306 | function echo.BoldSTCyan() { 1307 | echo -e "\\033[1;9;36m$*\\033[m" 1308 | } 1309 | 1310 | function echo.IBoldCyan() { 1311 | echo -e "\\033[3;1;36m$*\\033[m" 1312 | } 1313 | 1314 | function echo.IULCyan() { 1315 | echo -e "\\033[3;4;36m$*\\033[m" 1316 | } 1317 | 1318 | function echo.IBLCyan() { 1319 | echo -e "\\033[3;5;36m$*\\033[m" 1320 | } 1321 | 1322 | function echo.ISTCyan() { 1323 | echo -e "\\033[3;9;36m$*\\033[m" 1324 | } 1325 | 1326 | function echo.ULBoldCyan() { 1327 | echo -e "\\033[4;1;36m$*\\033[m" 1328 | } 1329 | 1330 | function echo.ULICyan() { 1331 | echo -e "\\033[4;3;36m$*\\033[m" 1332 | } 1333 | 1334 | function echo.ULBLCyan() { 1335 | echo -e "\\033[4;5;36m$*\\033[m" 1336 | } 1337 | 1338 | function echo.ULSTCyan() { 1339 | echo -e "\\033[4;9;36m$*\\033[m" 1340 | } 1341 | 1342 | function echo.BLBoldCyan() { 1343 | echo -e "\\033[5;1;36m$*\\033[m" 1344 | } 1345 | 1346 | function echo.BLICyan() { 1347 | echo -e "\\033[5;3;36m$*\\033[m" 1348 | } 1349 | 1350 | function echo.BLULCyan() { 1351 | echo -e "\\033[5;4;36m$*\\033[m" 1352 | } 1353 | 1354 | function echo.BLSTCyan() { 1355 | echo -e "\\033[5;9;36m$*\\033[m" 1356 | } 1357 | 1358 | function echo.STBoldCyan() { 1359 | echo -e "\\033[9;1;36m$*\\033[m" 1360 | } 1361 | 1362 | function echo.STICyan() { 1363 | echo -e "\\033[9;3;36m$*\\033[m" 1364 | } 1365 | 1366 | function echo.STULCyan() { 1367 | echo -e "\\033[9;4;36m$*\\033[m" 1368 | } 1369 | 1370 | function echo.STBLCyan() { 1371 | echo -e "\\033[9;5;36m$*\\033[m" 1372 | } 1373 | 1374 | function echo.LightCyan() { 1375 | echo -e "\\033[96m$*\\033[m" 1376 | } 1377 | 1378 | function echo.LightBoldCyan() { 1379 | echo -e "\\033[1;96m$*\\033[m" 1380 | } 1381 | 1382 | function echo.LightICyan() { 1383 | echo -e "\\033[3;96m$*\\033[m" 1384 | } 1385 | 1386 | function echo.LightULCyan() { 1387 | echo -e "\\033[4;96m$*\\033[m" 1388 | } 1389 | 1390 | function echo.LightBLCyan() { 1391 | echo -e "\\033[5;96m$*\\033[m" 1392 | } 1393 | 1394 | function echo.LightSTCyan() { 1395 | echo -e "\\033[9;96m$*\\033[m" 1396 | } 1397 | 1398 | function echo.LightBoldICyan() { 1399 | echo -e "\\033[1;3;96m$*\\033[m" 1400 | } 1401 | 1402 | function echo.LightBoldULCyan() { 1403 | echo -e "\\033[1;4;96m$*\\033[m" 1404 | } 1405 | 1406 | function echo.LightBoldBLCyan() { 1407 | echo -e "\\033[1;5;96m$*\\033[m" 1408 | } 1409 | 1410 | function echo.LightBoldSTCyan() { 1411 | echo -e "\\033[1;9;96m$*\\033[m" 1412 | } 1413 | 1414 | function echo.LightIBoldCyan() { 1415 | echo -e "\\033[3;1;96m$*\\033[m" 1416 | } 1417 | 1418 | function echo.LightIULCyan() { 1419 | echo -e "\\033[3;4;96m$*\\033[m" 1420 | } 1421 | 1422 | function echo.LightIBLCyan() { 1423 | echo -e "\\033[3;5;96m$*\\033[m" 1424 | } 1425 | 1426 | function echo.LightISTCyan() { 1427 | echo -e "\\033[3;9;96m$*\\033[m" 1428 | } 1429 | 1430 | function echo.LightULBoldCyan() { 1431 | echo -e "\\033[4;1;96m$*\\033[m" 1432 | } 1433 | 1434 | function echo.LightULICyan() { 1435 | echo -e "\\033[4;3;96m$*\\033[m" 1436 | } 1437 | 1438 | function echo.LightULBLCyan() { 1439 | echo -e "\\033[4;5;96m$*\\033[m" 1440 | } 1441 | 1442 | function echo.LightULSTCyan() { 1443 | echo -e "\\033[4;9;96m$*\\033[m" 1444 | } 1445 | 1446 | function echo.LightBLBoldCyan() { 1447 | echo -e "\\033[5;1;96m$*\\033[m" 1448 | } 1449 | 1450 | function echo.LightBLICyan() { 1451 | echo -e "\\033[5;3;96m$*\\033[m" 1452 | } 1453 | 1454 | function echo.LightBLULCyan() { 1455 | echo -e "\\033[5;4;96m$*\\033[m" 1456 | } 1457 | 1458 | function echo.LightBLSTCyan() { 1459 | echo -e "\\033[5;9;96m$*\\033[m" 1460 | } 1461 | 1462 | function echo.LightSTBoldCyan() { 1463 | echo -e "\\033[9;1;96m$*\\033[m" 1464 | } 1465 | 1466 | function echo.LightSTICyan() { 1467 | echo -e "\\033[9;3;96m$*\\033[m" 1468 | } 1469 | 1470 | function echo.LightSTULCyan() { 1471 | echo -e "\\033[9;4;96m$*\\033[m" 1472 | } 1473 | 1474 | function echo.LightSTBLCyan() { 1475 | echo -e "\\033[9;5;96m$*\\033[m" 1476 | } 1477 | 1478 | function echo.White() { 1479 | echo -e "\\033[37m$*\\033[m" 1480 | } 1481 | 1482 | function echo.BoldWhite() { 1483 | echo -e "\\033[1;37m$*\\033[m" 1484 | } 1485 | 1486 | function echo.IWhite() { 1487 | echo -e "\\033[3;37m$*\\033[m" 1488 | } 1489 | 1490 | function echo.ULWhite() { 1491 | echo -e "\\033[4;37m$*\\033[m" 1492 | } 1493 | 1494 | function echo.BLWhite() { 1495 | echo -e "\\033[5;37m$*\\033[m" 1496 | } 1497 | 1498 | function echo.STWhite() { 1499 | echo -e "\\033[9;37m$*\\033[m" 1500 | } 1501 | 1502 | function echo.BoldIWhite() { 1503 | echo -e "\\033[1;3;37m$*\\033[m" 1504 | } 1505 | 1506 | function echo.BoldULWhite() { 1507 | echo -e "\\033[1;4;37m$*\\033[m" 1508 | } 1509 | 1510 | function echo.BoldBLWhite() { 1511 | echo -e "\\033[1;5;37m$*\\033[m" 1512 | } 1513 | 1514 | function echo.BoldSTWhite() { 1515 | echo -e "\\033[1;9;37m$*\\033[m" 1516 | } 1517 | 1518 | function echo.IBoldWhite() { 1519 | echo -e "\\033[3;1;37m$*\\033[m" 1520 | } 1521 | 1522 | function echo.IULWhite() { 1523 | echo -e "\\033[3;4;37m$*\\033[m" 1524 | } 1525 | 1526 | function echo.IBLWhite() { 1527 | echo -e "\\033[3;5;37m$*\\033[m" 1528 | } 1529 | 1530 | function echo.ISTWhite() { 1531 | echo -e "\\033[3;9;37m$*\\033[m" 1532 | } 1533 | 1534 | function echo.ULBoldWhite() { 1535 | echo -e "\\033[4;1;37m$*\\033[m" 1536 | } 1537 | 1538 | function echo.ULIWhite() { 1539 | echo -e "\\033[4;3;37m$*\\033[m" 1540 | } 1541 | 1542 | function echo.ULBLWhite() { 1543 | echo -e "\\033[4;5;37m$*\\033[m" 1544 | } 1545 | 1546 | function echo.ULSTWhite() { 1547 | echo -e "\\033[4;9;37m$*\\033[m" 1548 | } 1549 | 1550 | function echo.BLBoldWhite() { 1551 | echo -e "\\033[5;1;37m$*\\033[m" 1552 | } 1553 | 1554 | function echo.BLIWhite() { 1555 | echo -e "\\033[5;3;37m$*\\033[m" 1556 | } 1557 | 1558 | function echo.BLULWhite() { 1559 | echo -e "\\033[5;4;37m$*\\033[m" 1560 | } 1561 | 1562 | function echo.BLSTWhite() { 1563 | echo -e "\\033[5;9;37m$*\\033[m" 1564 | } 1565 | 1566 | function echo.STBoldWhite() { 1567 | echo -e "\\033[9;1;37m$*\\033[m" 1568 | } 1569 | 1570 | function echo.STIWhite() { 1571 | echo -e "\\033[9;3;37m$*\\033[m" 1572 | } 1573 | 1574 | function echo.STULWhite() { 1575 | echo -e "\\033[9;4;37m$*\\033[m" 1576 | } 1577 | 1578 | function echo.STBLWhite() { 1579 | echo -e "\\033[9;5;37m$*\\033[m" 1580 | } 1581 | 1582 | function echo.LightWhite() { 1583 | echo -e "\\033[97m$*\\033[m" 1584 | } 1585 | 1586 | function echo.LightBoldWhite() { 1587 | echo -e "\\033[1;97m$*\\033[m" 1588 | } 1589 | 1590 | function echo.LightIWhite() { 1591 | echo -e "\\033[3;97m$*\\033[m" 1592 | } 1593 | 1594 | function echo.LightULWhite() { 1595 | echo -e "\\033[4;97m$*\\033[m" 1596 | } 1597 | 1598 | function echo.LightBLWhite() { 1599 | echo -e "\\033[5;97m$*\\033[m" 1600 | } 1601 | 1602 | function echo.LightSTWhite() { 1603 | echo -e "\\033[9;97m$*\\033[m" 1604 | } 1605 | 1606 | function echo.LightBoldIWhite() { 1607 | echo -e "\\033[1;3;97m$*\\033[m" 1608 | } 1609 | 1610 | function echo.LightBoldULWhite() { 1611 | echo -e "\\033[1;4;97m$*\\033[m" 1612 | } 1613 | 1614 | function echo.LightBoldBLWhite() { 1615 | echo -e "\\033[1;5;97m$*\\033[m" 1616 | } 1617 | 1618 | function echo.LightBoldSTWhite() { 1619 | echo -e "\\033[1;9;97m$*\\033[m" 1620 | } 1621 | 1622 | function echo.LightIBoldWhite() { 1623 | echo -e "\\033[3;1;97m$*\\033[m" 1624 | } 1625 | 1626 | function echo.LightIULWhite() { 1627 | echo -e "\\033[3;4;97m$*\\033[m" 1628 | } 1629 | 1630 | function echo.LightIBLWhite() { 1631 | echo -e "\\033[3;5;97m$*\\033[m" 1632 | } 1633 | 1634 | function echo.LightISTWhite() { 1635 | echo -e "\\033[3;9;97m$*\\033[m" 1636 | } 1637 | 1638 | function echo.LightULBoldWhite() { 1639 | echo -e "\\033[4;1;97m$*\\033[m" 1640 | } 1641 | 1642 | function echo.LightULIWhite() { 1643 | echo -e "\\033[4;3;97m$*\\033[m" 1644 | } 1645 | 1646 | function echo.LightULBLWhite() { 1647 | echo -e "\\033[4;5;97m$*\\033[m" 1648 | } 1649 | 1650 | function echo.LightULSTWhite() { 1651 | echo -e "\\033[4;9;97m$*\\033[m" 1652 | } 1653 | 1654 | function echo.LightBLBoldWhite() { 1655 | echo -e "\\033[5;1;97m$*\\033[m" 1656 | } 1657 | 1658 | function echo.LightBLIWhite() { 1659 | echo -e "\\033[5;3;97m$*\\033[m" 1660 | } 1661 | 1662 | function echo.LightBLULWhite() { 1663 | echo -e "\\033[5;4;97m$*\\033[m" 1664 | } 1665 | 1666 | function echo.LightBLSTWhite() { 1667 | echo -e "\\033[5;9;97m$*\\033[m" 1668 | } 1669 | 1670 | function echo.LightSTBoldWhite() { 1671 | echo -e "\\033[9;1;97m$*\\033[m" 1672 | } 1673 | 1674 | function echo.LightSTIWhite() { 1675 | echo -e "\\033[9;3;97m$*\\033[m" 1676 | } 1677 | 1678 | function echo.LightSTULWhite() { 1679 | echo -e "\\033[9;4;97m$*\\033[m" 1680 | } 1681 | 1682 | function echo.LightSTBLWhite() { 1683 | echo -e "\\033[9;5;97m$*\\033[m" 1684 | } 1685 | 1686 | function echo.Purple() { 1687 | echo -e "\\033[3;38;5;93m$*\\033[m" 1688 | } 1689 | 1690 | function echo.BoldPurple() { 1691 | echo -e "\\033[1;3;38;5;93m$*\\033[m" 1692 | } 1693 | 1694 | function echo.IPurple() { 1695 | echo -e "\\033[3;3;38;5;93m$*\\033[m" 1696 | } 1697 | 1698 | function echo.ULPurple() { 1699 | echo -e "\\033[4;3;38;5;93m$*\\033[m" 1700 | } 1701 | 1702 | function echo.BLPurple() { 1703 | echo -e "\\033[5;3;38;5;93m$*\\033[m" 1704 | } 1705 | 1706 | function echo.STPurple() { 1707 | echo -e "\\033[9;3;38;5;93m$*\\033[m" 1708 | } 1709 | 1710 | function echo.BoldIPurple() { 1711 | echo -e "\\033[1;3;3;38;5;93m$*\\033[m" 1712 | } 1713 | 1714 | function echo.BoldULPurple() { 1715 | echo -e "\\033[1;4;3;38;5;93m$*\\033[m" 1716 | } 1717 | 1718 | function echo.BoldBLPurple() { 1719 | echo -e "\\033[1;5;3;38;5;93m$*\\033[m" 1720 | } 1721 | 1722 | function echo.BoldSTPurple() { 1723 | echo -e "\\033[1;9;3;38;5;93m$*\\033[m" 1724 | } 1725 | 1726 | function echo.IBoldPurple() { 1727 | echo -e "\\033[3;1;3;38;5;93m$*\\033[m" 1728 | } 1729 | 1730 | function echo.IULPurple() { 1731 | echo -e "\\033[3;4;3;38;5;93m$*\\033[m" 1732 | } 1733 | 1734 | function echo.IBLPurple() { 1735 | echo -e "\\033[3;5;3;38;5;93m$*\\033[m" 1736 | } 1737 | 1738 | function echo.ISTPurple() { 1739 | echo -e "\\033[3;9;3;38;5;93m$*\\033[m" 1740 | } 1741 | 1742 | function echo.ULBoldPurple() { 1743 | echo -e "\\033[4;1;3;38;5;93m$*\\033[m" 1744 | } 1745 | 1746 | function echo.ULIPurple() { 1747 | echo -e "\\033[4;3;3;38;5;93m$*\\033[m" 1748 | } 1749 | 1750 | function echo.ULBLPurple() { 1751 | echo -e "\\033[4;5;3;38;5;93m$*\\033[m" 1752 | } 1753 | 1754 | function echo.ULSTPurple() { 1755 | echo -e "\\033[4;9;3;38;5;93m$*\\033[m" 1756 | } 1757 | 1758 | function echo.BLBoldPurple() { 1759 | echo -e "\\033[5;1;3;38;5;93m$*\\033[m" 1760 | } 1761 | 1762 | function echo.BLIPurple() { 1763 | echo -e "\\033[5;3;3;38;5;93m$*\\033[m" 1764 | } 1765 | 1766 | function echo.BLULPurple() { 1767 | echo -e "\\033[5;4;3;38;5;93m$*\\033[m" 1768 | } 1769 | 1770 | function echo.BLSTPurple() { 1771 | echo -e "\\033[5;9;3;38;5;93m$*\\033[m" 1772 | } 1773 | 1774 | function echo.STBoldPurple() { 1775 | echo -e "\\033[9;1;3;38;5;93m$*\\033[m" 1776 | } 1777 | 1778 | function echo.STIPurple() { 1779 | echo -e "\\033[9;3;3;38;5;93m$*\\033[m" 1780 | } 1781 | 1782 | function echo.STULPurple() { 1783 | echo -e "\\033[9;4;3;38;5;93m$*\\033[m" 1784 | } 1785 | 1786 | function echo.STBLPurple() { 1787 | echo -e "\\033[9;5;3;38;5;93m$*\\033[m" 1788 | } 1789 | 1790 | function echo.LightPurple() { 1791 | echo -e "\\033[9;38;5;93m$*\\033[m" 1792 | } 1793 | 1794 | function echo.LightBoldPurple() { 1795 | echo -e "\\033[1;9;38;5;93m$*\\033[m" 1796 | } 1797 | 1798 | function echo.LightIPurple() { 1799 | echo -e "\\033[3;9;38;5;93m$*\\033[m" 1800 | } 1801 | 1802 | function echo.LightULPurple() { 1803 | echo -e "\\033[4;9;38;5;93m$*\\033[m" 1804 | } 1805 | 1806 | function echo.LightBLPurple() { 1807 | echo -e "\\033[5;9;38;5;93m$*\\033[m" 1808 | } 1809 | 1810 | function echo.LightSTPurple() { 1811 | echo -e "\\033[9;9;38;5;93m$*\\033[m" 1812 | } 1813 | 1814 | function echo.LightBoldIPurple() { 1815 | echo -e "\\033[1;3;9;38;5;93m$*\\033[m" 1816 | } 1817 | 1818 | function echo.LightBoldULPurple() { 1819 | echo -e "\\033[1;4;9;38;5;93m$*\\033[m" 1820 | } 1821 | 1822 | function echo.LightBoldBLPurple() { 1823 | echo -e "\\033[1;5;9;38;5;93m$*\\033[m" 1824 | } 1825 | 1826 | function echo.LightBoldSTPurple() { 1827 | echo -e "\\033[1;9;9;38;5;93m$*\\033[m" 1828 | } 1829 | 1830 | function echo.LightIBoldPurple() { 1831 | echo -e "\\033[3;1;9;38;5;93m$*\\033[m" 1832 | } 1833 | 1834 | function echo.LightIULPurple() { 1835 | echo -e "\\033[3;4;9;38;5;93m$*\\033[m" 1836 | } 1837 | 1838 | function echo.LightIBLPurple() { 1839 | echo -e "\\033[3;5;9;38;5;93m$*\\033[m" 1840 | } 1841 | 1842 | function echo.LightISTPurple() { 1843 | echo -e "\\033[3;9;9;38;5;93m$*\\033[m" 1844 | } 1845 | 1846 | function echo.LightULBoldPurple() { 1847 | echo -e "\\033[4;1;9;38;5;93m$*\\033[m" 1848 | } 1849 | 1850 | function echo.LightULIPurple() { 1851 | echo -e "\\033[4;3;9;38;5;93m$*\\033[m" 1852 | } 1853 | 1854 | function echo.LightULBLPurple() { 1855 | echo -e "\\033[4;5;9;38;5;93m$*\\033[m" 1856 | } 1857 | 1858 | function echo.LightULSTPurple() { 1859 | echo -e "\\033[4;9;9;38;5;93m$*\\033[m" 1860 | } 1861 | 1862 | function echo.LightBLBoldPurple() { 1863 | echo -e "\\033[5;1;9;38;5;93m$*\\033[m" 1864 | } 1865 | 1866 | function echo.LightBLIPurple() { 1867 | echo -e "\\033[5;3;9;38;5;93m$*\\033[m" 1868 | } 1869 | 1870 | function echo.LightBLULPurple() { 1871 | echo -e "\\033[5;4;9;38;5;93m$*\\033[m" 1872 | } 1873 | 1874 | function echo.LightBLSTPurple() { 1875 | echo -e "\\033[5;9;9;38;5;93m$*\\033[m" 1876 | } 1877 | 1878 | function echo.LightSTBoldPurple() { 1879 | echo -e "\\033[9;1;9;38;5;93m$*\\033[m" 1880 | } 1881 | 1882 | function echo.LightSTIPurple() { 1883 | echo -e "\\033[9;3;9;38;5;93m$*\\033[m" 1884 | } 1885 | 1886 | function echo.LightSTULPurple() { 1887 | echo -e "\\033[9;4;9;38;5;93m$*\\033[m" 1888 | } 1889 | 1890 | function echo.LightSTBLPurple() { 1891 | echo -e "\\033[9;5;9;38;5;93m$*\\033[m" 1892 | } 1893 | 1894 | function echo.Orange() { 1895 | echo -e "\\033[3;38;5;202m$*\\033[m" 1896 | } 1897 | 1898 | function echo.BoldOrange() { 1899 | echo -e "\\033[1;3;38;5;202m$*\\033[m" 1900 | } 1901 | 1902 | function echo.IOrange() { 1903 | echo -e "\\033[3;3;38;5;202m$*\\033[m" 1904 | } 1905 | 1906 | function echo.ULOrange() { 1907 | echo -e "\\033[4;3;38;5;202m$*\\033[m" 1908 | } 1909 | 1910 | function echo.BLOrange() { 1911 | echo -e "\\033[5;3;38;5;202m$*\\033[m" 1912 | } 1913 | 1914 | function echo.STOrange() { 1915 | echo -e "\\033[9;3;38;5;202m$*\\033[m" 1916 | } 1917 | 1918 | function echo.BoldIOrange() { 1919 | echo -e "\\033[1;3;3;38;5;202m$*\\033[m" 1920 | } 1921 | 1922 | function echo.BoldULOrange() { 1923 | echo -e "\\033[1;4;3;38;5;202m$*\\033[m" 1924 | } 1925 | 1926 | function echo.BoldBLOrange() { 1927 | echo -e "\\033[1;5;3;38;5;202m$*\\033[m" 1928 | } 1929 | 1930 | function echo.BoldSTOrange() { 1931 | echo -e "\\033[1;9;3;38;5;202m$*\\033[m" 1932 | } 1933 | 1934 | function echo.IBoldOrange() { 1935 | echo -e "\\033[3;1;3;38;5;202m$*\\033[m" 1936 | } 1937 | 1938 | function echo.IULOrange() { 1939 | echo -e "\\033[3;4;3;38;5;202m$*\\033[m" 1940 | } 1941 | 1942 | function echo.IBLOrange() { 1943 | echo -e "\\033[3;5;3;38;5;202m$*\\033[m" 1944 | } 1945 | 1946 | function echo.ISTOrange() { 1947 | echo -e "\\033[3;9;3;38;5;202m$*\\033[m" 1948 | } 1949 | 1950 | function echo.ULBoldOrange() { 1951 | echo -e "\\033[4;1;3;38;5;202m$*\\033[m" 1952 | } 1953 | 1954 | function echo.ULIOrange() { 1955 | echo -e "\\033[4;3;3;38;5;202m$*\\033[m" 1956 | } 1957 | 1958 | function echo.ULBLOrange() { 1959 | echo -e "\\033[4;5;3;38;5;202m$*\\033[m" 1960 | } 1961 | 1962 | function echo.ULSTOrange() { 1963 | echo -e "\\033[4;9;3;38;5;202m$*\\033[m" 1964 | } 1965 | 1966 | function echo.BLBoldOrange() { 1967 | echo -e "\\033[5;1;3;38;5;202m$*\\033[m" 1968 | } 1969 | 1970 | function echo.BLIOrange() { 1971 | echo -e "\\033[5;3;3;38;5;202m$*\\033[m" 1972 | } 1973 | 1974 | function echo.BLULOrange() { 1975 | echo -e "\\033[5;4;3;38;5;202m$*\\033[m" 1976 | } 1977 | 1978 | function echo.BLSTOrange() { 1979 | echo -e "\\033[5;9;3;38;5;202m$*\\033[m" 1980 | } 1981 | 1982 | function echo.STBoldOrange() { 1983 | echo -e "\\033[9;1;3;38;5;202m$*\\033[m" 1984 | } 1985 | 1986 | function echo.STIOrange() { 1987 | echo -e "\\033[9;3;3;38;5;202m$*\\033[m" 1988 | } 1989 | 1990 | function echo.STULOrange() { 1991 | echo -e "\\033[9;4;3;38;5;202m$*\\033[m" 1992 | } 1993 | 1994 | function echo.STBLOrange() { 1995 | echo -e "\\033[9;5;3;38;5;202m$*\\033[m" 1996 | } 1997 | 1998 | function echo.LightOrange() { 1999 | echo -e "\\033[9;38;5;202m$*\\033[m" 2000 | } 2001 | 2002 | function echo.LightBoldOrange() { 2003 | echo -e "\\033[1;9;38;5;202m$*\\033[m" 2004 | } 2005 | 2006 | function echo.LightIOrange() { 2007 | echo -e "\\033[3;9;38;5;202m$*\\033[m" 2008 | } 2009 | 2010 | function echo.LightULOrange() { 2011 | echo -e "\\033[4;9;38;5;202m$*\\033[m" 2012 | } 2013 | 2014 | function echo.LightBLOrange() { 2015 | echo -e "\\033[5;9;38;5;202m$*\\033[m" 2016 | } 2017 | 2018 | function echo.LightSTOrange() { 2019 | echo -e "\\033[9;9;38;5;202m$*\\033[m" 2020 | } 2021 | 2022 | function echo.LightBoldIOrange() { 2023 | echo -e "\\033[1;3;9;38;5;202m$*\\033[m" 2024 | } 2025 | 2026 | function echo.LightBoldULOrange() { 2027 | echo -e "\\033[1;4;9;38;5;202m$*\\033[m" 2028 | } 2029 | 2030 | function echo.LightBoldBLOrange() { 2031 | echo -e "\\033[1;5;9;38;5;202m$*\\033[m" 2032 | } 2033 | 2034 | function echo.LightBoldSTOrange() { 2035 | echo -e "\\033[1;9;9;38;5;202m$*\\033[m" 2036 | } 2037 | 2038 | function echo.LightIBoldOrange() { 2039 | echo -e "\\033[3;1;9;38;5;202m$*\\033[m" 2040 | } 2041 | 2042 | function echo.LightIULOrange() { 2043 | echo -e "\\033[3;4;9;38;5;202m$*\\033[m" 2044 | } 2045 | 2046 | function echo.LightIBLOrange() { 2047 | echo -e "\\033[3;5;9;38;5;202m$*\\033[m" 2048 | } 2049 | 2050 | function echo.LightISTOrange() { 2051 | echo -e "\\033[3;9;9;38;5;202m$*\\033[m" 2052 | } 2053 | 2054 | function echo.LightULBoldOrange() { 2055 | echo -e "\\033[4;1;9;38;5;202m$*\\033[m" 2056 | } 2057 | 2058 | function echo.LightULIOrange() { 2059 | echo -e "\\033[4;3;9;38;5;202m$*\\033[m" 2060 | } 2061 | 2062 | function echo.LightULBLOrange() { 2063 | echo -e "\\033[4;5;9;38;5;202m$*\\033[m" 2064 | } 2065 | 2066 | function echo.LightULSTOrange() { 2067 | echo -e "\\033[4;9;9;38;5;202m$*\\033[m" 2068 | } 2069 | 2070 | function echo.LightBLBoldOrange() { 2071 | echo -e "\\033[5;1;9;38;5;202m$*\\033[m" 2072 | } 2073 | 2074 | function echo.LightBLIOrange() { 2075 | echo -e "\\033[5;3;9;38;5;202m$*\\033[m" 2076 | } 2077 | 2078 | function echo.LightBLULOrange() { 2079 | echo -e "\\033[5;4;9;38;5;202m$*\\033[m" 2080 | } 2081 | 2082 | function echo.LightBLSTOrange() { 2083 | echo -e "\\033[5;9;9;38;5;202m$*\\033[m" 2084 | } 2085 | 2086 | function echo.LightSTBoldOrange() { 2087 | echo -e "\\033[9;1;9;38;5;202m$*\\033[m" 2088 | } 2089 | 2090 | function echo.LightSTIOrange() { 2091 | echo -e "\\033[9;3;9;38;5;202m$*\\033[m" 2092 | } 2093 | 2094 | function echo.LightSTULOrange() { 2095 | echo -e "\\033[9;4;9;38;5;202m$*\\033[m" 2096 | } 2097 | 2098 | function echo.LightSTBLOrange() { 2099 | echo -e "\\033[9;5;9;38;5;202m$*\\033[m" 2100 | } 2101 | 2102 | function echo.Pink() { 2103 | echo -e "\\033[3;38;5;206m$*\\033[m" 2104 | } 2105 | 2106 | function echo.BoldPink() { 2107 | echo -e "\\033[1;3;38;5;206m$*\\033[m" 2108 | } 2109 | 2110 | function echo.IPink() { 2111 | echo -e "\\033[3;3;38;5;206m$*\\033[m" 2112 | } 2113 | 2114 | function echo.ULPink() { 2115 | echo -e "\\033[4;3;38;5;206m$*\\033[m" 2116 | } 2117 | 2118 | function echo.BLPink() { 2119 | echo -e "\\033[5;3;38;5;206m$*\\033[m" 2120 | } 2121 | 2122 | function echo.STPink() { 2123 | echo -e "\\033[9;3;38;5;206m$*\\033[m" 2124 | } 2125 | 2126 | function echo.BoldIPink() { 2127 | echo -e "\\033[1;3;3;38;5;206m$*\\033[m" 2128 | } 2129 | 2130 | function echo.BoldULPink() { 2131 | echo -e "\\033[1;4;3;38;5;206m$*\\033[m" 2132 | } 2133 | 2134 | function echo.BoldBLPink() { 2135 | echo -e "\\033[1;5;3;38;5;206m$*\\033[m" 2136 | } 2137 | 2138 | function echo.BoldSTPink() { 2139 | echo -e "\\033[1;9;3;38;5;206m$*\\033[m" 2140 | } 2141 | 2142 | function echo.IBoldPink() { 2143 | echo -e "\\033[3;1;3;38;5;206m$*\\033[m" 2144 | } 2145 | 2146 | function echo.IULPink() { 2147 | echo -e "\\033[3;4;3;38;5;206m$*\\033[m" 2148 | } 2149 | 2150 | function echo.IBLPink() { 2151 | echo -e "\\033[3;5;3;38;5;206m$*\\033[m" 2152 | } 2153 | 2154 | function echo.ISTPink() { 2155 | echo -e "\\033[3;9;3;38;5;206m$*\\033[m" 2156 | } 2157 | 2158 | function echo.ULBoldPink() { 2159 | echo -e "\\033[4;1;3;38;5;206m$*\\033[m" 2160 | } 2161 | 2162 | function echo.ULIPink() { 2163 | echo -e "\\033[4;3;3;38;5;206m$*\\033[m" 2164 | } 2165 | 2166 | function echo.ULBLPink() { 2167 | echo -e "\\033[4;5;3;38;5;206m$*\\033[m" 2168 | } 2169 | 2170 | function echo.ULSTPink() { 2171 | echo -e "\\033[4;9;3;38;5;206m$*\\033[m" 2172 | } 2173 | 2174 | function echo.BLBoldPink() { 2175 | echo -e "\\033[5;1;3;38;5;206m$*\\033[m" 2176 | } 2177 | 2178 | function echo.BLIPink() { 2179 | echo -e "\\033[5;3;3;38;5;206m$*\\033[m" 2180 | } 2181 | 2182 | function echo.BLULPink() { 2183 | echo -e "\\033[5;4;3;38;5;206m$*\\033[m" 2184 | } 2185 | 2186 | function echo.BLSTPink() { 2187 | echo -e "\\033[5;9;3;38;5;206m$*\\033[m" 2188 | } 2189 | 2190 | function echo.STBoldPink() { 2191 | echo -e "\\033[9;1;3;38;5;206m$*\\033[m" 2192 | } 2193 | 2194 | function echo.STIPink() { 2195 | echo -e "\\033[9;3;3;38;5;206m$*\\033[m" 2196 | } 2197 | 2198 | function echo.STULPink() { 2199 | echo -e "\\033[9;4;3;38;5;206m$*\\033[m" 2200 | } 2201 | 2202 | function echo.STBLPink() { 2203 | echo -e "\\033[9;5;3;38;5;206m$*\\033[m" 2204 | } 2205 | 2206 | function echo.LightPink() { 2207 | echo -e "\\033[9;38;5;206m$*\\033[m" 2208 | } 2209 | 2210 | function echo.LightBoldPink() { 2211 | echo -e "\\033[1;9;38;5;206m$*\\033[m" 2212 | } 2213 | 2214 | function echo.LightIPink() { 2215 | echo -e "\\033[3;9;38;5;206m$*\\033[m" 2216 | } 2217 | 2218 | function echo.LightULPink() { 2219 | echo -e "\\033[4;9;38;5;206m$*\\033[m" 2220 | } 2221 | 2222 | function echo.LightBLPink() { 2223 | echo -e "\\033[5;9;38;5;206m$*\\033[m" 2224 | } 2225 | 2226 | function echo.LightSTPink() { 2227 | echo -e "\\033[9;9;38;5;206m$*\\033[m" 2228 | } 2229 | 2230 | function echo.LightBoldIPink() { 2231 | echo -e "\\033[1;3;9;38;5;206m$*\\033[m" 2232 | } 2233 | 2234 | function echo.LightBoldULPink() { 2235 | echo -e "\\033[1;4;9;38;5;206m$*\\033[m" 2236 | } 2237 | 2238 | function echo.LightBoldBLPink() { 2239 | echo -e "\\033[1;5;9;38;5;206m$*\\033[m" 2240 | } 2241 | 2242 | function echo.LightBoldSTPink() { 2243 | echo -e "\\033[1;9;9;38;5;206m$*\\033[m" 2244 | } 2245 | 2246 | function echo.LightIBoldPink() { 2247 | echo -e "\\033[3;1;9;38;5;206m$*\\033[m" 2248 | } 2249 | 2250 | function echo.LightIULPink() { 2251 | echo -e "\\033[3;4;9;38;5;206m$*\\033[m" 2252 | } 2253 | 2254 | function echo.LightIBLPink() { 2255 | echo -e "\\033[3;5;9;38;5;206m$*\\033[m" 2256 | } 2257 | 2258 | function echo.LightISTPink() { 2259 | echo -e "\\033[3;9;9;38;5;206m$*\\033[m" 2260 | } 2261 | 2262 | function echo.LightULBoldPink() { 2263 | echo -e "\\033[4;1;9;38;5;206m$*\\033[m" 2264 | } 2265 | 2266 | function echo.LightULIPink() { 2267 | echo -e "\\033[4;3;9;38;5;206m$*\\033[m" 2268 | } 2269 | 2270 | function echo.LightULBLPink() { 2271 | echo -e "\\033[4;5;9;38;5;206m$*\\033[m" 2272 | } 2273 | 2274 | function echo.LightULSTPink() { 2275 | echo -e "\\033[4;9;9;38;5;206m$*\\033[m" 2276 | } 2277 | 2278 | function echo.LightBLBoldPink() { 2279 | echo -e "\\033[5;1;9;38;5;206m$*\\033[m" 2280 | } 2281 | 2282 | function echo.LightBLIPink() { 2283 | echo -e "\\033[5;3;9;38;5;206m$*\\033[m" 2284 | } 2285 | 2286 | function echo.LightBLULPink() { 2287 | echo -e "\\033[5;4;9;38;5;206m$*\\033[m" 2288 | } 2289 | 2290 | function echo.LightBLSTPink() { 2291 | echo -e "\\033[5;9;9;38;5;206m$*\\033[m" 2292 | } 2293 | 2294 | function echo.LightSTBoldPink() { 2295 | echo -e "\\033[9;1;9;38;5;206m$*\\033[m" 2296 | } 2297 | 2298 | function echo.LightSTIPink() { 2299 | echo -e "\\033[9;3;9;38;5;206m$*\\033[m" 2300 | } 2301 | 2302 | function echo.LightSTULPink() { 2303 | echo -e "\\033[9;4;9;38;5;206m$*\\033[m" 2304 | } 2305 | 2306 | function echo.LightSTBLPink() { 2307 | echo -e "\\033[9;5;9;38;5;206m$*\\033[m" 2308 | } 2309 | 2310 | function echo.Brown() { 2311 | echo -e "\\033[3;38;5;52m$*\\033[m" 2312 | } 2313 | 2314 | function echo.BoldBrown() { 2315 | echo -e "\\033[1;3;38;5;52m$*\\033[m" 2316 | } 2317 | 2318 | function echo.IBrown() { 2319 | echo -e "\\033[3;3;38;5;52m$*\\033[m" 2320 | } 2321 | 2322 | function echo.ULBrown() { 2323 | echo -e "\\033[4;3;38;5;52m$*\\033[m" 2324 | } 2325 | 2326 | function echo.BLBrown() { 2327 | echo -e "\\033[5;3;38;5;52m$*\\033[m" 2328 | } 2329 | 2330 | function echo.STBrown() { 2331 | echo -e "\\033[9;3;38;5;52m$*\\033[m" 2332 | } 2333 | 2334 | function echo.BoldIBrown() { 2335 | echo -e "\\033[1;3;3;38;5;52m$*\\033[m" 2336 | } 2337 | 2338 | function echo.BoldULBrown() { 2339 | echo -e "\\033[1;4;3;38;5;52m$*\\033[m" 2340 | } 2341 | 2342 | function echo.BoldBLBrown() { 2343 | echo -e "\\033[1;5;3;38;5;52m$*\\033[m" 2344 | } 2345 | 2346 | function echo.BoldSTBrown() { 2347 | echo -e "\\033[1;9;3;38;5;52m$*\\033[m" 2348 | } 2349 | 2350 | function echo.IBoldBrown() { 2351 | echo -e "\\033[3;1;3;38;5;52m$*\\033[m" 2352 | } 2353 | 2354 | function echo.IULBrown() { 2355 | echo -e "\\033[3;4;3;38;5;52m$*\\033[m" 2356 | } 2357 | 2358 | function echo.IBLBrown() { 2359 | echo -e "\\033[3;5;3;38;5;52m$*\\033[m" 2360 | } 2361 | 2362 | function echo.ISTBrown() { 2363 | echo -e "\\033[3;9;3;38;5;52m$*\\033[m" 2364 | } 2365 | 2366 | function echo.ULBoldBrown() { 2367 | echo -e "\\033[4;1;3;38;5;52m$*\\033[m" 2368 | } 2369 | 2370 | function echo.ULIBrown() { 2371 | echo -e "\\033[4;3;3;38;5;52m$*\\033[m" 2372 | } 2373 | 2374 | function echo.ULBLBrown() { 2375 | echo -e "\\033[4;5;3;38;5;52m$*\\033[m" 2376 | } 2377 | 2378 | function echo.ULSTBrown() { 2379 | echo -e "\\033[4;9;3;38;5;52m$*\\033[m" 2380 | } 2381 | 2382 | function echo.BLBoldBrown() { 2383 | echo -e "\\033[5;1;3;38;5;52m$*\\033[m" 2384 | } 2385 | 2386 | function echo.BLIBrown() { 2387 | echo -e "\\033[5;3;3;38;5;52m$*\\033[m" 2388 | } 2389 | 2390 | function echo.BLULBrown() { 2391 | echo -e "\\033[5;4;3;38;5;52m$*\\033[m" 2392 | } 2393 | 2394 | function echo.BLSTBrown() { 2395 | echo -e "\\033[5;9;3;38;5;52m$*\\033[m" 2396 | } 2397 | 2398 | function echo.STBoldBrown() { 2399 | echo -e "\\033[9;1;3;38;5;52m$*\\033[m" 2400 | } 2401 | 2402 | function echo.STIBrown() { 2403 | echo -e "\\033[9;3;3;38;5;52m$*\\033[m" 2404 | } 2405 | 2406 | function echo.STULBrown() { 2407 | echo -e "\\033[9;4;3;38;5;52m$*\\033[m" 2408 | } 2409 | 2410 | function echo.STBLBrown() { 2411 | echo -e "\\033[9;5;3;38;5;52m$*\\033[m" 2412 | } 2413 | 2414 | function echo.LightBrown() { 2415 | echo -e "\\033[9;38;5;52m$*\\033[m" 2416 | } 2417 | 2418 | function echo.LightBoldBrown() { 2419 | echo -e "\\033[1;9;38;5;52m$*\\033[m" 2420 | } 2421 | 2422 | function echo.LightIBrown() { 2423 | echo -e "\\033[3;9;38;5;52m$*\\033[m" 2424 | } 2425 | 2426 | function echo.LightULBrown() { 2427 | echo -e "\\033[4;9;38;5;52m$*\\033[m" 2428 | } 2429 | 2430 | function echo.LightBLBrown() { 2431 | echo -e "\\033[5;9;38;5;52m$*\\033[m" 2432 | } 2433 | 2434 | function echo.LightSTBrown() { 2435 | echo -e "\\033[9;9;38;5;52m$*\\033[m" 2436 | } 2437 | 2438 | function echo.LightBoldIBrown() { 2439 | echo -e "\\033[1;3;9;38;5;52m$*\\033[m" 2440 | } 2441 | 2442 | function echo.LightBoldULBrown() { 2443 | echo -e "\\033[1;4;9;38;5;52m$*\\033[m" 2444 | } 2445 | 2446 | function echo.LightBoldBLBrown() { 2447 | echo -e "\\033[1;5;9;38;5;52m$*\\033[m" 2448 | } 2449 | 2450 | function echo.LightBoldSTBrown() { 2451 | echo -e "\\033[1;9;9;38;5;52m$*\\033[m" 2452 | } 2453 | 2454 | function echo.LightIBoldBrown() { 2455 | echo -e "\\033[3;1;9;38;5;52m$*\\033[m" 2456 | } 2457 | 2458 | function echo.LightIULBrown() { 2459 | echo -e "\\033[3;4;9;38;5;52m$*\\033[m" 2460 | } 2461 | 2462 | function echo.LightIBLBrown() { 2463 | echo -e "\\033[3;5;9;38;5;52m$*\\033[m" 2464 | } 2465 | 2466 | function echo.LightISTBrown() { 2467 | echo -e "\\033[3;9;9;38;5;52m$*\\033[m" 2468 | } 2469 | 2470 | function echo.LightULBoldBrown() { 2471 | echo -e "\\033[4;1;9;38;5;52m$*\\033[m" 2472 | } 2473 | 2474 | function echo.LightULIBrown() { 2475 | echo -e "\\033[4;3;9;38;5;52m$*\\033[m" 2476 | } 2477 | 2478 | function echo.LightULBLBrown() { 2479 | echo -e "\\033[4;5;9;38;5;52m$*\\033[m" 2480 | } 2481 | 2482 | function echo.LightULSTBrown() { 2483 | echo -e "\\033[4;9;9;38;5;52m$*\\033[m" 2484 | } 2485 | 2486 | function echo.LightBLBoldBrown() { 2487 | echo -e "\\033[5;1;9;38;5;52m$*\\033[m" 2488 | } 2489 | 2490 | function echo.LightBLIBrown() { 2491 | echo -e "\\033[5;3;9;38;5;52m$*\\033[m" 2492 | } 2493 | 2494 | function echo.LightBLULBrown() { 2495 | echo -e "\\033[5;4;9;38;5;52m$*\\033[m" 2496 | } 2497 | 2498 | function echo.LightBLSTBrown() { 2499 | echo -e "\\033[5;9;9;38;5;52m$*\\033[m" 2500 | } 2501 | 2502 | function echo.LightSTBoldBrown() { 2503 | echo -e "\\033[9;1;9;38;5;52m$*\\033[m" 2504 | } 2505 | 2506 | function echo.LightSTIBrown() { 2507 | echo -e "\\033[9;3;9;38;5;52m$*\\033[m" 2508 | } 2509 | 2510 | function echo.LightSTULBrown() { 2511 | echo -e "\\033[9;4;9;38;5;52m$*\\033[m" 2512 | } 2513 | 2514 | function echo.LightSTBLBrown() { 2515 | echo -e "\\033[9;5;9;38;5;52m$*\\033[m" 2516 | } 2517 | function echo.Rainbow() { 2518 | if command -v lolcat > /dev/null 2>&1; then 2519 | echo "$*" | lolcat 2520 | else 2521 | echo "$*" 2522 | fi 2523 | } 2524 | function echo.Reset() { 2525 | echo "$*" | tr -d '[:cntrl:]' | sed -E "s/\\[((;)?[0-9]{1,3}){0,3}m//g" | xargs 2526 | } 2527 | -------------------------------------------------------------------------------- /generator.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | shopt -s expand_aliases 5 | 6 | distFolder="dist" 7 | distPrefix="ColorEcho" 8 | table="color table.txt" 9 | 10 | # use ColorEcho 11 | bashDist="${distFolder}/${distPrefix}.bash" 12 | # shellcheck source=dist/ColorEcho.bash 13 | if [ ! -r "$bashDist" ] || [ ! -s "$bashDist" ] || ! . "$bashDist" &> /dev/null; then 14 | echo "${bashDist}" is not usable, fallback to use origin echo 15 | alias echo.BoldRed='echo' 16 | alias echo.BoldGreen='echo' 17 | alias echo.BoldYellow='echo' 18 | else 19 | command -v echo.BoldRed &> /dev/null || alias echo.BoldRed='echo' 20 | command -v echo.BoldGreen &> /dev/null || alias echo.BoldGreen='echo' 21 | command -v echo.BoldYellow &> /dev/null || alias echo.BoldYellow='echo' 22 | fi 23 | 24 | mkdir -p "${distFolder}" 25 | if [ ! -w "${distFolder}" ]; then 26 | echo.BoldRed "Dist folder - \"${distFolder}\" is not writable, exit ..." 27 | exit 1 28 | fi 29 | 30 | echo.BoldGreen "ColorEcho generator start!" 31 | 32 | for shell in sh bash fish ksh zsh; do 33 | { 34 | echo.BoldYellow "Generating ColorEcho for ${shell} shell ..." 35 | # shell specify configs and tricks 36 | case "${shell}" in 37 | "bash" | "zsh") 38 | fn='function ' 39 | dot='.' 40 | echo='echo -e' 41 | startSym=' {' 42 | endSym='}' 43 | endIf='fi' 44 | brackets='()' 45 | para='*' 46 | ;; 47 | "ksh") 48 | fn='function ' 49 | dot= 50 | echo='echo -e' 51 | startSym=' {' 52 | endSym='}' 53 | endIf='fi' 54 | brackets= 55 | para='*' 56 | ;; 57 | "fish") 58 | fn='function ' 59 | dot='.' 60 | echo='echo -e' 61 | startSym= 62 | endSym='end' 63 | endIf='end' 64 | brackets= 65 | para='argv' 66 | ;; 67 | "sh") 68 | fn= 69 | dot= 70 | # shellcheck disable=SC2016 71 | echo='$ECHO' 72 | startSym=' {' 73 | endSym='}' 74 | endIf='fi' 75 | brackets='()' 76 | para='*' 77 | ;; 78 | esac 79 | 80 | newDist="${distFolder}/${distPrefix}.${shell}" 81 | touch "${newDist}" 82 | if [ ! -w "${newDist}" ]; then 83 | echo.BoldRed "dist file - \"${newDist}\" is not writable, exit ..." 84 | exit 1 85 | fi 86 | 87 | tempDist="$(mktemp --suffix=ColorEcho)" 88 | echo "#!/usr/bin/env ${shell}" > "${tempDist}" 89 | 90 | cat << SH_ECHO >> "${tempDist}" 91 | 92 | # ColorEchoForShell 93 | # https://github.com/PeterDaveHello/ColorEchoForShell 94 | # Copyright (C) 2015 ~ Peter Dave Hello 95 | # 96 | # This program is free software; you can redistribute it and/or modify 97 | # it under the terms of the GNU General Public License as published by 98 | # the Free Software Foundation; either version 2 of the License, or (at 99 | # your option) any later version. 100 | # 101 | # This program is distributed in the hope that it will be useful, but 102 | # WITHOUT ANY WARRANTY; without even the implied warranty of 103 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 104 | # General Public License for more details. 105 | # 106 | # You should have received a copy of the GNU General Public License 107 | # along with this program; if not, write to the Free Software 108 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 109 | # USA. 110 | SH_ECHO 111 | 112 | if [ "${shell}" = "sh" ]; then 113 | cat << SH_ECHO >> "${tempDist}" 114 | if [ "\$(uname)" = "FreeBSD" ]; then 115 | ECHO="echo -e" 116 | elif [ "\$(uname)" = "Darwin" ]; then 117 | ECHO="echo" 118 | else 119 | ECHO="/bin/echo -e" 120 | fi 121 | SH_ECHO 122 | fi 123 | awk '{print $1}' "${table}" | while IFS= read -r color; do 124 | # light or not 125 | for light in "" "Light"; do 126 | if [ "${light}" = "" ]; then 127 | code=3 128 | else 129 | code=9 130 | fi 131 | # style like bold, italic, underline, blinking, strikethrough 132 | for style in "" "Bold" "I" "UL" "BL" "ST"; do 133 | case "${style}" in 134 | "Bold") styleCode='1;' ;; 135 | "I") styleCode='3;' ;; 136 | "UL") styleCode='4;' ;; 137 | "BL") styleCode='5;' ;; 138 | "ST") styleCode='9;' ;; 139 | "" | *) styleCode= ;; 140 | esac 141 | for style2 in "" "Bold" "I" "UL" "BL" "ST"; do 142 | if [ "${style}" != "${style2}" ]; then 143 | case "${style2}" in 144 | "Bold") finalStyleCode="${styleCode}1;" ;; 145 | "I") finalStyleCode="${styleCode}3;" ;; 146 | "UL") finalStyleCode="${styleCode}4;" ;; 147 | "BL") finalStyleCode="${styleCode}5;" ;; 148 | "ST") finalStyleCode="${styleCode}9;" ;; 149 | "" | *) finalStyleCode="${styleCode}" ;; 150 | esac 151 | else 152 | style2= 153 | finalStyleCode="${styleCode}" 154 | fi 155 | echoFunction="$(printf "%secho%s%s%s%s%s" "${fn}" "${dot}" "${light}" "${style}" "${style2}" "${color}")" 156 | if ! grep -q "${echoFunction}" "${tempDist}"; then 157 | { 158 | echo "" 159 | printf "%s%s" "${echoFunction}" "${brackets}" 160 | # write the code down 161 | echo "${startSym}" 162 | echo " ${echo}"' "\\033['"${finalStyleCode}${code}""$(grep "${color}" "${table}" | awk '{print $2}')"'m$'"${para}"'\\033[m"' 163 | echo "${endSym}" 164 | } >> "${tempDist}" 165 | fi 166 | done 167 | done 168 | done 169 | done 170 | 171 | # rainbow output relys on lolcat 172 | fnName="${fn}echo${dot}Rainbow${brackets}" 173 | case "${shell}" in 174 | "fish") 175 | ifCond="if command -v lolcat > /dev/null" 176 | ;; 177 | "ksh") 178 | ifCond='if command -v lolcat 2> /dev/null >&2; then' 179 | ;; 180 | *) 181 | ifCond='if command -v lolcat > /dev/null 2>&1; then' 182 | ;; 183 | esac 184 | 185 | cat << LOLCAT >> "${tempDist}" 186 | ${fnName}${startSym} 187 | ${ifCond} 188 | echo "\$${para}" | lolcat 189 | else 190 | echo "\$${para}" 191 | ${endIf} 192 | ${endSym} 193 | LOLCAT 194 | 195 | # echo.Reset to remove color code on output 196 | fnName="${fn}echo${dot}Reset${brackets}" 197 | cat << RESET >> "${tempDist}" 198 | ${fnName}${startSym} 199 | echo "\$${para}" | tr -d '[:cntrl:]' | sed -E "s/\\\\[((;)?[0-9]{1,3}){0,3}m//g" | xargs 200 | ${endSym} 201 | RESET 202 | mv -f "${tempDist}" "${newDist}" 203 | } & 204 | done 205 | 206 | wait 207 | 208 | echo.BoldGreen "ColorEcho generator end!" 209 | -------------------------------------------------------------------------------- /test-scripts/bash: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | dir="$(cd "$(dirname "$0")" && pwd)" 5 | script="${dir}/../dist/ColorEcho.bash" 6 | . "${script}" 7 | 8 | awk '/^function +echo/ {print $2}' "${script}" | sed 's/()//g' | while IFS= read -r x; do 9 | ${x} "${x}" 10 | done 11 | -------------------------------------------------------------------------------- /test-scripts/fish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env fish 2 | 3 | set dir (cd (dirname (status --current-filename)); and pwd) 4 | set script "$dir/../dist/ColorEcho.fish" 5 | . "$script" 6 | 7 | for x in (awk '/^function +echo/ {print $2}' "$script") 8 | eval $x "$x" 9 | end 10 | -------------------------------------------------------------------------------- /test-scripts/ksh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ksh 2 | 3 | set -e 4 | dir="$(cd "$(dirname "${0}")" && pwd)" 5 | script="${dir}/../dist/ColorEcho.ksh" 6 | . "${script}" 7 | 8 | awk '/^function +echo/ {print $2}' "${script}" | while IFS= read -r x 9 | do 10 | ${x} "${x}" 11 | done 12 | -------------------------------------------------------------------------------- /test-scripts/sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -e 4 | dir="$(cd "$(dirname "$_")" && pwd)" 5 | script="${dir}/../dist/ColorEcho.sh" 6 | . "${script}" 7 | 8 | grep -E "echo[a-zA-Z]+()" "${script}" | sed -e 's/()//g' -e 's/ {$//g' | while IFS= read -r x; do 9 | ${x} "${x}" 10 | done 11 | -------------------------------------------------------------------------------- /test-scripts/zsh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | 3 | set -e 4 | dir="$(cd "$(dirname "${(%):-%N}")" && pwd)" 5 | script="${dir}/../dist/ColorEcho.zsh" 6 | . "${script}" 7 | 8 | awk '/^function +echo/ {print $2}' "${script}" | sed 's/()//g' | while IFS= read -r x 9 | do 10 | ${x} "${x}" 11 | done 12 | --------------------------------------------------------------------------------