32 lines
No EOL
619 B
JavaScript
32 lines
No EOL
619 B
JavaScript
import { createTheme } from '@mui/material/styles';
|
|
|
|
const sharedTheme = {
|
|
typography: {
|
|
fontFamily: '"Inter", "Roboto", "Helvetica", "Arial", sans-serif',
|
|
},
|
|
shape: {
|
|
borderRadius: 8,
|
|
},
|
|
};
|
|
|
|
export const darkTheme = createTheme({
|
|
...sharedTheme,
|
|
palette: {
|
|
mode: 'dark',
|
|
primary: { main: '#90caf9' },
|
|
secondary: { main: '#f48fb1' },
|
|
background: {
|
|
default: '#0a1929',
|
|
paper: '#1e2a35',
|
|
},
|
|
},
|
|
});
|
|
|
|
export const lightTheme = createTheme({
|
|
...sharedTheme,
|
|
palette: {
|
|
mode: 'light',
|
|
primary: { main: '#1976d2' },
|
|
secondary: { main: '#dc004e' },
|
|
},
|
|
}); |