This commit is contained in:
Amirhossein Mahmoodi
2024-07-08 15:45:39 +03:30
parent 20a0b2984c
commit 6288ac926c
14 changed files with 853 additions and 403 deletions

View File

@@ -1,5 +1,5 @@
'use client'
import {createTheme} from "@mui/material";
import { createTheme } from "@mui/material";
const theme = createTheme({
direction: 'rtl',
@@ -7,6 +7,16 @@ const theme = createTheme({
fontFamily: `IRANSansFaNum, sans-serif`,
fontSize: 12
},
palette: {
primary: {
main: '#2070af',
contrastText: '#fff'
},
primary2: {
main: '#015688',
contrastText: '#fff'
},
}
});
export default theme