navidrome/ui/src/layout/Themes.js

30 lines
515 B
JavaScript

// import purple from '@material-ui/core/colors/purple'
export const DarkTheme = {
palette: {
// secondary: purple,
type: 'dark'
}
}
export const LightTheme = {
palette: {
secondary: {
light: '#5f5fc4',
main: '#283593',
dark: '#001064',
contrastText: '#fff'
}
},
overrides: {
MuiFilledInput: {
root: {
backgroundColor: 'rgba(0, 0, 0, 0.04)',
'&$disabled': {
backgroundColor: 'rgba(0, 0, 0, 0.04)'
}
}
}
}
}