* feat: create vite project * feat: it's alive! * feat: `make dev` working! * feat: replace custom serviceWorker with vite plugin * test: replace Jest with Vitest * fix: run prettier * fix: skip eslint for now. * chore: remove ui.old folder * refactor: replace lodash.pick with simple destructuring * fix: eslint errors (wip) * fix: eslint errors (wip) * fix: display-name eslint errors (wip) * fix: no-console eslint errors (wip) * fix: react-refresh/only-export-components eslint errors (wip) * fix: react-refresh/only-export-components eslint errors (wip) * fix: react-refresh/only-export-components eslint errors (wip) * fix: react-refresh/only-export-components eslint errors (wip) * fix: build * fix: pwa manifest * refactor: pwa manifest * refactor: simplify PORT configuration * refactor: rename simple JS files * test: cover playlistUtils * fix: react-image-lightbox * feat(ui): add sourcemaps to help debug issues
62 lines
1.3 KiB
JavaScript
62 lines
1.3 KiB
JavaScript
import stylesheet from './light.css.js'
|
|
|
|
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,
|
|
},
|
|
}
|