* 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>
49 lines
927 B
JavaScript
49 lines
927 B
JavaScript
import blue from '@material-ui/core/colors/blue'
|
|
|
|
export default {
|
|
themeName: 'Dark',
|
|
palette: {
|
|
primary: {
|
|
main: '#90caf9',
|
|
},
|
|
secondary: blue,
|
|
type: 'dark',
|
|
},
|
|
overrides: {
|
|
MuiFormGroup: {
|
|
root: {
|
|
color: 'white',
|
|
},
|
|
},
|
|
NDLogin: {
|
|
systemNameLink: {
|
|
color: '#0085ff',
|
|
},
|
|
icon: {},
|
|
welcome: {
|
|
color: '#eee',
|
|
},
|
|
card: {
|
|
minWidth: 300,
|
|
backgroundColor: '#424242ed',
|
|
},
|
|
avatar: {},
|
|
button: {
|
|
boxShadow: '3px 3px 5px #000000a3',
|
|
},
|
|
},
|
|
NDArtistPage: {
|
|
bgContainer: {
|
|
background:
|
|
'linear-gradient(to bottom, rgba(52 52 52 / 72%), rgb(48 48 48))!important',
|
|
},
|
|
more: {
|
|
boxShadow: '-10px 0px 18px 5px #303030!important',
|
|
},
|
|
},
|
|
},
|
|
player: {
|
|
theme: 'dark',
|
|
stylesheet: require('./dark.css.js'),
|
|
},
|
|
}
|