diff --git a/src/common/themes/light.js b/src/common/themes/light.js new file mode 100644 index 0000000..8913c25 --- /dev/null +++ b/src/common/themes/light.js @@ -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; \ No newline at end of file