We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfb69f1 commit bc1283fCopy full SHA for bc1283f
1 file changed
examples/01_Shapes_And_Color/01_Color.js
@@ -25,7 +25,7 @@ function setup() {
25
// CSS color name
26
// For a list of available color names see:
27
// https://www.w3.org/wiki/CSS/Properties/color/keywords
28
- background("steelblue");
+ background('steelblue');
29
30
// Set width of stroke to 4 units
31
strokeWeight(4);
@@ -100,7 +100,7 @@ function setup() {
100
// Hex string
101
// This is a set of red, green, blue values
102
// Encoded in base 16
103
- stroke("#EFD8D8");
+ stroke('#EFD8D8');
104
105
// Draw without inner color
106
noFill();
0 commit comments