@@ -98,8 +98,8 @@ const STYLES = {
9898 search : 'text-[var(--text-muted-inverse)] dark:text-[var(--text-muted)]' ,
9999 searchInput :
100100 'text-white placeholder:text-[var(--text-muted-inverse)] dark:text-[var(--text-primary)] dark:placeholder:text-[var(--text-muted)]' ,
101- content : 'bg-[#1b1b1b] text-white dark:bg-[ var(--surface-3)] dark:text-foreground' ,
102- divider : 'border-[#363636] dark:border-[ var(--border-1 )]' ,
101+ content : 'bg-[var(--surface-inverted)] text-white dark:text-foreground' ,
102+ divider : 'border-[var(--border-inverted )]' ,
103103 } ,
104104 } satisfies Record <
105105 PopoverColorScheme ,
@@ -126,9 +126,9 @@ const STYLES = {
126126 } ,
127127 inverted : {
128128 active :
129- 'bg-[#363636 ] text-white [&_svg]:text-white dark:bg-[var(--surface-5)] dark:text-[var(--text-primary)] dark:[&_svg]:text-[var(--text-primary)]' ,
129+ 'bg-[var(--surface-inverted-hover) ] text-white [&_svg]:text-white dark:text-[var(--text-primary)] dark:[&_svg]:text-[var(--text-primary)]' ,
130130 hover :
131- 'hover-hover:bg-[#363636 ] hover-hover:text-white hover-hover:[&_svg]:text-white dark:hover-hover:bg-[var(--surface-5)] dark:hover-hover:text-[var(--text-primary)] dark:hover-hover:[&_svg]:text-[var(--text-primary)]' ,
131+ 'hover-hover:bg-[var(--surface-inverted-hover) ] hover-hover:text-white hover-hover:[&_svg]:text-white dark:hover-hover:text-[var(--text-primary)] dark:hover-hover:[&_svg]:text-[var(--text-primary)]' ,
132132 } ,
133133 } ,
134134} as const
@@ -650,7 +650,7 @@ const PopoverContent = React.forwardRef<
650650 arrowClassName ??
651651 cn (
652652 colorScheme === 'inverted'
653- ? 'fill-[#1b1b1b] stroke-[#363636] dark:fill-[ var(--surface-3 )] dark: stroke-[var(--border-1 )]'
653+ ? 'fill-[var(--surface-inverted )] stroke-[var(--border-inverted )]'
654654 : 'fill-[var(--surface-3)] stroke-[var(--border-1)] dark:fill-[var(--surface-3)]'
655655 )
656656 }
0 commit comments