add secondary color

This commit is contained in:
Amirhossein Mahmoodi
2025-01-06 12:40:09 +03:30
parent 4747802e8a
commit f37e8aea5f

View File

@@ -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: {