feat(Layout): add custom footer

This commit is contained in:
Ali BARIN
2025-03-10 09:36:40 +00:00
parent 035ed6fee3
commit 91fd10ebda
6 changed files with 157 additions and 1 deletions

View File

@@ -1,10 +1,13 @@
import { deepmerge } from '@mui/utils';
import { createTheme, alpha } from '@mui/material/styles';
import { cardActionAreaClasses } from '@mui/material/CardActionArea';
const referenceTheme = createTheme();
export const primaryMainColor = '#0059F7';
export const primaryLightColor = '#4286FF';
export const primaryDarkColor = '#001F52';
export const defaultTheme = createTheme({
palette: {
primary: {
@@ -57,6 +60,10 @@ export const defaultTheme = createTheme({
paper: '#fff',
default: '#FAFAFA',
},
footer: {
main: '#FFFFFF',
text: '#001F52',
},
},
shape: {
borderRadius: 4,