@@ -179,42 +179,42 @@ const ProfileEdit: React.FC = () => {
179179 < FileInput type = "file" ref = { fileInputRef } onChange = { handleFileChange } />
180180 </ ProfilePicWrapper >
181181 < UserInfo >
182- < StyledText $textTheme = { { style : 'Heading' } } color = { theme . colors . tertiary } >
182+ < StyledText $textTheme = { { style : 'Heading' } } color = { theme . colors . text . tertiary } >
183183 < Username > { nickname || '알수없음' } </ Username >
184184 </ StyledText >
185185 </ UserInfo >
186186 < Row >
187- < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . tertiary } >
187+ < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . text . tertiary } >
188188 이름
189189 </ StyledText >
190190 < Input type = "text" value = { name } onChange = { ( e ) => setName ( e . target . value ) } />
191191 </ Row >
192192 < Row >
193- < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . tertiary } >
193+ < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . text . tertiary } >
194194 닉네임
195195 </ StyledText >
196196 < Input type = "text" value = { nickname } onChange = { ( e ) => setNickname ( e . target . value ) } />
197197 </ Row >
198198 < Row >
199- < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . tertiary } >
199+ < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . text . tertiary } >
200200 소개글
201201 </ StyledText >
202202 < Input value = { bio } onChange = { ( e ) => setBio ( e . target . value ) } />
203203 </ Row >
204204 < Row >
205- < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . tertiary } >
205+ < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . text . tertiary } >
206206 전화번호
207207 </ StyledText >
208208 < Input type = "text" value = { phoneNumber } onChange = { ( e ) => setPhoneNumber ( e . target . value ) } />
209209 </ Row >
210210 < Row >
211- < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . tertiary } >
211+ < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . text . tertiary } >
212212 생년월일
213213 </ StyledText >
214214 < Input type = "date" value = { birthDate } onChange = { ( e ) => setBirthDate ( e . target . value ) } />
215215 </ Row >
216216 < Row >
217- < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . tertiary } >
217+ < StyledText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . text . tertiary } >
218218 이메일
219219 </ StyledText >
220220 < EmailInput type = "email" value = { email } onChange = { ( e ) => setEmail ( e . target . value ) } />
0 commit comments