Skip to content

Instantly share code, notes, and snippets.

@SamJakob
Forked from JBlond/bash-colors.md
Last active April 2, 2023 00:29
Show Gist options
  • Save SamJakob/a63c06b8dce02d1562c011a3e4d2ead1 to your computer and use it in GitHub Desktop.
Save SamJakob/a63c06b8dce02d1562c011a3e4d2ead1 to your computer and use it in GitHub Desktop.
ANSI color codes, escaped for use in scripts

Regular Colors

Value Color
\033[0;30m Black
\033[0;31m Red
\033[0;32m Green
\033[0;33m Yellow
\033[0;34m Blue
\033[0;35m Purple
\033[0;36m Cyan
\033[0;37m White

Bold

Value Color
\033[1;30m Black
\033[1;31m Red
\033[1;32m Green
\033[1;33m Yellow
\033[1;34m Blue
\033[1;35m Purple
\033[1;36m Cyan
\033[1;37m White

Underline

Value Color
\033[4;30m Black
\033[4;31m Red
\033[4;32m Green
\033[4;33m Yellow
\033[4;34m Blue
\033[4;35m Purple
\033[4;36m Cyan
\033[4;37m White

Background

Value Color
\033[40m Black
\033[41m Red
\033[42m Green
\033[43m Yellow
\033[44m Blue
\033[45m Purple
\033[46m Cyan
\033[47m White

High Intensty

Value Color
\033[0;90m Black
\033[0;91m Red
\033[0;92m Green
\033[0;93m Yellow
\033[0;94m Blue
\033[0;95m Purple
\033[0;96m Cyan
\033[0;97m White

Bold High Intensty

Value Color
\033[1;90m Black
\033[1;91m Red
\033[1;92m Green
\033[1;93m Yellow
\033[1;94m Blue
\033[1;95m Purple
\033[1;96m Cyan
\033[1;97m White

High Intensty backgrounds

Value Color
\033[0;100m Black
\033[0;101m Red
\033[0;102m Green
\033[0;103m Yellow
\033[0;104m Blue
\033[0;105m Purple
\033[0;106m Cyan
\033[0;107m White

Reset

Value Color
\033[0m Reset
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment