diff --git a/src/components/layout/navbar.tsx b/src/components/layout/navbar.tsx index fbe4f1c..fab0008 100644 --- a/src/components/layout/navbar.tsx +++ b/src/components/layout/navbar.tsx @@ -37,8 +37,8 @@ const customNavigationMenuTriggerStyle = cn( 'relative bg-transparent text-muted-foreground cursor-pointer', 'hover:bg-accent hover:text-accent-foreground', 'focus:bg-accent focus:text-accent-foreground', - 'data-active:font-semibold data-active:bg-transparent data-active:text-foreground', - 'data-[state=open]:bg-transparent data-[state=open]:text-foreground' + 'data-active:font-semibold data-active:bg-transparent data-active:text-accent-foreground', + 'data-[state=open]:bg-transparent data-[state=open]:text-accent-foreground' ); export function Navbar({ scroll }: NavBarProps) { @@ -132,10 +132,10 @@ export function Navbar({ scroll }: NavBarProps) { className={cn( 'flex size-8 shrink-0 items-center justify-center transition-colors', 'bg-transparent text-muted-foreground', - 'group-hover:bg-transparent group-hover:text-foreground', - 'group-focus:bg-transparent group-focus:text-foreground', + 'group-hover:bg-transparent group-hover:text-accent-foreground', + 'group-focus:bg-transparent group-focus:text-accent-foreground', isSubItemActive && - 'bg-transparent text-foreground' + 'bg-transparent text-accent-foreground' )} > {subItem.icon ? subItem.icon : null} @@ -144,10 +144,10 @@ export function Navbar({ scroll }: NavBarProps) {