@@ -430,10 +430,10 @@ def indicate_inset(self, bounds, inset_ax=None, *, transform=None,
430430 `ax.transAxes`, i.e. the units of *rect* are in Axes-relative
431431 coordinates.
432432
433- facecolor : color, default: 'none'
433+ facecolor : :mpltype:` color` , default: 'none'
434434 Facecolor of the rectangle.
435435
436- edgecolor : color, default: '0.5'
436+ edgecolor : :mpltype:` color` , default: '0.5'
437437 Color of the rectangle and color of the connecting lines.
438438
439439 alpha : float, default: 0.5
@@ -1076,7 +1076,7 @@ def hlines(self, y, xmin, xmax, colors=None, linestyles='solid',
10761076 Respective beginning and end of each line. If scalars are
10771077 provided, all lines will have the same length.
10781078
1079- colors : color or list of colors, default: :rc:`lines.color`
1079+ colors : :mpltype:` color` or list of colors, default: :rc:`lines.color`
10801080
10811081 linestyles : {'solid', 'dashed', 'dashdot', 'dotted'}, default: 'solid'
10821082
@@ -1167,7 +1167,7 @@ def vlines(self, x, ymin, ymax, colors=None, linestyles='solid',
11671167 Respective beginning and end of each line. If scalars are
11681168 provided, all lines will have the same length.
11691169
1170- colors : color or list of colors, default: :rc:`lines.color`
1170+ colors : :mpltype:` color` or list of colors, default: :rc:`lines.color`
11711171
11721172 linestyles : {'solid', 'dashed', 'dashdot', 'dotted'}, default: 'solid'
11731173
@@ -1303,7 +1303,7 @@ def eventplot(self, positions, orientation='horizontal', lineoffsets=1,
13031303 If *positions* is 2D, this can be a sequence with length matching
13041304 the length of *positions*.
13051305
1306- colors : color or list of colors, default: :rc:`lines.color`
1306+ colors : :mpltype:` color` or list of colors, default: :rc:`lines.color`
13071307 The color(s) of the event lines.
13081308
13091309 If *positions* is 2D, this can be a sequence with length matching
@@ -2336,10 +2336,10 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
23362336
23372337 Other Parameters
23382338 ----------------
2339- color : color or list of color, optional
2339+ color : :mpltype:` color` or list of color, optional
23402340 The colors of the bar faces.
23412341
2342- edgecolor : color or list of color, optional
2342+ edgecolor : :mpltype:` color` or list of color, optional
23432343 The colors of the bar edges.
23442344
23452345 linewidth : float or array-like, optional
@@ -2371,7 +2371,7 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
23712371 See :doc:`/gallery/statistics/errorbar_features` for an example on
23722372 the usage of *xerr* and *yerr*.
23732373
2374- ecolor : color or list of color, default: 'black'
2374+ ecolor : :mpltype:` color` or list of color, default: 'black'
23752375 The line color of the errorbars.
23762376
23772377 capsize : float, default: :rc:`errorbar.capsize`
@@ -2649,10 +2649,10 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
26492649
26502650 Other Parameters
26512651 ----------------
2652- color : color or list of color, optional
2652+ color : :mpltype:` color` or list of color, optional
26532653 The colors of the bar faces.
26542654
2655- edgecolor : color or list of color, optional
2655+ edgecolor : :mpltype:` color` or list of color, optional
26562656 The colors of the bar edges.
26572657
26582658 linewidth : float or array-like, optional
@@ -2684,7 +2684,7 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
26842684 See :doc:`/gallery/statistics/errorbar_features` for an example on
26852685 the usage of *xerr* and *yerr*.
26862686
2687- ecolor : color or list of color, default: 'black'
2687+ ecolor : :mpltype:` color` or list of color, default: 'black'
26882688 The line color of the errorbars.
26892689
26902690 capsize : float, default: :rc:`errorbar.capsize`
@@ -3142,7 +3142,7 @@ def pie(self, x, explode=None, labels=None, colors=None,
31423142 labels : list, default: None
31433143 A sequence of strings providing the labels for each wedge
31443144
3145- colors : color or array-like of color, default: None
3145+ colors : :mpltype:` color` or array-like of color, default: None
31463146 A sequence of colors through which the pie chart will cycle. If
31473147 *None*, will use the colors in the currently active cycle.
31483148
@@ -3437,7 +3437,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
34373437 Use 'none' (case-insensitive) to plot errorbars without any data
34383438 markers.
34393439
3440- ecolor : color, default: None
3440+ ecolor : :mpltype:` color` , default: None
34413441 The color of the errorbar lines. If None, use the color of the
34423442 line connecting the markers.
34433443
@@ -4400,9 +4400,9 @@ def _parse_scatter_color_args(c, edgecolors, kwargs, xsize,
44004400
44014401 Parameters
44024402 ----------
4403- c : color or sequence or sequence of color or None
4403+ c : :mpltype:` color` or sequence or sequence of color or None
44044404 See argument description of `.Axes.scatter`.
4405- edgecolors : color or sequence of color or {'face', 'none'} or None
4405+ edgecolors : :mpltype:` color` or sequence of color or {'face', 'none'} or None
44064406 See argument description of `.Axes.scatter`.
44074407 kwargs : dict
44084408 Additional kwargs. If these keys exist, we pop and process them:
@@ -6718,7 +6718,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
67186718 log : bool, default: False
67196719 If ``True``, the histogram axis will be set to a log scale.
67206720
6721- color : color or array-like of colors or None, default: None
6721+ color : :mpltype:` color` or array-like of colors or None, default: None
67226722 Color or sequence of colors, one per dataset. Default (``None``)
67236723 uses the standard line color sequence.
67246724
0 commit comments