Created
April 29, 2014 17:04
-
-
Save Alcesmire/11406248 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 100,115c100,115 | |
| < 'black') color_ret='\033[30m';; | |
| < 'red') color_ret='\033[31m';; | |
| < 'green') color_ret='\033[32m';; | |
| < 'brown') color_ret='\033[33m';; | |
| < 'blue') color_ret='\033[34m';; | |
| < 'purple') color_ret='\033[35m';; | |
| < 'cyan') color_ret='\033[36m';; | |
| < 'light grey') color_ret='\033[37m';; | |
| < 'dark grey') color_ret='\033[1;30m';; | |
| < 'light red') color_ret='\033[1;31m';; | |
| < 'light green') color_ret='\033[1;32m';; | |
| < 'yellow') color_ret='\033[1;33m';; | |
| < 'light blue') color_ret='\033[1;34m';; | |
| < 'light purple') color_ret='\033[1;35m';; | |
| < 'light cyan') color_ret='\033[1;36m';; | |
| < 'white') color_ret='\033[1;37m';; | |
| --- | |
| > 'black') color_ret='\033[0m\033[30m';; | |
| > 'red') color_ret='\033[0m\033[31m';; | |
| > 'green') color_ret='\033[0m\033[32m';; | |
| > 'brown') color_ret='\033[0m\033[33m';; | |
| > 'blue') color_ret='\033[0m\033[34m';; | |
| > 'purple') color_ret='\033[0m\033[35m';; | |
| > 'cyan') color_ret='\033[0m\033[36m';; | |
| > 'light grey') color_ret='\033[0m\033[37m';; | |
| > 'dark grey') color_ret='\033[0m\033[1;30m';; | |
| > 'light red') color_ret='\033[0m\033[1;31m';; | |
| > 'light green') color_ret='\033[0m\033[1;32m';; | |
| > 'yellow') color_ret='\033[0m\033[1;33m';; | |
| > 'light blue') color_ret='\033[0m\033[1;34m';; | |
| > 'light purple') color_ret='\033[0m\033[1;35m';; | |
| > 'light cyan') color_ret='\033[0m\033[1;36m';; | |
| > 'white') color_ret='\033[0m\033[1;37m';; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment