From 4593b66356b63271e11c4bc83dd7ff20b81c5bd9 Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Mon, 22 Dec 2025 11:59:02 +0100 Subject: [PATCH] fix: Restore correct destructive variant colors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Swap destructive and destructive-foreground colors back to correct values. The previous commit accidentally reversed them, causing error states to show white background with red text instead of red background with white text. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- src/App.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.css b/src/App.css index 562dd32..2ec5950 100644 --- a/src/App.css +++ b/src/App.css @@ -87,8 +87,8 @@ --accent: hsl(263.4 70% 50.4%); /* purple-600 for dark */ --accent-foreground: hsl(210 40% 98%); - --destructive: hsl(210 40% 98%); - --destructive-foreground: hsl(0 62.8% 30.6%); /* red-900 */ + --destructive: hsl(0 62.8% 30.6%); /* red-900 */ + --destructive-foreground: hsl(210 40% 98%); --success: hsl(142.1 70.6% 45.3%); /* green-500 for dark */ --success-foreground: hsl(210 40% 98%);