Created the light.js theme

This commit is contained in:
Mathias Wagner 2023-07-07 01:03:49 +02:00
parent 1098fa64a0
commit 76f870dc69
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,33 @@
import { createTheme } from '@mui/material/styles';
const theme = createTheme({
palette: {
primary: {
main: '#F15732',
dark: '#D13C0F',
},
text: {
main: '#000000',
}
},
typography: {
fontFamily: ["Inter", "sans-serif",].join(",")
},
shape: {
borderRadius: 7,
},
components: {
MuiButton: {
styleOverrides: {
root: {
textTransform: 'none',
fontWeight: 'bold',
fontSize: '1rem',
lineHeight: '1.5rem',
}
}
}
}
});
export default theme;