最後活躍 1 month ago

mikemorris 已修改 1 month ago. 還原成這個修訂版本

1 file changed, 54 insertions

colors.cmd(檔案已創建)

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