Skip to content

Instantly share code, notes, and snippets.

@jv-k
Created August 16, 2021 11:49
Show Gist options
  • Save jv-k/714f91ffa64a58f66d5f5841198789c7 to your computer and use it in GitHub Desktop.
Save jv-k/714f91ffa64a58f66d5f5841198789c7 to your computer and use it in GitHub Desktop.
# ANSI/VT100 colours
YELLOW='\033[1;33m'
LIGHTYELLOW='\033[0;33m'
RED='\033[0;31m'
LIGHTRED='\033[1;31m'
GREEN='\033[0;32m'
LIGHTGREEN='\033[1;32m'
BLUE='\033[0;34m'
LIGHTBLUE='\033[1;34m'
PURPLE='\033[0;35m'
LIGHTPURPLE='\033[1;35m'
CYAN='\033[0;36m'
LIGHTCYAN='\033[1;36m'
WHITE='\033[1;37m'
LIGHTGRAY='\033[0;37m'
DARKGRAY='\033[1;30m'
BOLD="\033[1m"
INVERT="\033[7m"
RESET='\033[0m'
# Some preset styles
S_NORM="${WHITE}"
S_LIGHT="${LIGHTGRAY}"
S_NOTICE="${GREEN}"
S_QUESTION="${YELLOW}"
S_WARN="${LIGHTRED}"
S_ERROR="${RED}"
# Notification icons
I_OK="✅";
I_TIME="⏳";
I_STOP="🚫";
I_ERROR="❌";
I_END="👋🏻"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment