diff --git a/packages/stack-ui/src/components/ui/button.tsx b/packages/stack-ui/src/components/ui/button.tsx index 0c9092457..9de060853 100644 --- a/packages/stack-ui/src/components/ui/button.tsx +++ b/packages/stack-ui/src/components/ui/button.tsx @@ -18,10 +18,10 @@ const buttonVariants = cva( destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90", outline: - "border border-input bg-background hover:bg-accent hover:text-accent-foreground", + "border border-input bg-background hover:bg-zinc-50 dark:hover:bg-accent dark:hover:text-accent-foreground", secondary: - "bg-secondary text-secondary-foreground hover:bg-secondary/80", - ghost: "hover:bg-accent hover:text-accent-foreground", + "bg-secondary text-secondary-foreground hover:bg-zinc-100 dark:hover:bg-secondary/80", + ghost: "hover:bg-zinc-100 dark:hover:bg-accent dark:hover:text-accent-foreground", link: "text-primary underline-offset-4 hover:underline", plain: "", }, diff --git a/packages/stack-ui/src/components/ui/dialog.tsx b/packages/stack-ui/src/components/ui/dialog.tsx index 179d04328..98b64e942 100644 --- a/packages/stack-ui/src/components/ui/dialog.tsx +++ b/packages/stack-ui/src/components/ui/dialog.tsx @@ -22,7 +22,7 @@ const DialogOverlay = forwardRefIfNeeded< (({ className, ...props }, ref) => ( diff --git a/packages/stack-ui/src/components/ui/tabs.tsx b/packages/stack-ui/src/components/ui/tabs.tsx index 44577dd60..72163ca0d 100644 --- a/packages/stack-ui/src/components/ui/tabs.tsx +++ b/packages/stack-ui/src/components/ui/tabs.tsx @@ -15,7 +15,7 @@ const TabsList = forwardRefIfNeeded<