Created
April 9, 2022 09:39
-
-
Save codedeep79/c8f4d9e0dc5ad2a3a22163db7db0c769 to your computer and use it in GitHub Desktop.
python colors console
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
| print '\033[1;30mGray like Ghost\033[1;m' | |
| print '\033[1;31mRed like Radish\033[1;m' | |
| print '\033[1;32mGreen like Grass\033[1;m' | |
| print '\033[1;33mYellow like Yolk\033[1;m' | |
| print '\033[1;34mBlue like Blood\033[1;m' | |
| print '\033[1;35mMagenta like Mimosa\033[1;m' | |
| print '\033[1;36mCyan like Caribbean\033[1;m' | |
| print '\033[1;37mWhite like Whipped Cream\033[1;m' | |
| print '\033[1;38mCrimson like Chianti\033[1;m' | |
| print '\033[1;41mHighlighted Red like Radish\033[1;m' | |
| print '\033[1;42mHighlighted Green like Grass\033[1;m' | |
| print '\033[1;43mHighlighted Brown like Bear\033[1;m' | |
| print '\033[1;44mHighlighted Blue like Blood\033[1;m' | |
| print '\033[1;45mHighlighted Magenta like Mimosa\033[1;m' | |
| print '\033[1;46mHighlighted Cyan like Caribbean\033[1;m' | |
| print '\033[1;47mHighlighted Gray like Ghost\033[1;m' | |
| print '\033[1;48mHighlighted Crimson like Chianti\033[1;m' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment