From 73eceda96c13328180a9d13e9a324637d8fbf3f9 Mon Sep 17 00:00:00 2001 From: Alexis Date: Tue, 12 Aug 2025 10:18:07 +0200 Subject: [PATCH] Changed secondary button color --- app/assets/theme.css | 2 +- app/components/ui/button/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/theme.css b/app/assets/theme.css index 312f9c3..718ee70 100644 --- a/app/assets/theme.css +++ b/app/assets/theme.css @@ -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%); diff --git a/app/components/ui/button/index.ts b/app/components/ui/button/index.ts index bb58ee1..2b4b132 100644 --- a/app/components/ui/button/index.ts +++ b/app/components/ui/button/index.ts @@ -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" },