mirror of
https://github.com/johndoe6345789/postgres.git
synced 2026-04-25 14:25:06 +00:00
27 lines
440 B
TypeScript
27 lines
440 B
TypeScript
'use client';
|
|
|
|
import { createTheme } from '@mui/material/styles';
|
|
|
|
export const theme = createTheme({
|
|
palette: {
|
|
mode: 'light',
|
|
primary: {
|
|
main: '#1976d2',
|
|
},
|
|
secondary: {
|
|
main: '#dc004e',
|
|
},
|
|
},
|
|
typography: {
|
|
fontFamily: [
|
|
'-apple-system',
|
|
'BlinkMacSystemFont',
|
|
'"Segoe UI"',
|
|
'Roboto',
|
|
'"Helvetica Neue"',
|
|
'Arial',
|
|
'sans-serif',
|
|
].join(','),
|
|
},
|
|
});
|