2525# - an rgb tuple, such as (1.0, 0.5, 0.0)
2626# - a hex string, such as ff00ff (no '#' symbol)
2727# - a scalar grayscale intensity such as 0.75
28+ # - a legal html color name, eg red, blue, darkslategray
2829
2930#### CONFIGURATION BEGINS HERE
3031backend : GTKAgg # the default backend
@@ -45,10 +46,10 @@ timezone : UTC # a pytz timezone string, eg US/Central or Europe/Pari
4546# use the Agg backend (or TkAgg, GTKAgg, WxAgg)
4647lines.linewidth : 0.5 # line width in points
4748lines.linestyle : - # solid line
48- lines.color : b # blue
49+ lines.color : blue
4950lines.marker : None # the default marker
50- lines.markerfacecolor : b # blue
51- lines.markeredgecolor : k # black
51+ lines.markerfacecolor : blue
52+ lines.markeredgecolor : black
5253lines.markeredgewidth : 0.5 # the line width around the marker symbol
5354lines.markersize : 6 # markersize, in points
5455lines.antialiased : True # render lines in antialised (no jaggies)
@@ -62,8 +63,8 @@ lines.data_clipping : False # Use data clipping in addition to viewport
6263# http://matplotlib.sourceforge.net/matplotlib.patches.html for more
6364# information on patch properties
6465patch.linewidth : 1.0 # edge width in points
65- patch.facecolor : b
66- patch.edgecolor : k
66+ patch.facecolor : blue
67+ patch.edgecolor : black
6768patch.antialiased : True # render patches in antialised (no jaggies)
6869
6970### FONT
@@ -120,19 +121,19 @@ font.monospace : Andale Mono, Bitstream Vera Sans Mono, Nimbus Mono L, Cour
120121# text properties used by text.Text. See
121122# http://matplotlib.sourceforge.net/matplotlib.Text.html for more
122123# information on text properties
123- text.color : k # black
124+ text.color : black
124125
125126### AXES
126127# default face and edge color, default tick sizes,
127128# default fontsizes for ticklabels, and so on
128129axes.hold : True # whether to clear the axes by default on
129- axes.facecolor : w # background color; white
130- axes.edgecolor : k # edge color; black
130+ axes.facecolor : white # axes background color
131+ axes.edgecolor : black # axes edge color
131132axes.linewidth : 1.0 # edge linewidth
132133axes.grid : False # display grid or not
133134axes.titlesize : 14 # fontsize of the axes title
134135axes.labelsize : 12 # fontsize of the x any y labels
135- axes.labelcolor : k # black
136+ axes.labelcolor : black
136137
137138polaraxes.grid : True # display grid on polar axes
138139
@@ -141,19 +142,19 @@ tick.major.size : 4 # major tick size in points
141142tick.minor.size : 2 # minor tick size in points
142143tick.major.pad : 4 # distance to major tick label in points
143144tick.minor.pad : 4 # distance to the minor tick label in points
144- tick.color : k # color of the tick labels
145+ tick.color : black # color of the tick labels
145146tick.labelsize : 10 # fontsize of the tick labels
146147
147148### Grids
148- grid.color : k # grid color
149+ grid.color : black # grid color
149150grid.linestyle : : # dotted
150151grid.linewidth : 0.5 # in points
151152
152153### FIGURE
153154figure.figsize : 8, 6 # figure size in inches
154155figure.dpi : 80 # figure dots per inch
155156figure.facecolor : 0.75 # figure facecolor; 0.75 is scalar gray
156- figure.edgecolor : w # figure edgecolor; w is white
157+ figure.edgecolor : white # figure edgecolor
157158
158159### images
159160image.aspect : free # free | preserve
@@ -167,11 +168,11 @@ image.origin : upper # lower | upper
167168# Eg, you may want a higher resolution, or to make the figure
168169# background white
169170savefig.dpi : 100 # figure dots per inch
170- savefig.facecolor : w # figure facecolor; 0.75 is scalar gray
171- savefig.edgecolor : w # figure edgecolor; w is white
171+ savefig.facecolor : white # figure facecolor when saving
172+ savefig.edgecolor : white # figure edgecolor when saving
172173
173174tk.window_focus : False # Maintain shell focus for TkAgg
174-
175+ tk.pythoninspect : False # tk sets PYTHONINSEPCT
175176
176177# Set the verbose flags. This controls how much information
177178# matplotlib gives you at runtime and where it goes. Ther verbosity
0 commit comments