session start works

This commit is contained in:
aodulov
2025-10-10 12:48:06 +03:00
parent 556df015e8
commit 3c192b136c
51 changed files with 29002 additions and 46 deletions

21
frontend/src/theme.ts Normal file
View File

@@ -0,0 +1,21 @@
import { createTheme } from '@mui/material/styles';
// A basic theme for the application
const theme = createTheme({
palette: {
primary: {
main: '#6750A4', // A Material Design 3 primary color
},
secondary: {
main: '#958DA5',
},
background: {
default: '#F3F4F6', // A light grey background
},
},
typography: {
fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
},
});
export default theme;