Skip to content

Commit 3b459ef

Browse files
committed
Use green for entering.
1 parent 79f034d commit 3b459ef

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

tutorial/circle.markdown

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -431,8 +431,8 @@ var circle = svg.selectAll("circle")
431431
.style("stroke", "#ccc")
432432
.transition()
433433
.duration(750)
434-
.style("fill", "lightcoral")
435-
.style("stroke", "red");
434+
.style("fill", "lightgreen")
435+
.style("stroke", "green");
436436
});
437437
})();
438438
</script>
@@ -492,8 +492,8 @@ enter.attr("r", function(d) {
492492
.attr("y", -10)
493493
.attr("width", 20)
494494
.attr("height", 20)
495-
.style("fill", "lightcoral")
496-
.style("stroke", "red");
495+
.style("fill", "lightgreen")
496+
.style("stroke", "green");
497497

498498
g.append("svg:text")
499499
.attr("dy", ".35em")
@@ -555,8 +555,8 @@ enter.attr("r", function(d) {
555555
.attr("y", -10)
556556
.attr("width", 20)
557557
.attr("height", 20)
558-
.style("fill", "lightcoral")
559-
.style("stroke", "red");
558+
.style("fill", "lightgreen")
559+
.style("stroke", "green");
560560

561561
g.append("svg:text")
562562
.attr("dy", ".35em")
@@ -624,8 +624,8 @@ svg.selectAll("circle")
624624
.attr("y", -10)
625625
.attr("width", 20)
626626
.attr("height", 20)
627-
.style("fill", "lightcoral")
628-
.style("stroke", "red");
627+
.style("fill", "lightgreen")
628+
.style("stroke", "green");
629629

630630
g.append("svg:text")
631631
.attr("dy", ".35em")

0 commit comments

Comments
 (0)