Created
March 25, 2018 21:36
-
-
Save keeganjk/aeaac73ce31583762826449d882851e8 to your computer and use it in GitHub Desktop.
Color codes for UNIX systems
This file contains 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
black = u'\u001b[30m' | |
red = u'\u001b[31m' | |
green = u'\u001b[32m' | |
yellow = u'\u001b[33m' | |
blue = u'\u001b[34m' | |
magenta = u'\u001b[35m' | |
cyan = u'\u001b[36m' | |
white = u'\u001b[37m' | |
normal = u'\u001b[0m' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment