diff --git a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx index 1ed1b3557..5689b9391 100644 --- a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx +++ b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx @@ -8,10 +8,12 @@ const StyledDropdownMenu = styled.div<{ backdrop-filter: ${({ theme, disableBlur }) => disableBlur ? 'none' : theme.blur.medium}; + color: ${({ theme }) => theme.font.color.secondary}; + background: ${({ theme, disableBlur }) => disableBlur ? theme.background.primary - : theme.background.transparent.secondary}; + : theme.background.transparent.primary}; border: ${({ disableBorder, theme }) => disableBorder ? 'none' : `1px solid ${theme.border.color.medium}`};