Created
November 21, 2024 09:22
-
-
Save fbakhda/b853e058edcdbb90b651ec1c57faca1d to your computer and use it in GitHub Desktop.
Sample Windows CMD Colours
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
cls | |
echo [101;93m STYLES [0m | |
echo ^<ESC^>[0m [0mReset[0m | |
echo ^<ESC^>[1m [1mBold[0m | |
echo ^<ESC^>[4m [4mUnderline[0m | |
echo ^<ESC^>[7m [7mInverse[0m | |
echo. | |
echo [101;93m NORMAL FOREGROUND COLORS [0m | |
echo ^<ESC^>[30m [30mBlack[0m (black) | |
echo ^<ESC^>[31m [31mRed[0m | |
echo ^<ESC^>[32m [32mGreen[0m | |
echo ^<ESC^>[33m [33mYellow[0m | |
echo ^<ESC^>[34m [34mBlue[0m | |
echo ^<ESC^>[35m [35mMagenta[0m | |
echo ^<ESC^>[36m [36mCyan[0m | |
echo ^<ESC^>[37m [37mWhite[0m | |
echo. | |
echo [101;93m NORMAL BACKGROUND COLORS [0m | |
echo ^<ESC^>[40m [40mBlack[0m | |
echo ^<ESC^>[41m [41mRed[0m | |
echo ^<ESC^>[42m [42mGreen[0m | |
echo ^<ESC^>[43m [43mYellow[0m | |
echo ^<ESC^>[44m [44mBlue[0m | |
echo ^<ESC^>[45m [45mMagenta[0m | |
echo ^<ESC^>[46m [46mCyan[0m | |
echo ^<ESC^>[47m [47mWhite[0m (white) | |
echo. | |
echo [101;93m STRONG FOREGROUND COLORS [0m | |
echo ^<ESC^>[90m [90mWhite[0m | |
echo ^<ESC^>[91m [91mRed[0m | |
echo ^<ESC^>[92m [92mGreen[0m | |
echo ^<ESC^>[93m [93mYellow[0m | |
echo ^<ESC^>[94m [94mBlue[0m | |
echo ^<ESC^>[95m [95mMagenta[0m | |
echo ^<ESC^>[96m [96mCyan[0m | |
echo ^<ESC^>[97m [97mWhite[0m | |
echo. | |
echo [101;93m STRONG BACKGROUND COLORS [0m | |
echo ^<ESC^>[100m [100mBlack[0m | |
echo ^<ESC^>[101m [101mRed[0m | |
echo ^<ESC^>[102m [102mGreen[0m | |
echo ^<ESC^>[103m [103mYellow[0m | |
echo ^<ESC^>[104m [104mBlue[0m | |
echo ^<ESC^>[105m [105mMagenta[0m | |
echo ^<ESC^>[106m [106mCyan[0m | |
echo ^<ESC^>[107m [107mWhite[0m | |
echo. | |
echo [101;93m COMBINATIONS [0m | |
echo ^<ESC^>[31m [31mred foreground color[0m | |
echo ^<ESC^>[7m [7minverse foreground ^<-^> background[0m | |
echo ^<ESC^>[7;31m [7;31minverse red foreground color[0m | |
echo ^<ESC^>[7m and nested ^<ESC^>[31m [7mbefore [31mnested[0m | |
echo ^<ESC^>[31m and nested ^<ESC^>[7m [31mbefore [7mnested[0m | |
echo \01[41m\01[30mtest\01[0m |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment