From cb79e27d5a9eecd52b4cfaa311ab3e5b1960c405 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 13 Sep 2025 23:19:51 +0200 Subject: [PATCH] Fix hover button gray --- web/components/buttons/button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/buttons/button.tsx b/web/components/buttons/button.tsx index d731a750..48a4e2aa 100644 --- a/web/components/buttons/button.tsx +++ b/web/components/buttons/button.tsx @@ -69,7 +69,7 @@ export function buttonClass(size: SizeType, color: ColorType) { color === 'gradient' && [gradient, 'from-primary-500 to-blue-400'], color === 'gradient-pink' && [gradient, 'from-primary-500 to-fuchsia-500'], color === 'gray-white' && - 'text-ink-600 hover:bg-ink-200 disabled:text-ink-300 disabled:bg-transparent', + 'text-ink-600 hover:text-ink-900 disabled:text-ink-300 disabled:bg-transparent', color === 'gold' && [ gradient, 'enabled:!bg-gradient-to-br from-yellow-400 via-yellow-100 to-yellow-300 dark:from-yellow-600 dark:via-yellow-200 dark:to-yellow-400 !text-gray-900',