diff --git a/ui/desktop/src/components/MentionPopover.tsx b/ui/desktop/src/components/MentionPopover.tsx
index 0309f3e7..11c4323f 100644
--- a/ui/desktop/src/components/MentionPopover.tsx
+++ b/ui/desktop/src/components/MentionPopover.tsx
@@ -553,10 +553,9 @@ const MentionPopover = forwardRef<
handleItemClick(index)}
+ data-selected={index === selectedIndex}
className={`flex items-center gap-3 p-2 rounded-md cursor-pointer transition-colors ${
- index === selectedIndex
- ? 'bg-bgProminent text-textProminentInverse'
- : 'hover:bg-bgSubtle'
+ index === selectedIndex ? 'bg-sidebar-accent' : 'hover:bg-sidebar-accent/50'
}`}
>
@@ -564,7 +563,7 @@ const MentionPopover = forwardRef<
{item.name}
-
{item.extra}
+
{item.extra}
))}