@@ -442,12 +442,12 @@ function SelectEnvironemnt({
442442 >
443443 < div
444444 className = { clsx (
445- 'absolute top-8 overflow-hidden shadow-lg bg-light rounded-md flex flex-col z-10' ,
445+ 'absolute top-9 overflow-hidden shadow-xl bg-theme border-2 border-primary-20 rounded-md flex flex-col z-10' ,
446446 side === 'left' && 'left-0' ,
447447 side === 'right' && 'right-0' ,
448448 ) }
449449 >
450- < Menu . Items className = "overflow-auto max-h-80 py-2 scrollbar scrollbar--vertical" >
450+ < Menu . Items className = "overflow-auto max-h-80 py-2 scrollbar scrollbar--vertical" >
451451 { Array . from ( environments ) . map ( env => (
452452 < Menu . Item key = { env . name } >
453453 { ( { active } ) => (
@@ -460,16 +460,16 @@ function SelectEnvironemnt({
460460 onSelect ?.( )
461461 } }
462462 className = { clsx (
463- 'flex justify-between items-center px-4 py-1 text-neutral-900 cursor-pointer overflow-auto' ,
464- active && 'bg-secondary-100 ' ,
463+ 'flex justify-between items-center px-4 py-1 cursor-pointer overflow-auto' ,
464+ active && 'bg-primary-10 ' ,
465465 env === environment &&
466- 'pointer-events-none cursor-default bg-secondary-100 ' ,
466+ 'pointer-events-none cursor-default bg-secondary-10 ' ,
467467 ) }
468468 >
469469 < div className = "flex items-start" >
470470 < CheckCircleIcon
471471 className = { clsx (
472- 'w-4 h-4 text-secondary -500 mt-1' ,
472+ 'w-4 h-4 text-primary -500 mt-1' ,
473473 active && 'opacity-10' ,
474474 env !== environment && 'opacity-0' ,
475475 ) }
@@ -479,20 +479,18 @@ function SelectEnvironemnt({
479479 < span
480480 className = { clsx (
481481 'block truncate ml-2' ,
482- env . isSyncronized
483- ? 'text-secondary-500'
484- : 'text-neutral-700' ,
482+ env . isSyncronized && 'text-primary-500'
485483 ) }
486484 >
487485 { env . name }
488486 </ span >
489- < small className = "block ml-2 text-neutral-400 " >
487+ < small className = "block ml-2" >
490488 ({ env . type } )
491489 </ small >
492490 </ span >
493491 { env . isDefault && (
494492 < span className = "flex ml-2" >
495- < small className = "text-xs text-neutral-700 " >
493+ < small className = "text-xs text-neutral-500 " >
496494 Default Environment
497495 </ small >
498496 </ span >
@@ -503,7 +501,7 @@ function SelectEnvironemnt({
503501 < Button
504502 className = "my-0 mx-0"
505503 size = { EnumSize . xs }
506- variant = "alternative"
504+ variant = { EnumVariant . Neutral }
507505 onClick = { ( e : MouseEvent ) => {
508506 e . stopPropagation ( )
509507
0 commit comments