import { createTheme } from '@mui/material/styles'; const theme = createTheme({ palette: { mode: 'dark', primary: { main: '#00E0FF', }, background: { default: '#0F111A', paper: '#1B1E2E', }, }, typography: { fontFamily: 'Inter, sans-serif', }, }); export default theme;