diff --git a/examples/Tools/PathEditing.html b/examples/Tools/PathEditing.html
index 247962d0..3a27d52c 100644
--- a/examples/Tools/PathEditing.html
+++ b/examples/Tools/PathEditing.html
@@ -30,7 +30,8 @@
var lightness = (Math.random() - 0.5) * 0.4 + 0.4;
var hue = Math.random() * 360;
path.style = {
- fillColor: new HSLColor(hue, 1, lightness)
+ fillColor: new HSLColor(hue, 1, lightness),
+ strokeColor: 'black'
};
};