@@ -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
@@ -1073,7 +1073,7 @@ def hlines(self, y, xmin, xmax, colors=None, linestyles='solid',
10731073 Respective beginning and end of each line. If scalars are
10741074 provided, all lines will have the same length.
10751075
1076- colors : color or list of colors , default: :rc:`lines.color`
1076+ colors : :mpltype:` color` or list of color , default: :rc:`lines.color`
10771077
10781078 linestyles : {'solid', 'dashed', 'dashdot', 'dotted'}, default: 'solid'
10791079
@@ -1164,7 +1164,7 @@ def vlines(self, x, ymin, ymax, colors=None, linestyles='solid',
11641164 Respective beginning and end of each line. If scalars are
11651165 provided, all lines will have the same length.
11661166
1167- colors : color or list of colors , default: :rc:`lines.color`
1167+ colors : :mpltype:` color` or list of color , default: :rc:`lines.color`
11681168
11691169 linestyles : {'solid', 'dashed', 'dashdot', 'dotted'}, default: 'solid'
11701170
@@ -1300,7 +1300,7 @@ def eventplot(self, positions, orientation='horizontal', lineoffsets=1,
13001300 If *positions* is 2D, this can be a sequence with length matching
13011301 the length of *positions*.
13021302
1303- colors : color or list of colors , default: :rc:`lines.color`
1303+ colors : :mpltype:` color` or list of color , default: :rc:`lines.color`
13041304 The color(s) of the event lines.
13051305
13061306 If *positions* is 2D, this can be a sequence with length matching
@@ -2333,10 +2333,10 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
23332333
23342334 Other Parameters
23352335 ----------------
2336- color : color or list of color, optional
2336+ color : :mpltype:` color` or list of :mpltype:` color` , optional
23372337 The colors of the bar faces.
23382338
2339- edgecolor : color or list of color, optional
2339+ edgecolor : :mpltype:` color` or list of :mpltype:` color` , optional
23402340 The colors of the bar edges.
23412341
23422342 linewidth : float or array-like, optional
@@ -2368,7 +2368,7 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
23682368 See :doc:`/gallery/statistics/errorbar_features` for an example on
23692369 the usage of *xerr* and *yerr*.
23702370
2371- ecolor : color or list of color, default: 'black'
2371+ ecolor : :mpltype:` color` or list of :mpltype:` color` , default: 'black'
23722372 The line color of the errorbars.
23732373
23742374 capsize : float, default: :rc:`errorbar.capsize`
@@ -2646,10 +2646,10 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
26462646
26472647 Other Parameters
26482648 ----------------
2649- color : color or list of color, optional
2649+ color : :mpltype:` color` or list of :mpltype:` color` , optional
26502650 The colors of the bar faces.
26512651
2652- edgecolor : color or list of color, optional
2652+ edgecolor : :mpltype:` color` or list of :mpltype:` color` , optional
26532653 The colors of the bar edges.
26542654
26552655 linewidth : float or array-like, optional
@@ -2681,7 +2681,7 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
26812681 See :doc:`/gallery/statistics/errorbar_features` for an example on
26822682 the usage of *xerr* and *yerr*.
26832683
2684- ecolor : color or list of color, default: 'black'
2684+ ecolor : :mpltype:` color` or list of :mpltype:` color` , default: 'black'
26852685 The line color of the errorbars.
26862686
26872687 capsize : float, default: :rc:`errorbar.capsize`
@@ -3139,7 +3139,7 @@ def pie(self, x, explode=None, labels=None, colors=None,
31393139 labels : list, default: None
31403140 A sequence of strings providing the labels for each wedge
31413141
3142- colors : color or array-like of color, default: None
3142+ colors : :mpltype:` color` or list of :mpltype:` color` , default: None
31433143 A sequence of colors through which the pie chart will cycle. If
31443144 *None*, will use the colors in the currently active cycle.
31453145
@@ -3434,7 +3434,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
34343434 Use 'none' (case-insensitive) to plot errorbars without any data
34353435 markers.
34363436
3437- ecolor : color, default: None
3437+ ecolor : :mpltype:` color` , default: None
34383438 The color of the errorbar lines. If None, use the color of the
34393439 line connecting the markers.
34403440
@@ -4416,9 +4416,9 @@ def _parse_scatter_color_args(c, edgecolors, kwargs, xsize,
44164416
44174417 Parameters
44184418 ----------
4419- c : color or sequence or sequence of color or None
4419+ c : :mpltype:` color` or array-like or list of :mpltype:` color` or None
44204420 See argument description of `.Axes.scatter`.
4421- edgecolors : color or sequence of color or {'face', 'none'} or None
4421+ edgecolors : :mpltype:` color` or sequence of color or {'face', 'none'} or None
44224422 See argument description of `.Axes.scatter`.
44234423 kwargs : dict
44244424 Additional kwargs. If these keys exist, we pop and process them:
@@ -4575,7 +4575,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
45754575 To eliminate the marker edge either set *linewidth=0* or
45764576 *edgecolor='none'*.
45774577
4578- c : array-like or list of colors or color, optional
4578+ c : array-like or list of :mpltype:`color` or :mpltype:` color` , optional
45794579 The marker colors. Possible values:
45804580
45814581 - A scalar or sequence of n numbers to be mapped to colors using
@@ -4625,8 +4625,8 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
46254625 The linewidth of the marker edges. Note: The default *edgecolors*
46264626 is 'face'. You may want to change this as well.
46274627
4628- edgecolors : {'face', 'none', *None*} or color or sequence of color, \
4629- default: :rc:`scatter.edgecolors`
4628+ edgecolors : {'face', 'none', *None*} or :mpltype:` color` or list of \
4629+ :mpltype:`color`, default: :rc:`scatter.edgecolors`
46304630 The edge color of the marker. Possible values:
46314631
46324632 - 'face': The edge color will always be the same as the face color.
@@ -6738,7 +6738,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
67386738 log : bool, default: False
67396739 If ``True``, the histogram axis will be set to a log scale.
67406740
6741- color : color or array-like of colors or None, default: None
6741+ color : :mpltype:` color` or list of :mpltype:`color` or None, default: None
67426742 Color or sequence of colors, one per dataset. Default (``None``)
67436743 uses the standard line color sequence.
67446744
0 commit comments