@@ -101,14 +101,14 @@ const LostFoundForm = ({ lostId = null }: Props) => {
101101 < button
102102 type = "submit"
103103 disabled = { ! isActiveSubmitButton }
104- className = { `px-[13px] py-[6px] ${ isActiveSubmitButton ? 'bg-[#2ACF6C] text-[#FBFBFB] cursor-pointer' : 'bg-[#EAECF1] text-[#95979F] cursor-not-allowed' } text-xs rounded-[3px] font-medium ` }
104+ className = { `px-[13px] py-[6px] rounded-[3px] text-body-small ${ isActiveSubmitButton ? 'bg-key-color text-gray-0 cursor-pointer' : 'bg-gray-30 text-gray-70 cursor-not-allowed' } ` }
105105 >
106106 등록
107107 </ button >
108108 </ div >
109109 < div className = "h-full box-border pb-[26px] px-5 max-w-[520px]" >
110110 < div className = "mb-8" >
111- < p className = "font -medium mb-3" > 유실물 상세정보</ p >
111+ < p className = "text-label -medium mb-3" > 유실물 상세정보</ p >
112112 < div
113113 className = { `flex pt-1.5 overflow-x-auto overflow-scroll [&::-webkit-scrollbar]:hidden` }
114114 >
@@ -149,9 +149,9 @@ const LostFoundForm = ({ lostId = null }: Props) => {
149149 </ div >
150150
151151 < div className = "mb-8" >
152- < div className = "flex items-center font-medium mb-3" >
153- < p className = "mr-1" > 카테고리</ p >
154- < span className = "inline-block w-[5px] h-[5px] bg-red-500 rounded-full" />
152+ < div className = "flex items-center mb-3" >
153+ < p className = "mr-1 gray-90 text-label-medium " > 카테고리</ p >
154+ < span className = "inline-block w-[5px] h-[5px] bg-red rounded-full" />
155155 </ div >
156156 < fieldset >
157157 < input
@@ -165,7 +165,7 @@ const LostFoundForm = ({ lostId = null }: Props) => {
165165 />
166166 < label
167167 htmlFor = "lost"
168- className = "box-border px-[12px] py-[7px] rounded text-sm border font-semibold text-[#33333E] mr-2.5 peer-checked/lost:border-[#2ACF6C] peer-checked/lost:bg-[#2ACF6C] peer-checked/lost:text-[#FBFBFB] "
168+ className = "box-border px-[12px] py-[7px] rounded border text-label-medium text-gray-90 mr-2.5 peer-checked/lost:border-key-color peer-checked/lost:bg-key-color peer-checked/lost:text-gray-0 "
169169 >
170170 분실물
171171 </ label >
@@ -180,39 +180,39 @@ const LostFoundForm = ({ lostId = null }: Props) => {
180180 />
181181 < label
182182 htmlFor = "acquire"
183- className = "box-border px-[12px] py-[7px] rounded text-sm border font-semibold text-[#33333E] peer-checked/acquire:border-[#2ACF6C] peer-checked/acquire:bg-[#2ACF6C] peer-checked/acquire:text-[#FBFBFB] "
183+ className = "box-border px-[12px] py-[7px] rounded border text-label-medium text-gray-90 peer-checked/acquire:border-key-color peer-checked/acquire:bg-key-color peer-checked/acquire:text-gray-0 "
184184 >
185185 습득물
186186 </ label >
187187 </ fieldset >
188188 </ div >
189189 < div className = "mb-8" >
190- < div className = "flex items-center font-medium mb-3" >
191- < p className = "mr-1" > 호선 선택</ p >
192- < span className = "inline-block w-[5px] h-[5px] bg-red-500 rounded-full" />
190+ < div className = "flex items-center mb-3" >
191+ < p className = "mr-1 text-label-medium text-gray-90 " > 호선 선택</ p >
192+ < span className = "inline-block w-[5px] h-[5px] bg-red rounded-full" />
193193 </ div >
194194 < SelectLineDrawer
195195 subwayLineId = { subwayLineId }
196196 setSubwayLineId = { setSubwayLineId }
197197 />
198198 </ div >
199199 < div className = "mb-8" >
200- < div className = "flex items-center font-medium mb-3" >
201- < p className = "mr-1" > 제목</ p >
202- < span className = "inline-block w-[5px] h-[5px] bg-red-500 rounded-full" />
200+ < div className = "flex items-center mb-3" >
201+ < p className = "mr-1 text-label-medium text-gray-90 " > 제목</ p >
202+ < span className = "inline-block w-[5px] h-[5px] bg-red rounded-full" />
203203 </ div >
204204 < input
205205 type = "text"
206206 placeholder = "제목을 입력해주세요"
207207 value = { title }
208208 onChange = { ( e ) => setTitle ( e . target . value ) }
209- className = "w-full border py-3 pl-3 pr-4 outline-none rounded-[5px]"
209+ className = "w-full border py-3 pl-3 pr-4 outline-none rounded-[5px] text-body-large-semi text-gray-90 placeholder:text-gray-70 "
210210 />
211211 </ div >
212212 < div className = "relative w-full h-[200px] mb-[32px]" >
213- < div className = "flex items-center font-medium mb-3" >
214- < p className = "mr-1" > 자세한 설명</ p >
215- < span className = "inline-block w-[5px] h-[5px] bg-red-500 rounded-full" />
213+ < div className = "flex items-center mb-3" >
214+ < p className = "mr-1 text-label-medium text-gray-90 " > 자세한 설명</ p >
215+ < span className = "inline-block w-[5px] h-[5px] bg-red rounded-full" />
216216 </ div >
217217 < Editor
218218 placeholder = {
0 commit comments