30 lines
449 B
JavaScript
30 lines
449 B
JavaScript
import blue from '@material-ui/core/colors/blue'
|
|
|
|
export default {
|
|
themeName: 'Dark',
|
|
palette: {
|
|
primary: {
|
|
main: '#90caf9',
|
|
},
|
|
secondary: blue,
|
|
type: 'dark',
|
|
},
|
|
overrides: {
|
|
MuiFormGroup: {
|
|
root: {
|
|
color: 'white',
|
|
},
|
|
},
|
|
NDLogin: {
|
|
systemNameLink: {
|
|
color: '#fff',
|
|
},
|
|
welcome: {
|
|
color: '#eee',
|
|
},
|
|
},
|
|
},
|
|
player: {
|
|
theme: 'dark',
|
|
},
|
|
}
|