Commit 2a390f5d authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #2348 from koenpunt/graph-contrast

Skipping colors to get more contrast between colors
parents a5d7a958 4ebee56a
......@@ -57,7 +57,9 @@
BranchGraph.prototype.collectColors = function(){
for (var k = 0; k < this.mspace; k++) {
this.colors.push(Raphael.getColor());
this.colors.push(Raphael.getColor(.8));
// Skipping a few colors in the spectrum to get more contrast between colors
Raphael.getColor();Raphael.getColor();
}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment