.. _pylab_examples-color_demo: pylab_examples example code: color_demo.py ========================================== .. plot:: /home/tcaswell/source/p/matplotlib/doc/mpl_examples/pylab_examples/color_demo.py :: #!/usr/bin/env python """ matplotlib gives you 4 ways to specify colors, 1) as a single letter string, ala MATLAB 2) as an html style hex string or html color name 3) as an R,G,B tuple, where R,G,B, range from 0-1 4) as a string representing a floating point number from 0 to 1, corresponding to shades of gray. See help(colors) for more info. """ import matplotlib.pyplot as plt import numpy as np plt.subplot(111, axisbg='darkslategray') #subplot(111, axisbg='#ababab') t = np.arange(0.0, 2.0, 0.01) s = np.sin(2*np.pi*t) plt.plot(t, s, 'y') plt.xlabel('time (s)', color='r') plt.ylabel('voltage (mV)', color='0.5') # grayscale color plt.title('About as silly as it gets, folks', color='#afeeee') plt.show() Keywords: python, matplotlib, pylab, example, codex (see :ref:`how-to-search-examples`)