map/graph: change color of clients to magenta

This commit is contained in:
Nils Schneider 2015-07-06 21:21:30 +02:00
parent ea9fff23e3
commit 3abebc8684
2 changed files with 2 additions and 2 deletions

View file

@ -309,7 +309,7 @@ define(["d3"], function (d3) {
} }
}) })
ctx.fillStyle = "#73A7CC" ctx.fillStyle = "rgba(220, 0, 103, 0.7)"
ctx.fill() ctx.fill()
if (highlightedLinks.length) { if (highlightedLinks.length) {

View file

@ -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() ctx.fill()
} }
}) })