Created
December 9, 2008 09:31
-
-
Save mattfoster/33854 to your computer and use it in GitHub Desktop.
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
from IPython.ColorANSI import TermColors | |
colors = TermColors() | |
print 'IPython Colors:' | |
for color in dir(colors): | |
if not color.startswith('_'): | |
print getattr(colors, color), color | |
print colors.Blue, 'blue', colors.Red, 'green' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment