Created the light.js theme
This commit is contained in:
parent
100125ed24
commit
cecd66ac81
33
src/common/themes/light.js
Normal file
33
src/common/themes/light.js
Normal 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;
|
Loading…
x
Reference in New Issue
Block a user