From 233944bf2469859d3164dbdc6d0ede5baee95050 Mon Sep 17 00:00:00 2001 From: Aakansha Doshi Date: Fri, 8 Mar 2024 11:20:25 +0530 Subject: [PATCH] use actorBorderColor for actorLineColor in theme-neutral --- packages/mermaid/src/themes/theme-neutral.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mermaid/src/themes/theme-neutral.js b/packages/mermaid/src/themes/theme-neutral.js index 032ed43c6a..4134a985b9 100644 --- a/packages/mermaid/src/themes/theme-neutral.js +++ b/packages/mermaid/src/themes/theme-neutral.js @@ -113,7 +113,7 @@ class Theme { this.actorBorder = lighten(this.border1, 23); this.actorBkg = this.mainBkg; this.actorTextColor = this.text; - this.actorLineColor = this.lineColor; + this.actorLineColor = this.actorBorder; this.signalColor = this.text; this.signalTextColor = this.text; this.labelBoxBkgColor = this.actorBkg;