mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
export default {
|
|
themeName: 'Light',
|
|
palette: {
|
|
secondary: {
|
|
light: '#5f5fc4',
|
|
dark: '#001064',
|
|
main: '#3f51b5',
|
|
contrastText: '#fff',
|
|
},
|
|
},
|
|
overrides: {
|
|
MuiFilledInput: {
|
|
root: {
|
|
backgroundColor: 'rgba(0, 0, 0, 0.04)',
|
|
'&$disabled': {
|
|
backgroundColor: 'rgba(0, 0, 0, 0.04)',
|
|
},
|
|
},
|
|
},
|
|
NDLogin: {
|
|
main: {
|
|
'& .MuiFormLabel-root': {
|
|
color: '#000000',
|
|
},
|
|
'& .MuiFormLabel-root.Mui-focused': {
|
|
color: '#0085ff',
|
|
},
|
|
'& .MuiFormLabel-root.Mui-error': {
|
|
color: '#f44336',
|
|
},
|
|
'& .MuiInput-underline:after': {
|
|
borderBottom: '2px solid #0085ff',
|
|
},
|
|
},
|
|
card: {
|
|
minWidth: 300,
|
|
marginTop: '6em',
|
|
backgroundColor: '#ffffffe6',
|
|
},
|
|
avatar: {},
|
|
icon: {},
|
|
button: {
|
|
boxShadow: '3px 3px 5px #000000a3',
|
|
},
|
|
systemNameLink: {
|
|
color: '#0085ff',
|
|
},
|
|
},
|
|
},
|
|
player: {
|
|
theme: 'light',
|
|
stylesheet: require('./light.css.js'),
|
|
},
|
|
}
|