Skip to content

Commit 9d58c4f

Browse files
authored
Update PoolerIcons.tsx (supabase#31023)
1 parent 2fdea18 commit 9d58c4f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

apps/studio/components/interfaces/Connect/PoolerIcons.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ const BottomRect = ({ isActive }: { isActive: boolean }) => (
113113
width={RECT_WIDTH}
114114
height={32}
115115
className={cn(
116-
'stroke-brand-500 fill-brand-300 stroke-[1] transition-all',
117-
isActive && 'fill-brand-400 stroke-brand',
116+
'stroke-border fill-background-surface-100 stroke-[1] transition-all',
117+
isActive && 'fill-background-surface-100 stroke-border-stronger',
118118
'flex items-center justify-center'
119119
)}
120120
x={RECT_X}
@@ -129,7 +129,10 @@ const BottomRect = ({ isActive }: { isActive: boolean }) => (
129129
/>
130130
<Database
131131
size={21}
132-
className={cn('w-4 h-4 text-brand-500 transition-all', isActive && 'text-brand')}
132+
className={cn(
133+
'w-4 h-4 text-foreground-lighter transition-all',
134+
isActive && 'text-foreground'
135+
)}
133136
x={RECT_X + RECT_WIDTH / 6} // Center horizontally (8 is half of icon width)
134137
y={BOTTOM_RECT_Y + 5.5} // Center vertically (16 is half of rect height, 8 is half of icon height)
135138
strokeWidth={1}

0 commit comments

Comments
 (0)