initial commit

This commit is contained in:
Kayashov.SM
2026-01-30 20:09:37 +04:00
parent f34a7eced5
commit 1c08be1d07
132 changed files with 24439 additions and 0 deletions

View 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,
});
}