Colorize Output in Terminal
January 18, 2025 ยท View on GitHub
The ANSI escape sequences help adding color to the terminal (Doesn't work on Windows I guess)
Here is the format:
\033[<ForegroundColorCode>;<BackgroundColorCode>;<Style>mYour Text
where
<ForegroundColorCode>, <BackgroundColorCode> & <Style> are integer Color Codes.
See Resources for list of colors.
Example:
echo -e "\033[92;1mHello\033[0m"
Hello will be bold & green in color