The Bash Colors Library is a simple and lightweight library designed to add color and style to your Bash scripts. It provides a set of predefined functions and variables that make it easy to apply various colors and text styles to your terminal output.
- Easy to use functions for applying colors and styles
- Supports a wide range of colors
- Includes text styles such as bold, underline, and blink
- Lightweight and fast
To use the Bash Colors Library, simply source the bash_colors_lib
file in your script:
source /path/to/bash_colors_lib.sh
Here are some examples of how to use the library:
# Print text in red
echo -e "${red_bd}This is red text$"
# Print bold text
echo -e "${b_red_bd}This is bold text"
# Print underlined text
echo -e "${u_red_bd}This is underlined text$"
white Google on console
echo -e "${b_blue_bw}G${b_red_bw}o${b_yellow_bw}o${b_blue_bw}g${b_green_bw}l${b_red_bw}e${white_bd}" // : Google
b_ == BOLD
u_ == UNDERLINE
f_ == BLINK
NC or nc
(No Color - resets the text to default)
Number | Styles | prefix |
---|---|---|
00: | Nenhum | none |
01: | Negrito(bold) | b_ |
04: | Sublinhado(Underline) | u_ |
05: | Piscante | f_ |
07: | Reverso(Reverse) | r_ |
08: | Oculto(Hidden) | h_ |
black == BLACK
red == RED
green == GREEN
yellow == YELLOW
blue == BLUE
magenta == MAGENTA
ciano == CYAN
white == WHITE
-- | (Text Colors) | -- |
---|---|---|
30: | Preto | black |
31: | Vermelho | red |
32: | Verde | green |
33: | Amarelo | yellow |
34: | Azul | blue |
35: | Magenta (Rosa) | magenta |
36: | Ciano (Azul Ciano) | ciano |
37: | Branco | white |
-- | Background colors | sufix |
---|---|---|
00: | none | _ (Only underscore ) |
40: | (Black)Preto | _bd (dark) |
41: | (Red)Vermelho | _br |
42: | (Green)Verde | _bg |
43: | (Yellow)Amarelo | _by |
44: | (Blue)Azul | _bb |
45: | (Rosa)Magenta (Rosa) | _bm |
46: | (Ciano)Ciano (Azul Ciano) | _bc |
47: | (white)Branco | _bw |
This project is licensed under the general Public License.
Contributions are welcome! Please feel free to submit a pull request or open an issue if you have any suggestions or improvements.
For any questions or inquiries, please contact [[email protected]].