fix(diagrams): add color:#333 to light-fill nodes for dark mode contrast

Nodes with fill:#F5E6D3 (beige), fill:#B8B8B8 (gray), fill:#7BC47F (green)
had no explicit text color — GitHub dark mode rendered white text on light
backgrounds, making them unreadable.

Added color:#333 to all 3 light fills across all 10 diagram files.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Florian BRUNIAUX 2026-02-22 15:59:07 +01:00
parent dbb62306d7
commit 8a75fd2fd2
10 changed files with 150 additions and 150 deletions

View file

@ -40,9 +40,9 @@ flowchart TD
style D fill:#E87E2F,color:#fff
style H fill:#E87E2F,color:#fff
style J fill:#E87E2F,color:#fff
style G fill:#7BC47F
style G fill:#7BC47F,color:#333
style K fill:#6DB3F2,color:#fff
style N fill:#7BC47F
style N fill:#7BC47F,color:#333
```
<details>
@ -95,12 +95,12 @@ flowchart LR
M --> K
L -->|Yes| N([Merge ✓])
style A fill:#F5E6D3
style A fill:#F5E6D3,color:#333
style B fill:#6DB3F2,color:#fff
style D fill:#E87E2F,color:#fff
style I fill:#E87E2F,color:#fff
style L fill:#E87E2F,color:#fff
style N fill:#7BC47F
style N fill:#7BC47F,color:#333
```
<details>
@ -152,13 +152,13 @@ flowchart TD
N -->|No| J
N -->|Yes| O([Task done ✓])
style A fill:#F5E6D3
style A fill:#F5E6D3,color:#333
style B fill:#6DB3F2,color:#fff
style F fill:#E87E2F,color:#fff
style L fill:#E87E2F,color:#fff
style N fill:#E87E2F,color:#fff
style G fill:#F5E6D3
style O fill:#7BC47F
style G fill:#F5E6D3,color:#333
style O fill:#7BC47F,color:#333
```
<details>
@ -219,11 +219,11 @@ flowchart TD
O -->|No| P(Different\napproach needed)
P --> F
style A fill:#F5E6D3
style A fill:#F5E6D3,color:#333
style D fill:#E87E2F,color:#fff
style G fill:#E87E2F,color:#fff
style O fill:#E87E2F,color:#fff
style E fill:#7BC47F
style E fill:#7BC47F,color:#333
style L fill:#6DB3F2,color:#fff
style P fill:#E85D5D,color:#fff
```