mirror of
https://github.com/navidrome/navidrome.git
synced 2025-05-19 11:36:37 +03:00
* [Theme] Allow customising album and player parts * [Theme] Allow customizing song lists view * Make spotify-ish more spotify-ish * Fix responsive issues in spotify-ish * Spotify-ish login page * Add back the previous "Spotify-ish" theme as "Green" Co-authored-by: Deluan <deluan@navidrome.org>
35 lines
539 B
JavaScript
35 lines
539 B
JavaScript
import green from '@material-ui/core/colors/green'
|
|
|
|
export default {
|
|
themeName: 'Green',
|
|
palette: {
|
|
primary: {
|
|
light: green['300'],
|
|
main: green['500'],
|
|
},
|
|
secondary: {
|
|
main: green['900'],
|
|
contrastText: '#fff',
|
|
},
|
|
type: 'dark',
|
|
},
|
|
overrides: {
|
|
MuiFormGroup: {
|
|
root: {
|
|
color: 'white',
|
|
},
|
|
},
|
|
NDLogin: {
|
|
systemNameLink: {
|
|
color: '#fff',
|
|
},
|
|
welcome: {
|
|
color: '#eee',
|
|
},
|
|
},
|
|
},
|
|
player: {
|
|
theme: 'dark',
|
|
},
|
|
}
|