From cecd66ac8186251615b3476e1dce72ad4f4784bc Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 9 Jul 2023 19:30:37 +0200 Subject: [PATCH] Created the light.js theme --- src/common/themes/light.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/common/themes/light.js diff --git a/src/common/themes/light.js b/src/common/themes/light.js new file mode 100644 index 0000000..5a0cb0e --- /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