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.
47 lines
886 B
47 lines
886 B
import createMuiTheme, { Theme } from '@material-ui/core/styles/createMuiTheme'; |
|
import { |
|
PANEL_BACKGROUND, |
|
TEXT, |
|
PURPLE_OFF, |
|
BLUE, |
|
} from '../lib/consts/DEFAULT_THEME'; |
|
|
|
const theme: Theme = createMuiTheme({ |
|
palette: { |
|
primary: { |
|
main: PANEL_BACKGROUND, |
|
}, |
|
secondary: { |
|
main: TEXT, |
|
}, |
|
background: { |
|
paper: PANEL_BACKGROUND, |
|
}, |
|
}, |
|
typography: { |
|
fontFamily: 'Roboto Condensed', |
|
fontWeightRegular: 200, |
|
fontSize: 14, |
|
}, |
|
overrides: { |
|
MuiSwitch: { |
|
root: { |
|
padding: 8, |
|
}, |
|
track: { |
|
borderRadius: 0, |
|
backgroundColor: PURPLE_OFF, |
|
'$checked$checked + &': { |
|
// Controls checked color for the track |
|
backgroundColor: BLUE, |
|
}, |
|
}, |
|
thumb: { |
|
color: TEXT, |
|
borderRadius: 0, |
|
}, |
|
}, |
|
}, |
|
}); |
|
|
|
export default theme;
|
|
|