From 76f870dc6928b06e51d5a749ae27c968dd1a88a3 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 7 Jul 2023 01:03:49 +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..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