From b833318ce3f020ffedd2fb4674b0fb85bce3aae3 Mon Sep 17 00:00:00 2001 From: Alex Holliday Date: Mon, 6 May 2024 12:10:16 -0700 Subject: [PATCH] Added a theme and theme provider --- Client/src/Utils/Theme.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Client/src/Utils/Theme.js diff --git a/Client/src/Utils/Theme.js b/Client/src/Utils/Theme.js new file mode 100644 index 000000000..5ad9df5c8 --- /dev/null +++ b/Client/src/Utils/Theme.js @@ -0,0 +1,18 @@ +import { createTheme } from "@mui/material"; + +// Colors for MUI theme +const secondaryMain = "#475467"; +const tertiaryMain = "#475467"; + +const theme = createTheme({ + palette: { + secondary: { + main: secondaryMain, + }, + tertiary: { + main: tertiaryMain, + }, + }, +}); + +export default theme;