feat: Integrate Material UI theme provider and enhance UI components

This commit is contained in:
2026-01-31 15:36:55 +01:00
parent dc9def4faf
commit be6dc0de60
8 changed files with 222 additions and 139 deletions

13
src/theme.js Normal file
View File

@@ -0,0 +1,13 @@
import { createTheme } from "@mui/material";
const theme = createTheme({
cssVariables: {
colorSchemeSelector: 'class',
},
colorSchemes: {
light: true,
dark: true,
},
});
export default theme;