File tree 1 file changed +67
-0
lines changed
1 file changed +67
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ White=' \e[0;37m'
4
+ Black=' \e[0;30m'
5
+ Green=' \e[0;32m'
6
+ Yellow=' \e[0;33m'
7
+ Blue=' \e[0;34m'
8
+ Red=' \e[0;31m'
9
+ Magenta=' \e[0;35m'
10
+ Cyan=' \e[0;36m'
11
+
12
+ # bold text color
13
+ # color de texto en negrita
14
+ BBlack=' \e[1;30m'
15
+ BRed=' \e[1;31m'
16
+ BGreen=' \e[1;32m'
17
+ BYellow=' \e[1;33m'
18
+ BBlue=' \e[1;34m'
19
+ BMagenta=' \e[1;35m'
20
+ BCyan=' \e[1;36m'
21
+ BWhite=' \e[1;37m'
22
+
23
+ # blinking text color codes
24
+ # color de texto parpadeante
25
+ BkBlue=' \e[5;34m'
26
+ BkRed=' \e[5;31m'
27
+ BkGreen=' \e[5;32m'
28
+ BkYellow=' \e[5;33m'
29
+ BkMagenta=' \e[5;35m'
30
+ BkCyan=' \e[5;36m'
31
+
32
+ # underline text color codes
33
+ # códigos de color de texto subrayado
34
+ UlBlack=' \e[4;30m'
35
+ UlRed=' \e[4;31m'
36
+ UlGreen=' \e[4;32m'
37
+ UlYellow=' \e[4;33m'
38
+ UlBlue=' \e[4;34m'
39
+ UlMagenta=' \e[4;35m'
40
+ UlCyan=' \e[4;36m'
41
+ UlWhite=' \e[4;37m'
42
+
43
+ # background color codes
44
+ # Definir códigos de color de fondo
45
+ BgBlack=' \033[40m'
46
+ BgRed=' \033[41m'
47
+ BgGreen=' \033[42m'
48
+ BgYellow=' \033[43m'
49
+ BgBlue=' \033[44m'
50
+ BgMagenta=' \033[45m'
51
+ BgCyan=' \033[46m'
52
+ BgWhite=' \033[47m'
53
+
54
+ # Define bright background color codes
55
+ # Definir códigos de color de fondo brillante
56
+ BkgBrightBlack=' \033[40;1m'
57
+ BkgBrightRed=' \033[41;1m'
58
+ BkgBrightGreen=' \033[42;1m'
59
+ BkgBrightYellow=' \033[43;1m'
60
+ BkgBrightBlue=' \033[44;1m'
61
+ BkgBrightMagenta=' \033[45;1m'
62
+ BkgBrightCyan=' \033[46;1m'
63
+ BkgBrightWhite=' \033[47;1m'
64
+
65
+ # Reset color
66
+ # Restablecer color
67
+ Reset=' \033[0m'
You can’t perform that action at this time.
0 commit comments