From 57da88f86957b6921a98f23d13826238acb933a1 Mon Sep 17 00:00:00 2001 From: Oussama Sethoum <88779394+oSethoum@users.noreply.github.com> Date: Sun, 4 Dec 2022 14:30:22 +0100 Subject: [PATCH] [@mantine/core] Menu: change backgroundColor to theme.colors.gray[1] when Item hovered. --- src/mantine-core/src/Menu/MenuItem/MenuItem.styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mantine-core/src/Menu/MenuItem/MenuItem.styles.ts b/src/mantine-core/src/Menu/MenuItem/MenuItem.styles.ts index e2602228340..ff367c982fc 100644 --- a/src/mantine-core/src/Menu/MenuItem/MenuItem.styles.ts +++ b/src/mantine-core/src/Menu/MenuItem/MenuItem.styles.ts @@ -39,7 +39,7 @@ export default createStyles((theme, { color, radius }: MenuItemStylesParams) => ? theme.fn.variant({ variant: 'light', color }).background : theme.colorScheme === 'dark' ? theme.fn.rgba(theme.colors.dark[3], 0.35) - : theme.colors.gray[0], + : theme.colors.gray[1], }, },