From 6af2cebcda62d4aaafd5c1bdda48179850a85cf5 Mon Sep 17 00:00:00 2001 From: Val Alexander Date: Sun, 5 Apr 2026 19:37:10 -0500 Subject: [PATCH] Tighten outline button contrast - Use a stronger foreground border for outline buttons - Slightly increase inset highlight to improve visibility --- apps/web/src/components/ui/button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/ui/button.tsx b/apps/web/src/components/ui/button.tsx index 7ef5619a..fe636f0f 100644 --- a/apps/web/src/components/ui/button.tsx +++ b/apps/web/src/components/ui/button.tsx @@ -15,7 +15,7 @@ const buttonVariants = cva( "destructive-outline": "border border-destructive/35 bg-destructive/6 text-destructive shadow-[inset_0_1px_0_hsl(0_0%_100%/0.04)] hover:border-destructive/45 hover:bg-destructive/10 hover:text-destructive", outline: - "border border-border/80 bg-card/70 text-foreground shadow-[inset_0_1px_0_hsl(0_0%_100%/0.04)] hover:border-primary/30 hover:bg-accent/80 hover:text-foreground", + "border border-foreground/12 bg-card text-foreground shadow-[inset_0_1px_0_hsl(0_0%_100%/0.06)] hover:border-primary/35 hover:bg-accent/80 hover:text-foreground", secondary: "bg-accent/85 text-accent-foreground shadow-[inset_0_1px_0_hsl(0_0%_100%/0.04)] hover:bg-accent", ghost: "text-muted-foreground hover:bg-accent/75 hover:text-foreground",