Fully-working settings page editor

This commit is contained in:
Patrick Robertson
2025-02-26 17:02:49 +00:00
parent bb961b131c
commit 70d89c71ce
21 changed files with 6354 additions and 180 deletions

View File

@@ -0,0 +1,20 @@
import { createTheme } from '@mui/material/styles';
import { red } from '@mui/material/colors';
// A custom theme for this app
const theme = createTheme({
cssVariables: true,
palette: {
primary: {
main: '#556cd6',
},
secondary: {
main: '#19857b',
},
error: {
main: red.A400,
},
},
});
export default theme;