@@ -192,7 +192,7 @@ function EditPersonForm({
192192
193193 return (
194194 < div className = "flex-1 flex flex-col" >
195- < div className = "px-6 py-4 border-b border-gray -200" >
195+ < div className = "px-6 py-4 border-b border-neutral -200" >
196196 < div className = "flex items-center justify-between" >
197197 < h3 className = "text-lg font-semibold" > Edit Contact</ h3 >
198198 < div className = "flex gap-2" >
@@ -201,15 +201,15 @@ function EditPersonForm({
201201 variant = "ghost"
202202 size = "sm"
203203 onClick = { onCancel }
204- className = "hover:bg-gray -100 text-gray -700"
204+ className = "hover:bg-neutral -100 text-neutral -700"
205205 >
206206 Cancel
207207 </ Button >
208208 < Button
209209 onClick = { onSave }
210210 variant = "ghost"
211211 size = "sm"
212- className = "bg-gray -100 hover:bg-gray -200 text-gray -700"
212+ className = "bg-neutral -100 hover:bg-neutral -200 text-neutral -700"
213213 >
214214 Save
215215 </ Button >
@@ -219,19 +219,19 @@ function EditPersonForm({
219219
220220 < div className = "flex-1 overflow-y-auto" >
221221 < div className = "flex flex-col items-center py-6" >
222- < div className = "w-24 h-24 mb-3 bg-gray -200 rounded-full flex items-center justify-center" >
223- < span className = "text-xl font-semibold text-gray -600" >
222+ < div className = "w-24 h-24 mb-3 bg-neutral -200 rounded-full flex items-center justify-center" >
223+ < span className = "text-xl font-semibold text-neutral -600" >
224224 { getInitials ( personData . name as string || "?" ) }
225225 </ span >
226226 </ div >
227227 </ div >
228228
229- < div className = "border-t border-gray -200" >
229+ < div className = "border-t border-neutral -200" >
230230 < EditPersonNameField personId = { personId } />
231231 < EditPersonJobTitleField personId = { personId } />
232232
233- < div className = "flex items-center px-4 py-3 border-b border-gray -200" >
234- < div className = "w-28 text-sm text-gray -500" > Company</ div >
233+ < div className = "flex items-center px-4 py-3 border-b border-neutral -200" >
234+ < div className = "w-28 text-sm text-neutral -500" > Company</ div >
235235 < div className = "flex-1" >
236236 < EditPersonOrganizationSelector personId = { personId } />
237237 </ div >
@@ -258,8 +258,8 @@ function EditPersonNameField({ personId }: { personId: string }) {
258258 ) ;
259259
260260 return (
261- < div className = "flex items-center px-4 py-3 border-b border-gray -200" >
262- < div className = "w-28 text-sm text-gray -500" > Name</ div >
261+ < div className = "flex items-center px-4 py-3 border-b border-neutral -200" >
262+ < div className = "w-28 text-sm text-neutral -500" > Name</ div >
263263 < div className = "flex-1" >
264264 < Input
265265 value = { ( value as string ) || "" }
@@ -285,8 +285,8 @@ function EditPersonJobTitleField({ personId }: { personId: string }) {
285285 ) ;
286286
287287 return (
288- < div className = "flex items-center px-4 py-3 border-b border-gray -200" >
289- < div className = "w-28 text-sm text-gray -500" > Job Title</ div >
288+ < div className = "flex items-center px-4 py-3 border-b border-neutral -200" >
289+ < div className = "w-28 text-sm text-neutral -500" > Job Title</ div >
290290 < div className = "flex-1" >
291291 < Input
292292 value = { ( value as string ) || "" }
@@ -312,8 +312,8 @@ function EditPersonEmailField({ personId }: { personId: string }) {
312312 ) ;
313313
314314 return (
315- < div className = "flex items-center px-4 py-3 border-b border-gray -200" >
316- < div className = "w-28 text-sm text-gray -500" > Email</ div >
315+ < div className = "flex items-center px-4 py-3 border-b border-neutral -200" >
316+ < div className = "w-28 text-sm text-neutral -500" > Email</ div >
317317 < div className = "flex-1" >
318318 < Input
319319 type = "email"
@@ -340,8 +340,8 @@ function EditPersonLinkedInField({ personId }: { personId: string }) {
340340 ) ;
341341
342342 return (
343- < div className = "flex items-center px-4 py-3 border-b border-gray -200" >
344- < div className = "w-28 text-sm text-gray -500" > LinkedIn</ div >
343+ < div className = "flex items-center px-4 py-3 border-b border-neutral -200" >
344+ < div className = "w-28 text-sm text-neutral -500" > LinkedIn</ div >
345345 < div className = "flex-1" >
346346 < Input
347347 value = { ( value as string ) || "" }
@@ -380,9 +380,9 @@ function EditPersonOrganizationSelector({ personId }: { personId: string }) {
380380 ? (
381381 < div className = "flex items-center" >
382382 < span className = "text-base" > { organization . name } </ span >
383- < span className = "ml-2 text-gray -400 group" >
383+ < span className = "ml-2 text-neutral -400 group" >
384384 < CircleMinus
385- className = "size-4 cursor-pointer text-gray -400 hover:text-red-600"
385+ className = "size-4 cursor-pointer text-neutral -400 hover:text-red-600"
386386 onClick = { ( e ) => {
387387 e . stopPropagation ( ) ;
388388 handleRemoveOrganization ( ) ;
@@ -391,7 +391,7 @@ function EditPersonOrganizationSelector({ personId }: { personId: string }) {
391391 </ span >
392392 </ div >
393393 )
394- : < span className = "text-gray -500 text-base" > Select organization</ span > }
394+ : < span className = "text-neutral -500 text-base" > Select organization</ span > }
395395 </ div >
396396 </ PopoverTrigger >
397397
@@ -439,12 +439,12 @@ function OrganizationControl({
439439
440440 return (
441441 < div className = "flex flex-col gap-3 max-w-[450px]" >
442- < div className = "text-sm font-medium text-gray -700" > Organization</ div >
442+ < div className = "text-sm font-medium text-neutral -700" > Organization</ div >
443443
444444 < form onSubmit = { handleSubmit } >
445445 < div className = "flex flex-col gap-2" >
446- < div className = "flex items-center w-full px-2 py-1.5 gap-2 rounded bg-gray -50 border border-gray -200" >
447- < span className = "text-gray -500 flex-shrink-0" >
446+ < div className = "flex items-center w-full px-2 py-1.5 gap-2 rounded bg-neutral -50 border border-neutral -200" >
447+ < span className = "text-neutral -500 flex-shrink-0" >
448448 < SearchIcon className = "size-4" />
449449 </ span >
450450 < input
@@ -453,20 +453,20 @@ function OrganizationControl({
453453 onChange = { ( e ) => setSearchTerm ( e . target . value ) }
454454 onKeyDown = { handleKeyDown }
455455 placeholder = "Search or add company"
456- className = "w-full bg-transparent text-sm focus:outline-none placeholder:text-gray -400 focus-visible:ring-0 focus-visible:ring-offset-0"
456+ className = "w-full bg-transparent text-sm focus:outline-none placeholder:text-neutral -400 focus-visible:ring-0 focus-visible:ring-offset-0"
457457 />
458458 </ div >
459459
460460 { searchTerm . trim ( ) && (
461- < div className = "flex flex-col w-full rounded border border-gray -200 overflow-hidden" >
461+ < div className = "flex flex-col w-full rounded border border-neutral -200 overflow-hidden" >
462462 { organizations . map ( ( org : any ) => (
463463 < button
464464 key = { org . id }
465465 type = "button"
466- className = "flex items-center px-3 py-2 text-sm text-left hover:bg-gray -100 transition-colors w-full"
466+ className = "flex items-center px-3 py-2 text-sm text-left hover:bg-neutral -100 transition-colors w-full"
467467 onClick = { ( ) => selectOrganization ( org . id ) }
468468 >
469- < span className = "flex-shrink-0 size-5 flex items-center justify-center mr-2 bg-gray -100 rounded-full" >
469+ < span className = "flex-shrink-0 size-5 flex items-center justify-center mr-2 bg-neutral -100 rounded-full" >
470470 < Building2 className = "size-3" />
471471 </ span >
472472 < span className = "font-medium truncate" > { org . name } </ span >
@@ -476,15 +476,15 @@ function OrganizationControl({
476476 { organizations . length === 0 && (
477477 < button
478478 type = "button"
479- className = "flex items-center px-3 py-2 text-sm text-left hover:bg-gray -100 transition-colors w-full"
479+ className = "flex items-center px-3 py-2 text-sm text-left hover:bg-neutral -100 transition-colors w-full"
480480 onClick = { ( ) => { } }
481481 >
482- < span className = "flex-shrink-0 size-5 flex items-center justify-center mr-2 bg-gray -200 rounded-full" >
482+ < span className = "flex-shrink-0 size-5 flex items-center justify-center mr-2 bg-neutral -200 rounded-full" >
483483 < span className = "text-xs" > +</ span >
484484 </ span >
485- < span className = "flex items-center gap-1 font-medium text-gray -600" >
485+ < span className = "flex items-center gap-1 font-medium text-neutral -600" >
486486 Create
487- < span className = "text-gray -900 truncate max-w-[140px]" >
487+ < span className = "text-neutral -900 truncate max-w-[140px]" >
488488 "{ searchTerm . trim ( ) } "
489489 </ span >
490490 </ span >
@@ -494,15 +494,15 @@ function OrganizationControl({
494494 ) }
495495
496496 { ! searchTerm . trim ( ) && organizations . length > 0 && (
497- < div className = "flex flex-col w-full rounded border border-gray -200 overflow-hidden max-h-[40vh] overflow-y-auto custom-scrollbar" >
497+ < div className = "flex flex-col w-full rounded border border-neutral -200 overflow-hidden max-h-[40vh] overflow-y-auto custom-scrollbar" >
498498 { organizations . map ( ( org : any ) => (
499499 < button
500500 key = { org . id }
501501 type = "button"
502- className = "flex items-center px-3 py-2 text-sm text-left hover:bg-gray -100 transition-colors w-full"
502+ className = "flex items-center px-3 py-2 text-sm text-left hover:bg-neutral -100 transition-colors w-full"
503503 onClick = { ( ) => selectOrganization ( org . id ) }
504504 >
505- < span className = "flex-shrink-0 size-5 flex items-center justify-center mr-2 bg-gray -100 rounded-full" >
505+ < span className = "flex-shrink-0 size-5 flex items-center justify-center mr-2 bg-neutral -100 rounded-full" >
506506 < Building2 className = "size-3" />
507507 </ span >
508508 < span className = "font-medium truncate" > { org . name } </ span >
0 commit comments