initial commit
This commit is contained in:
16
front/src/styles/theme/create-theme.js
Normal file
16
front/src/styles/theme/create-theme.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import {experimental_extendTheme as extendTheme} from '@mui/material/styles';
|
||||
import {components} from "./components/components";
|
||||
import shadows from "@mui/material/styles/shadows";
|
||||
import {typography} from "./typography";
|
||||
import {colorSchemes} from "./color-schemes";
|
||||
|
||||
export function createTTheme() {
|
||||
return extendTheme({
|
||||
breakpoints: {values: {xs: 0, sm: 450, md: 600, lg: 900, xl: 1440}},
|
||||
colorSchemes: colorSchemes,
|
||||
components: components,
|
||||
shadows: shadows,
|
||||
shape: {borderRadius: 8},
|
||||
typography: typography,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user