Spaces:
Runtime error
Runtime error
File size: 1,034 Bytes
945c6bb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
import { Roboto } from "next/font/google";
import { experimental_extendTheme as extendTheme } from "@mui/material/styles";
export const roboto = Roboto({
weight: ["300", "400", "500", "700"],
subsets: ["latin"],
display: "swap",
fallback: ["Helvetica", "Arial", "sans-serif"],
});
/**
* https://mui.com/material-ui/experimental-api/css-theme-variables/customization/
*
* TL;DR
* - specify both dark and light colors at once
* - extendTheme returns a theme for CssVarsProvider, not ThemeProvider
* - CssVarsProvider has a defaultMode property, set to "system" in _app.tsx
*/
const theme = extendTheme({
colorSchemes: {
light: {
palette: {
primary: {
main: "#40088d",
},
secondary: {
main: "#038225",
},
},
},
dark: {
palette: {
primary: {
main: "#00d720",
},
secondary: {
main: "#cc06ed",
},
},
},
},
typography: {
...roboto.style,
},
});
export default theme;
|