Skip to content

Instantly share code, notes, and snippets.

@daniellockard
Created February 22, 2013 06:43
Show Gist options
  • Save daniellockard/5011280 to your computer and use it in GitHub Desktop.
Save daniellockard/5011280 to your computer and use it in GitHub Desktop.
module Color
NC = "\e[0m"
WHITE = "\e[1;37m"
BLACK = "\e[0;30m"
BLUE = "\e[0;34m"
LIGHT_BLUE = "\e[1;34m"
GREEN = "\e[0;32m"
LIGHT_GREEN = "\e[1;32m"
CYAN = "\e[0;36m"
LIGHT_CYAN = "\e[1;36m"
RED = "\e[0;31m"
LIGHT_RED = "\e[1;31m"
PURPLE = "\e[0;35m"
LIGHT_PURPLE = "\e[1;35m"
BROWN = "\e[0;33m"
YELLOW = "\e[1;33m"
GRAY = "\e[0;30m"
LIGHT_GRAY = "\e[0;37m"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment