@echo off cls echo  STYLES  echo ^[0m Reset echo ^[1m Bold echo ^[4m Underline echo ^[7m Inverse echo. echo  NORMAL FOREGROUND COLORS  echo ^[30m Black (black) echo ^[31m Red echo ^[32m Green echo ^[33m Yellow echo ^[34m Blue echo ^[35m Magenta echo ^[36m Cyan echo ^[37m White echo. echo  NORMAL BACKGROUND COLORS  echo ^[40m Black echo ^[41m Red echo ^[42m Green echo ^[43m Yellow echo ^[44m Blue echo ^[45m Magenta echo ^[46m Cyan echo ^[47m White (white) echo. echo  STRONG FOREGROUND COLORS  echo ^[90m White echo ^[91m Red echo ^[92m Green echo ^[93m Yellow echo ^[94m Blue echo ^[95m Magenta echo ^[96m Cyan echo ^[97m White echo. echo  STRONG BACKGROUND COLORS  echo ^[100m Black echo ^[101m Red echo ^[102m Green echo ^[103m Yellow echo ^[104m Blue echo ^[105m Magenta echo ^[106m Cyan echo ^[107m White echo. echo  COMBINATIONS  echo ^[31m red foreground color echo ^[7m inverse foreground ^<-^> background echo ^[7;31m inverse red foreground color echo ^[7m and nested ^[31m before nested echo ^[31m and nested ^[7m before nested