We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a98cef7 commit 430e478Copy full SHA for 430e478
lib/canvasContext.js
@@ -50,8 +50,17 @@ function CanvasContext(canvas) {
50
* Specifies the fill color that is used when the fill method is called. Allowed values are:
51
* - 32 bit integers on the format 0xRRGGBBAA
52
* - strings on the format #RGB
53
+ * - strings on the format #RGBA
54
* - strings on the format #RRGGBB
55
* - strings on the format #RRGGBBAA
56
+ * - strings on the format rgb(255, 255, 255)
57
+ * - strings on the format rgb(255, 255, 255, 0.5)
58
+ * - strings on the format rgba(255, 255, 255, 0.5)
59
+ * - strings on the format hsl(134, 50%, 50%)
60
+ * - strings on the format hsl(134, 50%, 50%, 0.5)
61
+ * - strings on the format hsla(134, 50%, 50%, 0.5)
62
+ * - strings on the format hwb(134, 50%, 50%)
63
+ * - strings on the format hwb(134, 50%, 50%, 0.5)
64
* @public
65
*/
66
CanvasContext.prototype.fillStyle = 0x000000ff;
0 commit comments