demo / src /theme.ts
kevinloffler
initial commit
e6a9f90
raw
history blame contribute delete
235 Bytes
import { createTheme } from '@mui/material/styles';
const theme = createTheme({
palette: {
primary: {
main: '#5f6264', // Replace with your desired color (hex, RGB, or MUI color name)
},
},
});
export default theme;