Newer
Older
import React from 'react'
piotr.kupczyk@id.ethz.ch
committed
import { MuiThemeProvider, createTheme } from '@material-ui/core/styles'
import indigo from '@material-ui/core/colors/indigo'
import lightBlue from '@material-ui/core/colors/lightBlue'
piotr.kupczyk@id.ethz.ch
committed
const config = {
typography: {
piotr.kupczyk@id.ethz.ch
committed
useNextVariants: true,
label: {
piotr.kupczyk@id.ethz.ch
committed
fontSize: '0.7rem',
piotr.kupczyk@id.ethz.ch
committed
color: '#0000008a'
piotr.kupczyk@id.ethz.ch
committed
},
sourceCode: {
fontFamily: '"Fira code", "Fira Mono", monospace'
piotr.kupczyk@id.ethz.ch
committed
}
},
palette: {
primary: {
main: indigo[700]
},
secondary: {
main: lightBlue[600]
},
piotr.kupczyk@id.ethz.ch
committed
info: {
main: lightBlue[600]
},
warning: {
main: '#ff9609'
},
piotr.kupczyk@id.ethz.ch
committed
hint: {
main: '#bdbdbd'
},
background: {
primary: '#ebebeb',
piotr.kupczyk@id.ethz.ch
committed
secondary: '#f5f5f5',
field: '#e8e8e8'
piotr.kupczyk@id.ethz.ch
committed
},
border: {
primary: '#dbdbdb',
piotr.kupczyk@id.ethz.ch
committed
secondary: '#ebebeb',
field: '#878787'
}
}
piotr.kupczyk@id.ethz.ch
committed
}
piotr.kupczyk@id.ethz.ch
committed
const theme = createTheme(config)
piotr.kupczyk@id.ethz.ch
committed
class ThemeProvider extends React.Component {
render() {
return (
<MuiThemeProvider theme={theme}>{this.props.children}</MuiThemeProvider>
)
}
}
piotr.kupczyk@id.ethz.ch
committed
export default ThemeProvider
export { config }