mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Add theme Electric Purple (#1889)
* add theme file add theme file electricPurple.js * import theme file import theme file electricPurple * add electricPurple.css.js
This commit is contained in:
parent
77dbafff0f
commit
4209e14208
3 changed files with 96 additions and 0 deletions
39
ui/src/themes/electricPurple.css.js
Normal file
39
ui/src/themes/electricPurple.css.js
Normal file
|
@ -0,0 +1,39 @@
|
|||
module.exports = `
|
||||
|
||||
.react-jinke-music-player-main svg:active, .react-jinke-music-player-main svg:hover {
|
||||
color: #bd4aff;
|
||||
}
|
||||
|
||||
.react-jinke-music-player-main .music-player-panel .panel-content .rc-slider-handle, .react-jinke-music-player-main .music-player-panel .panel-content .rc-slider-track {
|
||||
background-color: #8800cb;
|
||||
}
|
||||
|
||||
.react-jinke-music-player-main ::-webkit-scrollbar-thumb {
|
||||
background-color: #8800cb;
|
||||
}
|
||||
|
||||
.react-jinke-music-player-main .music-player-panel .panel-content .rc-slider-handle:active {
|
||||
box-shadow: 0 0 2px #8800cb;
|
||||
}
|
||||
|
||||
.react-jinke-music-player-main .audio-item.playing svg {
|
||||
color: #8800cb;
|
||||
}
|
||||
|
||||
.react-jinke-music-player-main .audio-item.playing .player-singer {
|
||||
color: #8800cb !important;
|
||||
}
|
||||
|
||||
.audio-lists-panel-content .audio-item.playing, .audio-lists-panel-content .audio-item.playing svg {
|
||||
color: #8800cb;
|
||||
}
|
||||
.audio-lists-panel-content .audio-item:active .group:not([class=".player-delete"]) svg, .audio-lists-panel-content .audio-item:hover .group:not([class=".player-delete"]) svg {
|
||||
color: #8800cb;
|
||||
}
|
||||
|
||||
.react-jinke-music-player-mobile-progress .rc-slider-handle, .react-jinke-music-player-mobile-progress .rc-slider-track {
|
||||
background-color: #8800cb;
|
||||
}
|
||||
|
||||
|
||||
`
|
55
ui/src/themes/electricPurple.js
Normal file
55
ui/src/themes/electricPurple.js
Normal file
|
@ -0,0 +1,55 @@
|
|||
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: require('./electricPurple.css.js'),
|
||||
},
|
||||
}
|
|
@ -5,6 +5,7 @@ import GreenTheme from './green'
|
|||
import SpotifyTheme from './spotify'
|
||||
import LigeraTheme from './ligera'
|
||||
import MonokaiTheme from './monokai'
|
||||
import ElectricPurpleTheme from './electricPurple'
|
||||
|
||||
export default {
|
||||
// Classic default themes
|
||||
|
@ -12,6 +13,7 @@ export default {
|
|||
DarkTheme,
|
||||
|
||||
// New themes should be added here, in alphabetic order
|
||||
ElectricPurpleTheme,
|
||||
ExtraDarkTheme,
|
||||
GreenTheme,
|
||||
LigeraTheme,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue