Skip to content

Commit

Permalink
fix: The menu background color is incorrect when toggling the dark me…
Browse files Browse the repository at this point in the history
…nu (#4008)

* fix: the menu background color is incorrect when activating the dark menu light theme

* chore: update active-color & active-background-color
  • Loading branch information
likui628 authored Aug 2, 2024
1 parent d5f3551 commit 8313be8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/@core/ui-kit/menu-ui/src/components/menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -445,8 +445,8 @@ $namespace: vben;
--menu-item-color: hsl(var(--foreground) / 80%);
--menu-item-hover-color: hsl(var(--accent-foreground));
--menu-item-hover-background-color: hsl(var(--accent));
--menu-item-active-color: hsl(var(--primary-foreground));
--menu-item-active-background-color: hsl(var(--primary));
--menu-item-active-color: hsl(var(--accent-foreground));
--menu-item-active-background-color: hsl(var(--accent));
--menu-submenu-hover-color: hsl(var(--foreground));
--menu-submenu-hover-background-color: hsl(var(--accent));
--menu-submenu-active-color: hsl(var(--foreground));
Expand Down

0 comments on commit 8313be8

Please sign in to comment.