From f37e8aea5fbeb000ee4d5692f4fefb1eb7714c08 Mon Sep 17 00:00:00 2001 From: Amirhossein Mahmoodi Date: Mon, 6 Jan 2025 12:40:09 +0330 Subject: [PATCH] add secondary color --- src/core/utils/theme.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/utils/theme.js b/src/core/utils/theme.js index 85c8f68..7cde9e0 100644 --- a/src/core/utils/theme.js +++ b/src/core/utils/theme.js @@ -1,5 +1,6 @@ "use client"; import { createTheme } from "@mui/material"; +import { grey } from '@mui/material/colors'; const theme = createTheme({ direction: "rtl", @@ -16,6 +17,9 @@ const theme = createTheme({ main: "#015688", contrastText: "#fff", }, + secondary: { + main: grey[700], + } }, components: { MuiBackdrop: {