From 30a7e68609b0b2631f2e238fe6236a9017ad26c7 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 26 May 2024 20:01:55 +0900 Subject: [PATCH] style: change gray to neutral --- packages/react/components/Button.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/react/components/Button.tsx b/packages/react/components/Button.tsx index 684e519..dd98c6d 100644 --- a/packages/react/components/Button.tsx +++ b/packages/react/components/Button.tsx @@ -7,7 +7,8 @@ const colors = { outline: "outline-black/20 dark:outline-white/20", border: "border-black/20 dark:border-white/20", background: { - default: "bg-white dark:bg-black hover:bg-gray-100 dark:hover:bg-gray-800", + default: + "bg-white dark:bg-black hover:bg-neutral-100 dark:hover:bg-neutral-800", ghost: "bg-black/0 dark:bg-white/0 hover:bg-black/20 dark:hover:bg-white/20", },