Feature/migration

This commit is contained in:
AmirHossein Mahmoodi
2025-05-05 09:57:50 +00:00
parent 18af64b3f6
commit 9bcddb6610
381 changed files with 9465 additions and 12983 deletions

31
src/core/utils/theme.js Normal file
View File

@@ -0,0 +1,31 @@
"use client";
import { createTheme } from "@mui/material";
const theme = createTheme({
direction: "rtl",
typography: {
fontFamily: `IRANSansFaNum, sans-serif`,
fontSize: 12,
},
palette: {
primary: {
main: "#0D47A1",
contrastText: "#fff",
},
secondary: {
main: "#90A4AE",
},
},
components: {
MuiBackdrop: {
styleOverrides: {
root: {
backdropFilter: "blur(2px)",
backgroundColor: "rgba(0, 0, 0, 0.5)",
},
},
},
},
});
export default theme;