style: step 11 - uniform text tokens in remaining components

This commit is contained in:
2026-04-19 12:09:22 +03:00
parent 1850fea170
commit d7fa470bcb
5 changed files with 5 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ export default function RootLayout({
<meta name="format-detection" content="telephone=no" />
<meta name="mobile-web-app-capable" content="yes" />
</head>
<body className="antialiased bg-background text-slate-100">
<body className="antialiased bg-background text-foreground">
{children}
</body>
</html>

View File

@@ -513,7 +513,7 @@ export default function AIOnboarding({ onCancel, onComplete, categories, invento
<textarea
value={extractedItems[editingIndex].OCR || extractedItems[editingIndex].ocr_text || ''}
onChange={(e) => updateEditingItem({ OCR: e.target.value })}
className="bg-transparent w-full text-sm font-bold leading-tight outline-none resize-none h-10 text-slate-200 py-0 scrollbar-hide"
className="bg-transparent w-full text-sm font-bold leading-tight outline-none resize-none h-10 text-secondary py-0 scrollbar-hide"
placeholder="Heuristic string for local matching..."
/>
</div>

View File

@@ -57,7 +57,7 @@ export default function PageShell({ children, requireAdmin = false }: PageShellP
}
return (
<div className="min-h-screen bg-background text-slate-100 flex flex-col">
<div className="min-h-screen bg-background text-foreground flex flex-col">
<Toaster position="top-center" />
{/* Content Area */}

View File

@@ -12,7 +12,7 @@ export default function StatCard({ label, value, icon: Icon }: StatCardProps) {
<div className="flex justify-between items-center gap-2 p-3.5 bg-surface/70 border border-slate-800/50 rounded-2xl shadow-sm transition-all hover:bg-surface" role="status">
<div className="flex items-center gap-2.5 min-w-0">
{Icon && <Icon className="w-5 h-5 text-primary flex-shrink-0" aria-hidden="true" />}
<span className="text-base md:text-lg text-slate-300 font-semibold truncate">
<span className="text-base md:text-lg text-secondary font-semibold truncate">
{label}
</span>
</div>