From 96c445aa4106a3daa9aa99d299d64077c61ec268 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Wed, 19 Nov 2025 17:29:30 +0100 Subject: [PATCH] refactor: update outline gray button border color from gray-300 to gray-200 - Changed border-gray-300 to border-gray-200 in outline gray variant for consistency with other border color updates across the application --- src/components/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 65cd576..e033c38 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -20,7 +20,7 @@ const variantStyles = { }, outline: { cyan: 'border-cyan-500 text-cyan-500', - gray: 'border-gray-300 text-gray-600 hover:text-cyan-500 hover:border-cyan-500 active:border-cyan-500', + gray: 'border-gray-200 text-gray-600 hover:text-cyan-500 hover:border-cyan-500 active:border-cyan-500', white: 'border-gray-300 text-white hover:text-cyan-500 hover:border-cyan-500 active:border-cyan-500', }, link: {