quintodrome/ui/src/themes/light.js
Dnouv 482c2dec0c
Artist Detail Page (first cut) (#1287)
* Configure fetching from API and route

* pretty

* Remove errors

* Remove errors

* Remove errors

* Complete page for Desktop view

* Fix error

* Add xs Artist page

* Remove unused import

* Add styles for theme

* Change route path

* Remove artId useEffect array

* Remove array

* Fix cover load err

* Add redirect on err

* Remove route

* What's in a name? consistency :)

* Fix err

* Fix UI changes

* Fetch album from resource

* Renaming done

* Review changes

* Some touch-up

* Small refactor, to make naming and structure more consistent with AlbumShow

* Make artist's album list similar to original implementation

* Reuse AlbumGridView, to avoid duplication

* Add feature flag to enable new Artist Page, default false

* Better biography styling. Small refactorings,

* Don't encode quotes and other symbols

* Moved AlbumShow to correct folder

Co-authored-by: Deluan <deluan@navidrome.org>
2021-09-26 15:32:40 -04:00

63 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',
},
},
NDArtistPage: {
bgContainer: {
background:
'linear-gradient(to bottom, rgb(255 255 255 / 51%), rgb(250 250 250))!important',
},
more: {
boxShadow: '-10px 0px 18px 5px #fafafa!important',
},
},
},
player: {
theme: 'light',
stylesheet: require('./light.css.js'),
},
}