From 3ebcbae46f7389187a5bbff065a58f0eefcc54b8 Mon Sep 17 00:00:00 2001 From: p-sw <shinwoo.park@psw.kr> Date: Sun, 26 May 2024 20:10:19 +0900 Subject: [PATCH] style: change transparent colors to neutral --- packages/react/components/Button.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/react/components/Button.tsx b/packages/react/components/Button.tsx index dd98c6d..67ae603 100644 --- a/packages/react/components/Button.tsx +++ b/packages/react/components/Button.tsx @@ -2,10 +2,9 @@ import React from "react"; import { vcn, VariantProps, Slot, AsChild } from "../shared"; const colors = { - outlineFocus: - "focus-visible:outline-black/50 dark:focus-visible:outline-white/50", - outline: "outline-black/20 dark:outline-white/20", - border: "border-black/20 dark:border-white/20", + outlineFocus: "focus-visible:outline-neutral-500", + outline: "outline-neutral-300 dark:outline-neutral-700", + border: "border-neutral-300 dark:border-neutral-700", background: { default: "bg-white dark:bg-black hover:bg-neutral-100 dark:hover:bg-neutral-800",