Skip to content

Commit 4bb026b

Browse files
Copilotdwarwick
andcommitted
Change branching rule node color to dark teal for better text contrast
Co-authored-by: dwarwick <15970276+dwarwick@users.noreply.github.com>
1 parent 8259d10 commit 4bb026b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

JwtIdentity.Client/Pages/Survey/BranchingSurveyEdit.razor.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,9 @@ private void BuildSyncfusionDiagram()
449449
Nodes = new DiagramObjectCollection<Node>();
450450
Connectors = new DiagramObjectCollection<Connector>();
451451

452-
string choiceNodeColor = "#f5d671";
452+
// Use dark teal for branching rule nodes - provides excellent contrast with white text
453+
// and is visually distinct from all group colors
454+
string choiceNodeColor = "#00796B";
453455

454456
if (Survey == null || QuestionGroups == null || !QuestionGroups.Any())
455457
return;

0 commit comments

Comments
 (0)