website: soften poly lines slightly

This commit is contained in:
Jack Pearkes
2014-07-27 23:04:59 -04:00
parent 2b01b4bad3
commit d97a235f77
2 changed files with 38 additions and 38 deletions

View File

@@ -124,7 +124,7 @@ Engine.Shape.Puller.prototype = {
}
ctx.closePath();
ctx.lineWidth = 0.4 * scale;
ctx.strokeStyle = 'rgba(108,0,243,0.3)';
ctx.strokeStyle = 'rgba(108,0,243,0.1)';
ctx.stroke();
if (this.alpha < 1) {
@@ -158,7 +158,7 @@ Engine.Shape.Puller.prototype = {
}
}
ctx.closePath();
ctx.fillStyle = 'rgba(108,0,243,0.1)';
ctx.fillStyle = 'rgba(108,0,243,0.05)';
ctx.fill();
ctx.setTransform(1, 0, 0, 1, 0, 0);