From 4479189df8a1859afeb77c70d19c564ab2de6875 Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Thu, 11 Dec 2025 08:56:51 +1000 Subject: [PATCH] fix(playground): use explicit white background for textarea --- apps/web/src/components/ToolPlayground.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/ToolPlayground.tsx b/apps/web/src/components/ToolPlayground.tsx index c8a81b1..1fdba89 100644 --- a/apps/web/src/components/ToolPlayground.tsx +++ b/apps/web/src/components/ToolPlayground.tsx @@ -245,7 +245,7 @@ export function ToolPlayground({ tool }: ToolPlaygroundProps): React.ReactElemen value={prompt} onChange={(e) => setPrompt(e.target.value)} placeholder="Enter your prompt here... (e.g., 'Create a blog post about TypeScript best practices')" - className="w-full h-32 px-4 py-3 rounded-lg border border-input bg-background text-foreground placeholder:text-foreground-tertiary focus:outline-none focus:ring-2 focus:ring-ring resize-none" + className="w-full h-32 px-4 py-3 rounded-lg border border-input bg-white text-foreground placeholder:text-foreground-tertiary focus:outline-none focus:ring-2 focus:ring-ring resize-none" disabled={isExecuting} />