renderer.on("enterNode", ({ node }) => {
graph.forEachNode((n,attr) => {
graph.setNodeAttribute(n, "color", "#999");
});
graph.forEachNeighbor(node, (n, attr) => {
graph.setNodeAttribute(n, "color", colors[attr.community]);
});
graph.setNodeAttribute(node, "color", colors[graph.getNodeAttribute(node, "community")]);
});