# see https://matplotlib.org/stable/tutorials/introductory/customizing.html lines.linewidth: 4 lines.solid_capstyle: butt legend.fancybox: true # Verdana" for non-math text, # Cambria Math #Blue (Crayon-Aqua) 0096FF #Dark Red C00000 #Orange (Apple Orange) FF9300 #Black 000000 #Magenta FF40FF #Purple 7030A0 axes.prop_cycle: cycler('color', ['0096FF', 'FF9300', 'FF40FF', '7030A0', 'C00000']) #axes.facecolor: f0f0f0 # grey axes.facecolor: ffffff # white axes.labelsize: large axes.axisbelow: true axes.grid: False axes.edgecolor: f0f0f0 axes.linewidth: 3.0 axes.titlesize: x-large patch.edgecolor: f0f0f0 patch.linewidth: 0.5 svg.fonttype: path grid.linestyle: - grid.linewidth: 1.0 grid.color: cbcbcb xtick.major.size: 0 xtick.minor.size: 0 ytick.major.size: 0 ytick.minor.size: 0 savefig.edgecolor: f0f0f0 savefig.facecolor: f0f0f0 #figure.subplot.left: 0.08 #figure.subplot.right: 0.95 #figure.subplot.bottom: 0.07 #figure.facecolor: f0f0f0 # grey figure.facecolor: ffffff # white ## *************************************************************************** ## * FONT * ## *************************************************************************** ## The font properties used by `text.Text`. ## See https://matplotlib.org/api/font_manager_api.html for more information ## on font properties. The 6 font properties used for font matching are ## given below with their default values. ## ## The font.family property can take either a concrete font name (not supported ## when rendering text with usetex), or one of the following five generic ## values: ## - 'serif' (e.g., Times), ## - 'sans-serif' (e.g., Helvetica), ## - 'cursive' (e.g., Zapf-Chancery), ## - 'fantasy' (e.g., Western), and ## - 'monospace' (e.g., Courier). ## Each of these values has a corresponding default list of font names ## (font.serif, etc.); the first available font in the list is used. Note that ## for font.serif, font.sans-serif, and font.monospace, the first element of ## the list (a DejaVu font) will always be used because DejaVu is shipped with ## Matplotlib and is thus guaranteed to be available; the other entries are ## left as examples of other possible values. ## ## The font.style property has three values: normal (or roman), italic ## or oblique. The oblique style will be used for italic, if it is not ## present. ## ## The font.variant property has two values: normal or small-caps. For ## TrueType fonts, which are scalable fonts, small-caps is equivalent ## to using a font size of 'smaller', or about 83%% of the current font ## size. ## ## The font.weight property has effectively 13 values: normal, bold, ## bolder, lighter, 100, 200, 300, ..., 900. Normal is the same as ## 400, and bold is 700. bolder and lighter are relative values with ## respect to the current weight. ## ## The font.stretch property has 11 values: ultra-condensed, ## extra-condensed, condensed, semi-condensed, normal, semi-expanded, ## expanded, extra-expanded, ultra-expanded, wider, and narrower. This ## property is not currently implemented. ## ## The font.size property is the default font size for text, given in points. ## 10 pt is the standard value. ## ## Note that font.size controls default text sizes. To configure ## special text sizes tick labels, axes, labels, title, etc., see the rc ## settings for axes and ticks. Special text sizes can be defined ## relative to font.size, using the following values: xx-small, x-small, ## small, medium, large, x-large, xx-large, larger, or smaller font.family: sans-serif font.style: normal font.variant: normal font.weight: normal font.stretch: normal font.size: 12.0 font.serif: DejaVu Serif, Bitstream Vera Serif, Computer Modern Roman, New Century Schoolbook, Century Schoolbook L, Utopia, ITC Bookman, Bookman, Nimbus Roman No9 L, Times New Roman, Times, Palatino, Charter, serif font.sans-serif: Verdana, DejaVu Sans, Bitstream Vera Sans, Computer Modern Sans Serif, Lucida Grande, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif font.cursive: Apple Chancery, Textile, Zapf Chancery, Sand, Script MT, Felipa, Comic Neue, Comic Sans MS, cursive font.fantasy: Chicago, Charcoal, Impact, Western, Humor Sans, xkcd, fantasy font.monospace: DejaVu Sans Mono, Bitstream Vera Sans Mono, Computer Modern Typewriter, Andale Mono, Nimbus Mono L, Courier New, Courier, Fixed, Terminal, monospace ## *************************************************************************** ## * TEXT * ## *************************************************************************** ## The text properties used by `text.Text`. ## See https://matplotlib.org/api/artist_api.html#module-matplotlib.text ## for more information on text properties #text.color: black