quiniela-sembradores-frontend/src/theme.ts

12 lines
No EOL
210 B
TypeScript

'use client';
import { createTheme } from '@mui/material/styles'
const theme = createTheme({
cssVariables: true,
typography: {
fontFamily: 'var(--font-roboto)',
}
});
export default theme