mirror of
https://github.com/fazo96/ipfs-boards
synced 2025-01-26 15:04:19 +01:00
22 lines
366 B
JavaScript
22 lines
366 B
JavaScript
|
import { createMuiTheme } from '@material-ui/core/styles';
|
||
|
import { red } from '@material-ui/core/colors';
|
||
|
|
||
|
const theme = createMuiTheme({
|
||
|
palette: {
|
||
|
primary: {
|
||
|
main: '#556cd6',
|
||
|
},
|
||
|
secondary: {
|
||
|
main: '#19857b',
|
||
|
},
|
||
|
error: {
|
||
|
main: red.A400,
|
||
|
},
|
||
|
background: {
|
||
|
default: '#fff',
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export default theme;
|