Changed secondary button color

This commit is contained in:
Alexis
2025-08-12 10:18:07 +02:00
parent e305b21f80
commit 73eceda96c
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@
--primary: rgb(101, 230, 166);
--primary-foreground: hsl(180 0 4.9%);
--secondary: hsl(222.2 47.4% 11.2%);
--secondary: hsl(0, 0%, 22.5%);
--secondary-foreground: hsl(210 40% 98%);
--accent: hsl(11, 87%, 69%);

View File

@@ -10,7 +10,7 @@ export const buttonVariants = cva(
default: "bg-primary text-primary-foreground hover:bg-primary/70",
destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90",
outline: "border border-input hover:bg-primary hover:text-primary-foreground",
secondary: "bg-secondary text-secondary-foreground hover:bg-primary/20",
secondary: "bg-secondary text-secondary-foreground hover:bg-primary/40",
ghost: "hover:bg-primary/70 hover:text-primary-foreground",
link: "text-primary underline-offset-4 hover:underline"
},