mattfoster (owner)

Revisions

gist: 33854 Download_button fork
public
Public Clone URL: git://gist.github.com/33854.git
Embed All Files: show embed
ipython_colors.py #
1
2
3
4
5
6
7
8
9
10
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'