forked from MetaCell/geppetto-nwbexplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
32 lines (24 loc) · 841 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import React from 'react';
import MainTemplate from './pages/MainTemplate';
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
import getMuiTheme from 'material-ui/styles/getMuiTheme';
import { grey500, blueGrey900, grey400 } from 'material-ui/styles/colors';
// list of props here --> https://github.com/mui-org/material-ui/blob/master/src/styles/baseThemes/lightBaseTheme.js
const customTheme = {
palette: {
primary1Color: grey500,
primary2Color: blueGrey900,
primary3Color: '#b0ac9a',
pickerHeaderColor: '#b0ac9a',
}
};
const theme = getMuiTheme(customTheme);
export default class App extends React.Component {
render(){
return (
<MuiThemeProvider muiTheme={theme}>
<MainTemplate />
</MuiThemeProvider>
)
}
}