basic style & add mui and aos & banner style
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
'use client';
|
||||
import { createTheme } from '@mui/material/styles';
|
||||
|
||||
const theme = createTheme({
|
||||
direction: 'rtl',
|
||||
typography: {
|
||||
fontFamily: 'iran-sans',
|
||||
},
|
||||
components: {
|
||||
MuiButton: {
|
||||
styleOverrides: {
|
||||
root: {
|
||||
whiteSpace: 'nowrap',
|
||||
minWidth: '0',
|
||||
padding: '9px 18px',
|
||||
fontSize: '16px',
|
||||
fontStyle: 'normal',
|
||||
fontWeight: '500',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
palette: {
|
||||
primary: {
|
||||
main: "#526CAC",
|
||||
contrastText: "#EFEFEF",
|
||||
},
|
||||
secondary: {
|
||||
main: "#2F7BC6",
|
||||
contrastText: "#FFF",
|
||||
},
|
||||
success: {
|
||||
main: "#FFB800",
|
||||
contrastText: "#FFF",
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
export default theme;
|
||||
Reference in New Issue
Block a user