Skip to content

Commit 848e6c8

Browse files
GeneAIGeneAI
authored andcommitted
fix: Improve text contrast in debug wizard header
Changed text-purple-200 to text-white/80 for better readability on purple gradient backgrounds
1 parent 822e711 commit 848e6c8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

website/app/tools/debug-wizard/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ export default function DebugWizardPage() {
3535
<span className="text-2xl">D</span>
3636
<div>
3737
<h1 className="text-xl font-bold">Empathy Framework</h1>
38-
<p className="text-purple-200 text-sm">Memory-Enhanced Debugging</p>
38+
<p className="text-white/80 text-sm">Memory-Enhanced Debugging</p>
3939
</div>
4040
</Link>
4141
</div>
4242
<nav className="flex items-center gap-6">
43-
<Link href="/docs" className="text-purple-200 hover:text-white text-sm">
43+
<Link href="/docs" className="text-white/80 hover:text-white text-sm">
4444
Docs
4545
</Link>
46-
<Link href="/pricing" className="text-purple-200 hover:text-white text-sm">
46+
<Link href="/pricing" className="text-white/80 hover:text-white text-sm">
4747
Pricing
4848
</Link>
4949
<Link

website/components/debug-wizard/DebugWizard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ logger = structlog.get_logger()`,
798798
<span className="text-3xl">D</span>
799799
<div>
800800
<h2 className="text-2xl font-bold">Memory-Enhanced Debugging Wizard</h2>
801-
<p className="text-purple-200 text-sm">
801+
<p className="text-white/80 text-sm">
802802
AI that remembers past bugs and their fixes
803803
</p>
804804
</div>
@@ -807,7 +807,7 @@ logger = structlog.get_logger()`,
807807
<span className="px-2 py-1 bg-purple-500 rounded text-xs">
808808
{tierDisplay.name}
809809
</span>
810-
<span className="text-purple-200 text-xs">
810+
<span className="text-white/80 text-xs">
811811
{limits.maxFiles === null ? 'Unlimited files' : `Up to ${limits.maxFiles} files`}
812812
</span>
813813
</div>

0 commit comments

Comments
 (0)