User Tools

Site Tools


bash:colors:3_and_4-bit_colors

This is an old revision of the document!


BASH - Colors - 3 and 4-bit Colors

ColorFGBG
Black3040
Red3141
Green3242
Yellow3343
Blue3444
Magenta3545
Cyan3646
White3747
Bright Black (Grey)90100
Bright Red91101
Bright Green92102
Bright Yellow93103
Bright Blue941044
Bright Magenta95105
Bright Cyan96106
Bright White97107

No Color00
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"

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

NOTE: This is made up of:

  • \033 - Represents the ESC key.
  • [0; - Normal color.
  • [1; - Bright color.
  • [31m] - Bright Red; from color table.

As seen, Bright colors can be used simply by using a 1 after the ESC instead of a **0*.

However some older systems may not support this, so in this case use the alternative number from the color table such as

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

Red Blue

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

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

bash/colors/3_and_4-bit_colors.1610196350.txt.gz · Last modified: 2021/01/09 12:45 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki