User Tools

Site Tools


bash:colors

This is an old revision of the document!


BASH - Colors

You can use these ANSI escape codes:

3 and 4-bit Colors

8-bit Colors

8-bit Colors


No Color0
Black0;30Dark Gray1;30
Red0;31Light Red1;31
Green0;32Light Green1;32
Brown/Orange0;33Yellow1;33
Blue0;34Light Blue1;34
Purple0;35Light Purple1;35
Cyan0;36Light Cyan1;36
Light Gray0;37White1;37

Red Example

echo -e "\033[0;31mThis is in RED"

Red Blue

echo -e "\033[0;31mThis is in RED\033[0;34mThis is in Blue"

Colors

ANSI Rainbow

for (( i = 30; i < 38; i++ )); do echo -e "\033[0;"$i"m Normal: (0;$i); \033[1;"$i"m Light: (1;$i)"; done

ANSI Rainbow with more colours

for (( i = 0; i < 16; i++ )); do echo -e "\033[38;5;"$i"mHello"; done

References

bash/colors.1610194956.txt.gz · Last modified: 2021/01/09 12:22 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki