Skip to content

Commit

Permalink
Design: 기본 색상 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
navyjeongs committed Jan 29, 2024
1 parent b419cf4 commit 3b88ddf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/components/Card/HomeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const Container = styled.div<{ hasOnClick: boolean }>`
display: flex;
align-items: center;
text-align: center;
background-color: white;
background-color: ${({ theme }) => theme.text};
color: ${({ theme }) => theme.bg};
border-radius: 1rem;
font-size: 1.6rem;
justify-content: center;
Expand Down
6 changes: 3 additions & 3 deletions src/components/Modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ const Container = styled.div`
display: flex;
justify-content: center;
align-items: center;
background-color: ${({ theme }) => theme['bg-70']};
opacity: 0.8;
background-color: ${({ theme }) => theme['modal-bg']};
color: ${({ theme }) => theme.text};
z-index: 10;
`;

const ModalContent = styled.div`
background-color: ${({ theme }) => theme['bg-100']};
background-color: ${({ theme }) => theme.bg};
border-radius: 2rem;
text-align: center;
margin: 0 auto;
Expand Down
1 change: 1 addition & 0 deletions src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ const Layout = ({ children }: PropsWithChildren) => {

const AuthLayout = styled.div`
padding: 2rem;
color: ${({ theme }) => theme.text};
background-color: ${({ theme }) => theme.bg};
`;

Expand Down

0 comments on commit 3b88ddf

Please sign in to comment.