From 641ecd47d6664868aa9751fe145e7f02bede1484 Mon Sep 17 00:00:00 2001 From: jerry Date: Wed, 18 Dec 2024 16:06:41 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20Button=20=EC=BB=B4=ED=8F=AC?= =?UTF-8?q?=EB=84=8C=ED=8A=B8=20disabled=20=EC=83=89=EC=83=81=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=20-=20background:=20=20pink=20->=20grey=20=EB=A1=9C?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD=20-=20font:=20grey600=20->=20grey500?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/commons/button/Button.styled.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/commons/button/Button.styled.ts b/src/components/commons/button/Button.styled.ts index cffea7bb..2fb9ab02 100644 --- a/src/components/commons/button/Button.styled.ts +++ b/src/components/commons/button/Button.styled.ts @@ -60,9 +60,9 @@ export const DefaultBtn = styled.button` case "primary": return $isDisabled ? css` - color: ${({ theme }) => theme.colors.pink_700}; + color: ${({ theme }) => theme.colors.gray_500}; - background-color: ${({ theme }) => theme.colors.pink_900}; + background-color: ${({ theme }) => theme.colors.gray_700}; ` : css` color: ${({ theme }) => theme.colors.white}; @@ -86,7 +86,7 @@ export const DefaultBtn = styled.button` case "gray": return $isDisabled ? css` - color: ${({ theme }) => theme.colors.gray_600}; + color: ${({ theme }) => theme.colors.gray_500}; background-color: ${({ theme }) => theme.colors.gray_700}; `