Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pages/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Layout() {
} = useAppContext();

return (
<div className={`min-h-screen relative overflow-hidden transition-colors duration-300 ${darkMode ? 'bg-[#06060a] text-slate-100' : 'bg-slate-50 text-slate-900'}`}>
<div className={`min-h-screen relative overflow-hidden transition-colors duration-300 ${darkMode ? 'bg-[#06060a] text-white' : 'bg-slate-50 text-slate-900'}`}>

<div className="absolute inset-0 z-0 pointer-events-none mesh-bg"></div>

Expand Down Expand Up @@ -119,7 +119,7 @@ export default function Layout() {
<textarea
value={playgroundCode}
onChange={(e) => setPlaygroundCode(e.target.value)}
className="flex-1 w-full p-4 rounded-2xl bg-black/40 border border-slate-800 text-slate-250 font-mono text-xs focus:outline-none focus:ring-2 focus:ring-violet-600 focus:border-transparent resize-none leading-relaxed overflow-y-auto"
className="flex-1 w-full p-4 rounded-2xl bg-black/40 border border-slate-800 text-slate-200 font-mono text-xs focus:outline-none focus:ring-2 focus:ring-violet-600 focus:border-transparent resize-none leading-relaxed overflow-y-auto"
placeholder="Paste your Tailwind HTML code here..."
/>
</div>
Expand Down