mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
40 lines
681 B
JavaScript
40 lines
681 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: '#0085ff',
|
|
},
|
|
icon: {},
|
|
welcome: {
|
|
color: '#eee',
|
|
},
|
|
card: {
|
|
minWidth: 300,
|
|
backgroundColor: '#424242ed',
|
|
},
|
|
avatar: {},
|
|
button: {
|
|
boxShadow: '3px 3px 5px #000000a3',
|
|
},
|
|
},
|
|
},
|
|
player: {
|
|
theme: 'dark',
|
|
stylesheet: require('./dark.css.js'),
|
|
},
|
|
}
|