You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
625 B
36 lines
625 B
4 years ago
|
import createMuiTheme, { Theme } from '@material-ui/core/styles/createMuiTheme';
|
||
|
import { PANEL_BACKGROUND } from '../lib/consts/DEFAULT_THEME';
|
||
|
|
||
|
const theme: Theme = createMuiTheme({
|
||
|
palette: {
|
||
|
primary: {
|
||
|
main: '#343434',
|
||
|
light: '#3E78B2',
|
||
|
},
|
||
|
secondary: {
|
||
|
main: '#343434',
|
||
|
},
|
||
|
background: {
|
||
|
paper: PANEL_BACKGROUND,
|
||
|
},
|
||
|
},
|
||
|
typography: {
|
||
|
fontSize: 14,
|
||
|
},
|
||
|
overrides: {
|
||
|
MuiSwitch: {
|
||
|
root: {
|
||
|
padding: 8,
|
||
|
},
|
||
|
track: {
|
||
|
borderRadius: 0,
|
||
|
},
|
||
|
thumb: {
|
||
|
borderRadius: 0,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export default theme;
|