The CanvasRenderingContext2D
.fillStyle
property of the Canvas 2D API specifies the color, gradient, or pattern to use inside shapes. The default is #000
(black).
For more examples of fill and stroke styles, see Applying styles and color in the Canvas tutorial.
ctx.fillStyle = color; ctx.fillStyle = gradient; ctx.fillStyle = pattern;
color
DOMString
parsed as CSS <color>
value.gradient
CanvasGradient
object (a linear or radial gradient).pattern
CanvasPattern
object (a repeating image).This example applies a blue fill color to a rectangle.
<canvas id="canvas"></canvas>
var canvas = document.getElementById('canvas'); var ctx = canvas.getContext('2d'); ctx.fillStyle = 'blue'; ctx.fillRect(10, 10, 100, 100);
In this example, we use two for
loops to draw a grid of rectangles, each having a different fill color. To achieve this, we use the two variables i
and j
to generate a unique RGB color for each square, and only modify the red and green values. (The blue channel has a fixed value.) By modifying the channels, you can generate all kinds of palettes.
var ctx = document.getElementById('canvas').getContext('2d'); for (let i = 0; i < 6; i++) { for (let j = 0; j < 6; j++) { ctx.fillStyle = `rgb( ${Math.floor(255 - 42.5 * i)}, ${Math.floor(255 - 42.5 * j)}, 0)`; ctx.fillRect(j * 25, i * 25, 25, 25); } }
The result looks like this:
Screenshot | Live sample |
---|---|
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'CanvasRenderingContext2D.fillStyle' in that specification. | Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | 12 | Yes | Yes | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
In WebKit- and Blink-based browsers, the non-standard and deprecated method ctx.setFillColor()
is implemented in addition to this property.
setFillColor(color, optional alpha); setFillColor(grayLevel, optional alpha); setFillColor(r, g, b, a); setFillColor(c, m, y, k, a);
CanvasRenderingContext2D
CanvasGradient
CanvasPattern
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle