Files
navidrome/ui/src/themes/light.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

61 lines
1.3 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',
},
},
NDMobileArtistDetails: {
bgContainer: {
background:
'linear-gradient(to bottom, rgb(255 255 255 / 51%), rgb(250 250 250))!important',
},
},
},
player: {
theme: 'light',
stylesheet: require('./light.css.js'),
},
}