Skip to content

Commit 8c483c8

Browse files
committed
changed tree nodes colors
1 parent 2c69b14 commit 8c483c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Bonobo.Git.Server/Views/Repository/Graph.cshtml

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
var y = node.X * h + h / 2;
120120
121121
//if (i <= 12) {
122-
ctx.fillStyle = "#c18b55";
122+
ctx.fillStyle = "#0078e7";
123123
ctx.strokeStyle = "#cccccc";
124124
ctx.lineWidth = 3;
125125
@@ -130,7 +130,7 @@
130130
ctx.fill();
131131
ctx.closePath();
132132
133-
ctx.fillStyle = "#000";
133+
ctx.fillStyle = "#fff";
134134
ctx.font = "14px Calibri";
135135
136136
ctx.fillText(node.Id, x - 22, y + 5);
@@ -141,7 +141,7 @@
141141
x = node.X * w2 + w2 / 2;
142142
y = node.Y * h2 + h2 / 2;
143143
144-
ctx2.fillStyle = "#7a3b95";
144+
ctx2.fillStyle = "#f23f33";
145145
ctx2.beginPath();
146146
ctx2.arc(x, y, r2, 0, Math.PI * 2, true);
147147
ctx2.fill();

0 commit comments

Comments
 (0)