From 06f631df071818be49b906171443ef7b77af1cc6 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Mon, 27 Jan 2025 22:34:19 +0530 Subject: [PATCH] feat: icon outlined error palette --- src/context/theme-provider.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/context/theme-provider.tsx b/src/context/theme-provider.tsx index 5624f2af..4be51ed6 100644 --- a/src/context/theme-provider.tsx +++ b/src/context/theme-provider.tsx @@ -153,12 +153,18 @@ const darkTheme = createTheme({ }, MuiIconButton: { styleOverrides: { - root: { - color: '#ffffff', - "&:hover": { - backgroundColor: 'rgba(255, 0, 195, 0.08)', - }, + root: { + color: '#ffffff', + "&:hover": { + backgroundColor: 'rgba(255, 0, 195, 0.08)', }, + '&.MuiIconButton-colorError': { + color: '#f44336', + "&:hover": { + backgroundColor: 'rgba(244, 67, 54, 0.08)', + }, + }, + }, }, }, MuiTab: {