Skip to content

Commit 146d5a4

Browse files
committed
Feat: 컬러시스템 적용
1 parent c09fdc8 commit 146d5a4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/pages/Post/PostBase/LikeCommentBottomSheetContent/MenuButtonList/styles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const MenuListContainer = styled.div<{ $position: { top: number; left: nu
1919
display: flex;
2020
flex-direction: column;
2121
border-radius: 10px;
22-
background-color: ${({ theme }) => theme.colors.gray1};
22+
background-color: ${({ theme }) => theme.colors.gray[200]};
2323
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
2424
`;
2525

src/pages/Post/PostBase/LikeCommentBottomSheetContent/styles.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const Tab = styled.div<{ $active: boolean }>`
2222
left: 0;
2323
width: 100%;
2424
height: 2px; /* 하단 경계선 두께 */
25-
background: ${(props) => (props.$active ? theme.colors.gradient : 'none')};
25+
background: ${(props) => (props.$active ? theme.colors.brand.gradient : 'none')};
2626
}
2727
`;
2828

@@ -77,7 +77,7 @@ export const InputLayout = styled.div`
7777
align-items: center;
7878
gap: 10px;
7979
background-color: white;
80-
border-top: 1px solid ${({ theme }) => theme.colors.gray1};
80+
border-top: 1px solid ${({ theme }) => theme.colors.border.devider};
8181
8282
textarea {
8383
flex: 1;
@@ -107,7 +107,7 @@ export const InputLayout = styled.div`
107107
}
108108
109109
button {
110-
background: ${({ theme }) => theme.colors.gradient};
110+
background: ${({ theme }) => theme.colors.brand.gradient};
111111
width: 50px;
112112
height: 50px;
113113
border-radius: 8px;

0 commit comments

Comments
 (0)