Última actividad 1 month ago

colors.cmd Sin formato
1@echo off
2cls
3echo  STYLES 
4echo ^<ESC^>[0m Reset
5echo ^<ESC^>[1m Bold
6echo ^<ESC^>[4m Underline
7echo ^<ESC^>[7m Inverse
8echo.
9echo  NORMAL FOREGROUND COLORS 
10echo ^<ESC^>[30m Black (black)
11echo ^<ESC^>[31m Red
12echo ^<ESC^>[32m Green
13echo ^<ESC^>[33m Yellow
14echo ^<ESC^>[34m Blue
15echo ^<ESC^>[35m Magenta
16echo ^<ESC^>[36m Cyan
17echo ^<ESC^>[37m White
18echo.
19echo  NORMAL BACKGROUND COLORS 
20echo ^<ESC^>[40m Black
21echo ^<ESC^>[41m Red
22echo ^<ESC^>[42m Green
23echo ^<ESC^>[43m Yellow
24echo ^<ESC^>[44m Blue
25echo ^<ESC^>[45m Magenta
26echo ^<ESC^>[46m Cyan
27echo ^<ESC^>[47m White (white)
28echo.
29echo  STRONG FOREGROUND COLORS 
30echo ^<ESC^>[90m White
31echo ^<ESC^>[91m Red
32echo ^<ESC^>[92m Green
33echo ^<ESC^>[93m Yellow
34echo ^<ESC^>[94m Blue
35echo ^<ESC^>[95m Magenta
36echo ^<ESC^>[96m Cyan
37echo ^<ESC^>[97m White
38echo.
39echo  STRONG BACKGROUND COLORS 
40echo ^<ESC^>[100m Black
41echo ^<ESC^>[101m Red
42echo ^<ESC^>[102m Green
43echo ^<ESC^>[103m Yellow
44echo ^<ESC^>[104m Blue
45echo ^<ESC^>[105m Magenta
46echo ^<ESC^>[106m Cyan
47echo ^<ESC^>[107m White
48echo.
49echo  COMBINATIONS 
50echo ^<ESC^>[31m red foreground color
51echo ^<ESC^>[7m inverse foreground ^<-^> background
52echo ^<ESC^>[7;31m inverse red foreground color
53echo ^<ESC^>[7m and nested ^<ESC^>[31m before nested
54echo ^<ESC^>[31m and nested ^<ESC^>[7m before nested