personal-dash-cl/claudash/src/theme.js
2026-02-12 02:56:06 -05:00

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' },
},
});