From 9df6c355717714aba7ee7764c6e0a4a9c85a68bb Mon Sep 17 00:00:00 2001 From: kevin rajan Date: Tue, 2 Dec 2025 11:54:37 -0600 Subject: [PATCH] Fix Mermaid arrow visibility with defaultLinkColor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change arrow/edge color from gray (#8B949E) to bright blue (#58A6FF) by adding the defaultLinkColor themeVariable which specifically controls flowchart arrow colors. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docs/conf.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ebba12b..6df20b5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,7 +33,8 @@ startOnLoad: true, theme: 'dark', themeVariables: { - lineColor: '#8B949E', + lineColor: '#58A6FF', + defaultLinkColor: '#58A6FF', primaryTextColor: '#C9D1D9', primaryColor: '#238636', primaryBorderColor: '#30363D', @@ -46,7 +47,8 @@ }, flowchart: { curve: 'basis', - useMaxWidth: true + useMaxWidth: true, + htmlLabels: true } }); """