Skip to content

Instantly share code, notes, and snippets.

@Alcesmire
Created April 29, 2014 17:04
Show Gist options
  • Save Alcesmire/11406248 to your computer and use it in GitHub Desktop.
Save Alcesmire/11406248 to your computer and use it in GitHub Desktop.
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