Skip to content

Instantly share code, notes, and snippets.

@Vishukani
Last active June 9, 2017 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Vishukani/2bbf063961b018208ae14fa6ecd3347e to your computer and use it in GitHub Desktop.
Save Vishukani/2bbf063961b018208ae14fa6ecd3347e to your computer and use it in GitHub Desktop.
colored windows 10 cmd
@echo offclsecho  STYLES echo ^<ESC^>[0m Resetecho ^<ESC^>[1m Boldecho ^<ESC^>[4m Underlineecho ^<ESC^>[7m Inverseecho.echo  NORMAL FOREGROUND COLORS echo ^<ESC^>[30m Black (black)echo ^<ESC^>[31m Redecho ^<ESC^>[32m Greenecho ^<ESC^>[33m Yellowecho ^<ESC^>[34m Blueecho ^<ESC^>[35m Magentaecho ^<ESC^>[36m Cyanecho ^<ESC^>[37m Whiteecho.echo  NORMAL BACKGROUND COLORS echo ^<ESC^>[40m Blackecho ^<ESC^>[41m Redecho ^<ESC^>[42m Greenecho ^<ESC^>[43m Yellowecho ^<ESC^>[44m Blueecho ^<ESC^>[45m Magentaecho ^<ESC^>[46m Cyanecho ^<ESC^>[47m White (white)echo.echo  STRONG FOREGROUND COLORS echo ^<ESC^>[90m Whiteecho ^<ESC^>[91m Redecho ^<ESC^>[92m Greenecho ^<ESC^>[93m Yellowecho ^<ESC^>[94m Blueecho ^<ESC^>[95m Magentaecho ^<ESC^>[96m Cyanecho ^<ESC^>[97m Whiteecho.echo  STRONG BACKGROUND COLORS echo ^<ESC^>[100m Blackecho ^<ESC^>[101m Redecho ^<ESC^>[102m Greenecho ^<ESC^>[103m Yellowecho ^<ESC^>[104m Blueecho ^<ESC^>[105m Magentaecho ^<ESC^>[106m Cyanecho ^<ESC^>[107m Whiteecho.echo  COMBINATIONS echo ^<ESC^>[31m red foreground colorecho ^<ESC^>[7m inverse foreground ^<-^> backgroundecho ^<ESC^>[7;31m inverse red foreground colorecho ^<ESC^>[7m and nested ^<ESC^>[31m before nestedecho ^<ESC^>[31m and nested ^<ESC^>[7m before nested
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment