From bafd6948a97fe7cdfffad05c51d578eaa4d9e250 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Mon, 27 Jan 2025 22:30:37 +0530 Subject: [PATCH] feat: outlined error palette --- src/context/theme-provider.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/context/theme-provider.tsx b/src/context/theme-provider.tsx index 71bfb3b3..5624f2af 100644 --- a/src/context/theme-provider.tsx +++ b/src/context/theme-provider.tsx @@ -130,6 +130,14 @@ const darkTheme = createTheme({ backgroundColor: 'rgba(255, 0, 195, 0.08)', borderColor: '#ff66d9', }, + '&.MuiButton-outlinedError': { + borderColor: '#f44336', + color: '#f44336', + "&:hover": { + backgroundColor: 'rgba(244, 67, 54, 0.08)', + borderColor: '#d32f2f', + }, + }, }, }, },