From abeb76c48523e6a71f94f9750a97fe920c6417b4 Mon Sep 17 00:00:00 2001 From: Rick Manelius Date: Wed, 10 Dec 2025 13:25:26 -0600 Subject: [PATCH] Fix mermaid diagram legibility in dark mode (#45) Fix mermaid diagram legibility in dark mode --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d181566..52f5362 100644 --- a/README.md +++ b/README.md @@ -69,10 +69,10 @@ graph LR C --> D[Codify
Record
learnings] D --> A - style A fill:#f9f,stroke:#333,stroke-width:2px - style B fill:#bbf,stroke:#333,stroke-width:2px - style C fill:#bfb,stroke:#333,stroke-width:2px - style D fill:#ffb,stroke:#333,stroke-width:2px + style A fill:#f9f,stroke:#fff,stroke-width:2px,color:#333 + style B fill:#bbf,stroke:#fff,stroke-width:2px,color:#333 + style C fill:#bfb,stroke:#fff,stroke-width:2px,color:#333 + style D fill:#ffb,stroke:#fff,stroke-width:2px,color:#333 ``` ## How It Works