Skip to content

Commit

Permalink
refactor: Button 컴포넌트 disabled 색상 변경
Browse files Browse the repository at this point in the history
- background:  pink -> grey 로 변경
- font: grey600 -> grey500으로 변경
  • Loading branch information
pepperdad committed Dec 18, 2024
1 parent 259ce78 commit 641ecd4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/commons/button/Button.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ export const DefaultBtn = styled.button<DefaultBtnPropTypes>`
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};
Expand All @@ -86,7 +86,7 @@ export const DefaultBtn = styled.button<DefaultBtnPropTypes>`
case "gray":
return $isDisabled
? css`
color: ${({ theme }) => theme.colors.gray_600};
color: ${({ theme }) => theme.colors.gray_500};
background-color: ${({ theme }) => theme.colors.gray_700};
`
Expand Down

0 comments on commit 641ecd4

Please sign in to comment.