Skip to content

Instantly share code, notes, and snippets.

@kimat
Created December 13, 2017 11:23
Show Gist options
  • Save kimat/636819c395079b1b100962b3ff392459 to your computer and use it in GitHub Desktop.
Save kimat/636819c395079b1b100962b3ff392459 to your computer and use it in GitHub Desktop.
# colors
export RESET="\e[0m"
export BOLD="\e[1m"
export BLUE="\e[34m"
export BLACK="\e[30m"
export RED="\e[31m"
export GREEN="\e[32m"
export YELLOW="\e[33m"
export BLUE="\e[34m"
export MAGENTA="\e[35m"
export CYAN="\e[36m"
export LIGHT_GRAY="\e[37m"
export DRAK_GRAY="\e[38m"
export LIGHT_RED="\e[91m"
export LIGHT_GREEN="\e[92m"
export LIGHT_YELLOW="\e[93m"
export LIGHT_BLUE="\e[94m"
export LIGHT_MAGENTA="\e[95m"
export LIGHT_CYAN="\e[96m"
export BG_DEFAULT="\e[49m"
export BG_BLACK="\e[40m"
export BG_RED="\e[41m"
export BG_GREEN="\e[42m"
export BG_YELLOW="\e[43m"
export BG_BLUE="\e[44m"
export BG_MAGENTA="\e[45m"
export BG_CYAN="\e[46m"
export LINE_PREVIOUS="\e[1A"
export LINE_START="\e[0C"
export NEXT_LINE="\e[1D"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment