From d1a6ee3091ec59cecb901817fd49bed5cec3c928 Mon Sep 17 00:00:00 2001
From: Timm Szigat <timm@szigat.de>
Date: Sun, 26 Oct 2014 15:01:10 +0100
Subject: [PATCH] mend

---
 js/eyecandy.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/js/eyecandy.js b/js/eyecandy.js
index 58ddea5..9f634da 100644
--- a/js/eyecandy.js
+++ b/js/eyecandy.js
@@ -153,7 +153,7 @@
             ctx.beginPath();
             ctx.moveTo(p.x, p.y);
             ctx.lineTo(p.closest[i].x, p.closest[i].y);
-            ctx.strokeStyle = 'rgba(156,217,249,'+ p.active+')';
+            ctx.strokeStyle = 'rgba(210,212,188,'+ p.active+')';
             ctx.stroke();
         }
     }
@@ -172,7 +172,7 @@
             if(!_this.active) return;
             ctx.beginPath();
             ctx.arc(_this.pos.x, _this.pos.y, _this.radius, 0, 2 * Math.PI, false);
-            ctx.fillStyle = 'rgba(156,217,249,'+ _this.active+')';
+            ctx.fillStyle = 'rgba(210,212,188,'+ _this.active+')';
             ctx.fill();
         };
     }