1
0
mirror of https://github.com/fazo96/ipfs-boards synced 2025-02-04 16:34:19 +01:00
ipfs-boards/components/theme.js

22 lines
366 B
JavaScript
Raw Permalink Normal View History

2019-10-22 23:38:21 +02:00
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;