From 3abebc8684de8ec2774ada6a9d29e276ebde0d7a Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Mon, 6 Jul 2015 21:21:30 +0200 Subject: [PATCH] map/graph: change color of clients to magenta --- lib/forcegraph.js | 2 +- lib/map/clientlayer.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/forcegraph.js b/lib/forcegraph.js index 73cd968..7f80827 100644 --- a/lib/forcegraph.js +++ b/lib/forcegraph.js @@ -309,7 +309,7 @@ define(["d3"], function (d3) { } }) - ctx.fillStyle = "#73A7CC" + ctx.fillStyle = "rgba(220, 0, 103, 0.7)" ctx.fill() if (highlightedLinks.length) { diff --git a/lib/map/clientlayer.js b/lib/map/clientlayer.js index c48d030..c3fb439 100644 --- a/lib/map/clientlayer.js +++ b/lib/map/clientlayer.js @@ -69,7 +69,7 @@ define(["leaflet", "jshashes"], } }) - ctx.fillStyle = "rgba(153, 118, 16, 0.5)" + ctx.fillStyle = "rgba(220, 0, 103, 0.7)" ctx.fill() } })