Preparation for theming

This commit is contained in:
grimsi
2024-04-01 19:59:44 +02:00
parent d30cd9706d
commit 5a2b26ee0c
15 changed files with 209 additions and 57 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ const Card = React.forwardRef<
<div
ref={ref}
className={cn(
"rounded-lg border border-slate-200 bg-white text-slate-950 shadow-sm dark:border-slate-800 dark:bg-slate-950 dark:text-slate-50",
"rounded-lg border bg-card text-card-foreground shadow-sm",
className
)}
{...props}
@@ -50,7 +50,7 @@ const CardDescription = React.forwardRef<
>(({className, ...props}, ref) => (
<p
ref={ref}
className={cn("text-sm text-slate-500 dark:text-slate-400", className)}
className={cn("text-sm text-muted-foreground", className)}
{...props}
/>
))