Created
December 26, 2019 08:08
-
-
Save MohiuddinAkib/83d0f7389bf10f20dcd3bfecb1285e19 to your computer and use it in GitHub Desktop.
Way of colorizing the console with languages
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
wrap the text with like this "\033[colorcodemTEXT\033[0m" | |
Foreground Colors | |
Color Code | |
Black 0;30 | |
Dark Grey 1;30 | |
Red 0;31 | |
Light Red 1;31 | |
Green 0;32 | |
Light Green 1;32 | |
Brown 0;33 | |
Yellow 1;33 | |
Blue 0;34 | |
Light Blue 1;34 | |
Magenta 0;35 | |
Light Magenta 1;35 | |
Cyan 0;36 | |
Light Cyan 1;36 | |
Light Grey 0;37 | |
White 1;37 | |
Background Colors | |
Color Code | |
Black 40 | |
Red 41 | |
Green 42 | |
Yellow 43 | |
Blue 44 | |
Magenta 45 | |
Cyan 46 | |
Light Grey 47 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment