Files
navidrome/ui/src/themes/green.js
T
Dnouv 1d742cf8c7 Artist page improvements (#1391)
* Seperate mobile desktop components

* Fix err

* Rename classes and fix some styles

* Add lastFM button and remove console log

* Add Mbiz Icon

* render bio as dangerouslySetInnerHTML and remove unused css classes

* Add Fav and Stars

* Remove unstandardised class selector

* Remove ext link from m view

* Fix naming and simplify rounded styling

* Refactor ArtistShow:

- Extracted DesktopArtistDetails to its own file
- Removed album count as it was incorrect, it is not considering compilations
- Show bio and image from Native API, if it is available, before calling `getArtistInfo`

Co-authored-by: Deluan <deluan@navidrome.org>
2021-10-15 21:02:11 -04:00

41 lines
712 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',
},
},
NDMobileArtistDetails: {
bgContainer: {
background:
'linear-gradient(to bottom, rgba(52 52 52 / 72%), rgb(48 48 48))!important',
},
},
},
player: {
theme: 'dark',
},
}