mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-20 00:29:45 -06:00
Added a theme and theme provider
This commit is contained in:
18
Client/src/Utils/Theme.js
Normal file
18
Client/src/Utils/Theme.js
Normal file
@@ -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;
|
||||
Reference in New Issue
Block a user