@@ -427,10 +427,10 @@ def indicate_inset(self, bounds, inset_ax=None, *, transform=None,
427427 `ax.transAxes`, i.e. the units of *rect* are in Axes-relative
428428 coordinates.
429429
430- facecolor : color, default: 'none'
430+ facecolor : :mpltype:` color` , default: 'none'
431431 Facecolor of the rectangle.
432432
433- edgecolor : color, default: '0.5'
433+ edgecolor : :mpltype:` color` , default: '0.5'
434434 Color of the rectangle and color of the connecting lines.
435435
436436 alpha : float, default: 0.5
@@ -1097,7 +1097,7 @@ def hlines(self, y, xmin, xmax, colors=None, linestyles='solid',
10971097 Respective beginning and end of each line. If scalars are
10981098 provided, all lines will have the same length.
10991099
1100- colors : color or list of colors , default: :rc:`lines.color`
1100+ colors : :mpltype:` color` or list of color , default: :rc:`lines.color`
11011101
11021102 linestyles : {'solid', 'dashed', 'dashdot', 'dotted'}, default: 'solid'
11031103
@@ -1188,7 +1188,7 @@ def vlines(self, x, ymin, ymax, colors=None, linestyles='solid',
11881188 Respective beginning and end of each line. If scalars are
11891189 provided, all lines will have the same length.
11901190
1191- colors : color or list of colors , default: :rc:`lines.color`
1191+ colors : :mpltype:` color` or list of color , default: :rc:`lines.color`
11921192
11931193 linestyles : {'solid', 'dashed', 'dashdot', 'dotted'}, default: 'solid'
11941194
@@ -1324,7 +1324,7 @@ def eventplot(self, positions, orientation='horizontal', lineoffsets=1,
13241324 If *positions* is 2D, this can be a sequence with length matching
13251325 the length of *positions*.
13261326
1327- colors : color or list of colors , default: :rc:`lines.color`
1327+ colors : :mpltype:` color` or list of color , default: :rc:`lines.color`
13281328 The color(s) of the event lines.
13291329
13301330 If *positions* is 2D, this can be a sequence with length matching
@@ -2357,10 +2357,10 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
23572357
23582358 Other Parameters
23592359 ----------------
2360- color : color or list of color, optional
2360+ color : :mpltype:` color` or list of :mpltype:` color` , optional
23612361 The colors of the bar faces.
23622362
2363- edgecolor : color or list of color, optional
2363+ edgecolor : :mpltype:` color` or list of :mpltype:` color` , optional
23642364 The colors of the bar edges.
23652365
23662366 linewidth : float or array-like, optional
@@ -2392,7 +2392,7 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
23922392 See :doc:`/gallery/statistics/errorbar_features` for an example on
23932393 the usage of *xerr* and *yerr*.
23942394
2395- ecolor : color or list of color, default: 'black'
2395+ ecolor : :mpltype:` color` or list of :mpltype:` color` , default: 'black'
23962396 The line color of the errorbars.
23972397
23982398 capsize : float, default: :rc:`errorbar.capsize`
@@ -2670,10 +2670,10 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
26702670
26712671 Other Parameters
26722672 ----------------
2673- color : color or list of color, optional
2673+ color : :mpltype:` color` or list of :mpltype:` color` , optional
26742674 The colors of the bar faces.
26752675
2676- edgecolor : color or list of color, optional
2676+ edgecolor : :mpltype:` color` or list of :mpltype:` color` , optional
26772677 The colors of the bar edges.
26782678
26792679 linewidth : float or array-like, optional
@@ -2705,7 +2705,7 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
27052705 See :doc:`/gallery/statistics/errorbar_features` for an example on
27062706 the usage of *xerr* and *yerr*.
27072707
2708- ecolor : color or list of color, default: 'black'
2708+ ecolor : :mpltype:` color` or list of :mpltype:` color` , default: 'black'
27092709 The line color of the errorbars.
27102710
27112711 capsize : float, default: :rc:`errorbar.capsize`
@@ -3163,7 +3163,7 @@ def pie(self, x, explode=None, labels=None, colors=None,
31633163 labels : list, default: None
31643164 A sequence of strings providing the labels for each wedge
31653165
3166- colors : color or array-like of color, default: None
3166+ colors : :mpltype:` color` or list of :mpltype:` color` , default: None
31673167 A sequence of colors through which the pie chart will cycle. If
31683168 *None*, will use the colors in the currently active cycle.
31693169
@@ -3458,7 +3458,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
34583458 Use 'none' (case-insensitive) to plot errorbars without any data
34593459 markers.
34603460
3461- ecolor : color, default: None
3461+ ecolor : :mpltype:` color` , default: None
34623462 The color of the errorbar lines. If None, use the color of the
34633463 line connecting the markers.
34643464
@@ -4440,9 +4440,9 @@ def _parse_scatter_color_args(c, edgecolors, kwargs, xsize,
44404440
44414441 Parameters
44424442 ----------
4443- c : color or sequence or sequence of color or None
4443+ c : :mpltype:` color` or array-like or list of :mpltype:` color` or None
44444444 See argument description of `.Axes.scatter`.
4445- edgecolors : color or sequence of color or {'face', 'none'} or None
4445+ edgecolors : :mpltype:` color` or sequence of color or {'face', 'none'} or None
44464446 See argument description of `.Axes.scatter`.
44474447 kwargs : dict
44484448 Additional kwargs. If these keys exist, we pop and process them:
@@ -4599,7 +4599,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
45994599 To eliminate the marker edge either set *linewidth=0* or
46004600 *edgecolor='none'*.
46014601
4602- c : array-like or list of colors or color, optional
4602+ c : array-like or list of :mpltype:`color` or :mpltype:` color` , optional
46034603 The marker colors. Possible values:
46044604
46054605 - A scalar or sequence of n numbers to be mapped to colors using
@@ -4649,8 +4649,8 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
46494649 The linewidth of the marker edges. Note: The default *edgecolors*
46504650 is 'face'. You may want to change this as well.
46514651
4652- edgecolors : {'face', 'none', *None*} or color or sequence of color, \
4653- default: :rc:`scatter.edgecolors`
4652+ edgecolors : {'face', 'none', *None*} or :mpltype:` color` or list of \
4653+ :mpltype:`color`, default: :rc:`scatter.edgecolors`
46544654 The edge color of the marker. Possible values:
46554655
46564656 - 'face': The edge color will always be the same as the face color.
@@ -6762,7 +6762,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
67626762 log : bool, default: False
67636763 If ``True``, the histogram axis will be set to a log scale.
67646764
6765- color : color or array-like of colors or None, default: None
6765+ color : :mpltype:` color` or list of :mpltype:`color` or None, default: None
67666766 Color or sequence of colors, one per dataset. Default (``None``)
67676767 uses the standard line color sequence.
67686768
0 commit comments