session start works
This commit is contained in:
21
frontend/src/theme.ts
Normal file
21
frontend/src/theme.ts
Normal 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;
|
||||
Reference in New Issue
Block a user