The CanvasRenderingContext2D
.strokeStyle
property of the Canvas 2D API specifies the color or style to use for the lines around shapes. The default is #000
(black).
See also the chapter Applying styles and color in the Canvas Tutorial.
ctx.strokeStyle = color; ctx.strokeStyle = gradient; ctx.strokeStyle = pattern;
color
DOMString
parsed as CSS <color>
value.gradient
CanvasGradient
object (a linear or radial gradient).pattern
CanvasPattern
object (a repetitive image).strokeStyle
property to set a different colorThis is just a simple code snippet using the strokeStyle
property to set a different color.
<canvas id="canvas"></canvas>
var canvas = document.getElementById('canvas'); var ctx = canvas.getContext('2d'); ctx.strokeStyle = 'blue'; ctx.strokeRect(10, 10, 100, 100);
Edit the code below and see your changes update live in the canvas:
strokeStyle
exampleThis example uses the strokeStyle
property to change the colors of the shapes' outlines. We use the arc()
method to draw circles instead of squares.
var ctx = document.getElementById('canvas').getContext('2d'); for (var i = 0; i < 6; i++) { for (var j = 0; j < 6; j++) { ctx.strokeStyle = 'rgb(0,' + Math.floor(255 - 42.5 * i) + ',' + Math.floor(255 - 42.5 * j) + ')'; ctx.beginPath(); ctx.arc(12.5 + j * 25, 12.5 + i * 25, 10, 0, Math.PI * 2, true); ctx.stroke(); } }
The result looks like this:
Screenshot | Live sample |
---|---|
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'CanvasRenderingContext2D.strokeStyle' in that specification. | Living Standard |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | |
---|---|---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
ctx.setStrokeColor()
is implemented besides this property. setStrokeColor(color, optional alpha); setStrokeColor(grayLevel, optional alpha); setStrokeColor(r, g, b, a); setStrokeColor(c, m, y, k, a);
CanvasRenderingContext2D
CanvasGradient
CanvasPattern
© 2005–2017 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/strokeStyle