Skip to content

Instantly share code, notes, and snippets.

@stobias123
Created June 28, 2021 16:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stobias123/1cdd1a6bc9b0ec5f81a9220feff46dbc to your computer and use it in GitHub Desktop.
Save stobias123/1cdd1a6bc9b0ec5f81a9220feff46dbc to your computer and use it in GitHub Desktop.
Some bash colors so I don't have to keep writing this.
# ----------------------------------
# Colors
# ----------------------------------
NOCOLOR='\033[0m'
RED='\033[0;31m'
GREEN='\033[0;32m'
ORANGE='\033[0;33m'
BLUE='\033[0;34m'
PURPLE='\033[0;35m'
CYAN='\033[0;36m'
LIGHTGRAY='\033[0;37m'
DARKGRAY='\033[1;30m'
LIGHTRED='\033[1;31m'
LIGHTGREEN='\033[1;32m'
YELLOW='\033[1;33m'
LIGHTBLUE='\033[1;34m'
LIGHTPURPLE='\033[1;35m'
LIGHTCYAN='\033[1;36m'
WHITE='\033[1;37m'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment