Skip to content

Commit fdac46e

Browse files
committed
Fix dark mode diagram visibility and CSS syntax error
Bug fixes: - Fixed architecture diagram text being invisible in dark mode by removing hardcoded color fills that overrode theme colors - Added missing semicolon after 'color: white' in .cta-primary style to prevent CSS parsing issues
1 parent 3bd1abe commit fdac46e

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

docs/docs/learn/architecture.mdx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,6 @@ graph TB
5555
Client1 ---|"One-to-one<br/>connection"| Server1
5656
Client2 ---|"One-to-one<br/>connection"| Server2
5757
Client3 ---|"One-to-one<br/>connection"| Server3
58-
59-
style Client1 fill:#e1f5fe
60-
style Client2 fill:#e1f5fe
61-
style Client3 fill:#e1f5fe
62-
style Server1 fill:#f3e5f5
63-
style Server2 fill:#f3e5f5
64-
style Server3 fill:#f3e5f5
6558
```
6659

6760
Note that **MCP server** refers to the program that serves context data, regardless of

docs/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ body:has(#schema-reference) {
578578
border-radius: 9999px;
579579

580580
border: 6px solid var(--highlight-color);
581-
color: white
581+
color: white;
582582

583583
font-size: 1.5rem;
584584
font-weight: 700;

0 commit comments

Comments
 (0)