File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments