fcdd30ba8f
* 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
58 lines
1.0 KiB
JavaScript
58 lines
1.0 KiB
JavaScript
import stylesheet from './electricPurple.css.js'
|
|
|
|
export default {
|
|
themeName: 'Electric Purple',
|
|
palette: {
|
|
primary: {
|
|
light: '#f757ff',
|
|
dark: '#8800cb',
|
|
main: '#bf00ff',
|
|
contrastText: '#fff',
|
|
},
|
|
secondary: {
|
|
light: '#bd4aff',
|
|
dark: '#530099',
|
|
main: '#8800cb',
|
|
contrastText: '#fff',
|
|
},
|
|
warn: {
|
|
light: '#ffff82',
|
|
dark: '#c9bf07',
|
|
main: '#fff14e',
|
|
contrastText: '#000',
|
|
},
|
|
error: {
|
|
light: '#ff763a',
|
|
dark: '#c30000',
|
|
main: '#ff3f00',
|
|
contrastText: '#000',
|
|
},
|
|
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',
|
|
stylesheet,
|
|
},
|
|
}
|