feat(ui): add Dracula theme (#5023)
Signed-off-by: Paul Becker <p@becker.kiwi>
This commit is contained in:
@@ -0,0 +1,181 @@
|
|||||||
|
const stylesheet = `
|
||||||
|
|
||||||
|
/* Icon hover: pink */
|
||||||
|
.react-jinke-music-player-main svg:active, .react-jinke-music-player-main svg:hover {
|
||||||
|
color: #ff79c6
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Progress bar: purple */
|
||||||
|
.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: #bd93f9
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Volume bar: green */
|
||||||
|
.sound-operation .rc-slider-handle, .sound-operation .rc-slider-track {
|
||||||
|
background-color: #50fa7b !important
|
||||||
|
}
|
||||||
|
|
||||||
|
.sound-operation .rc-slider-handle:active {
|
||||||
|
box-shadow: 0 0 2px #50fa7b !important
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Scrollbar: comment */
|
||||||
|
.react-jinke-music-player-main ::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #6272a4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-jinke-music-player-main .music-player-panel .panel-content .rc-slider-handle:active {
|
||||||
|
box-shadow: 0 0 2px #bd93f9
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Now playing icon: cyan */
|
||||||
|
.react-jinke-music-player-main .audio-item.playing svg {
|
||||||
|
color: #8be9fd
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Now playing artist: cyan */
|
||||||
|
.react-jinke-music-player-main .audio-item.playing .player-singer {
|
||||||
|
color: #8be9fd !important
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Loading spinner: orange */
|
||||||
|
.react-jinke-music-player-main .loading svg {
|
||||||
|
color: #ffb86c !important
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-jinke-music-player-main .music-player-panel .panel-content .rc-slider-handle {
|
||||||
|
border: hidden;
|
||||||
|
box-shadow: rgba(20, 21, 28, 0.25) 0px 4px 6px, rgba(20, 21, 28, 0.1) 0px 5px 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rc-slider-rail, .rc-slider-track {
|
||||||
|
height: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rc-slider {
|
||||||
|
padding: 3px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sound-operation > div:nth-child(4) {
|
||||||
|
transform: translateX(-50%) translateY(5%) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sound-operation {
|
||||||
|
padding: 4px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Player panel background */
|
||||||
|
.react-jinke-music-player-main .music-player-panel {
|
||||||
|
background-color: #282a36;
|
||||||
|
color: #f8f8f2;
|
||||||
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Song title in player: foreground */
|
||||||
|
.react-jinke-music-player-main .music-player-panel .panel-content .player-content .audio-title {
|
||||||
|
color: #f8f8f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Duration/time text: yellow */
|
||||||
|
.react-jinke-music-player-main .music-player-panel .panel-content .player-content .duration, .react-jinke-music-player-main .music-player-panel .panel-content .player-content .current-time {
|
||||||
|
color: #f1fa8c
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Audio list panel */
|
||||||
|
.audio-lists-panel {
|
||||||
|
background-color: #282a36;
|
||||||
|
bottom: 6.25rem;
|
||||||
|
box-shadow: rgba(20, 21, 28, 0.25) 0px 4px 6px, rgba(20, 21, 28, 0.1) 0px 5px 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-lists-panel-content .audio-item.playing {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-lists-panel-content .audio-item:nth-child(2n+1) {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Playlist hover: current line */
|
||||||
|
.audio-lists-panel-content .audio-item:active,
|
||||||
|
.audio-lists-panel-content .audio-item:hover {
|
||||||
|
background-color: #44475a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-lists-panel-header {
|
||||||
|
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Playlist header text: orange */
|
||||||
|
.audio-lists-panel-header-title {
|
||||||
|
color: #ffb86c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-jinke-music-player-main .music-player-panel .panel-content .player-content .audio-lists-btn {
|
||||||
|
background-color: transparent;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-lists-panel-content .audio-item {
|
||||||
|
line-height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-jinke-music-player-main .music-player-panel .panel-content .img-content {
|
||||||
|
box-shadow: rgba(20, 21, 28, 0.25) 0px 4px 6px, rgba(20, 21, 28, 0.1) 0px 5px 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Lyrics: yellow */
|
||||||
|
.react-jinke-music-player-main .music-player-lyric {
|
||||||
|
color: #f1fa8c;
|
||||||
|
-webkit-text-stroke: 0.5px #282a36;
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Lyric button active: yellow */
|
||||||
|
.react-jinke-music-player-main .lyric-btn-active, .react-jinke-music-player-main .lyric-btn-active svg {
|
||||||
|
color: #f1fa8c !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Playlist now playing: cyan */
|
||||||
|
.audio-lists-panel-content .audio-item.playing, .audio-lists-panel-content .audio-item.playing svg {
|
||||||
|
color: #8be9fd
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Playlist hover icons: pink */
|
||||||
|
.audio-lists-panel-content .audio-item:active .group:not(.player-delete) svg, .audio-lists-panel-content .audio-item:hover .group:not(.player-delete) svg {
|
||||||
|
color: #ff79c6
|
||||||
|
}
|
||||||
|
|
||||||
|
.audio-lists-panel-content .audio-item .player-icons {
|
||||||
|
scale: 75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mobile */
|
||||||
|
|
||||||
|
.react-jinke-music-player-mobile-cover {
|
||||||
|
border: none;
|
||||||
|
box-shadow: rgba(20, 21, 28, 0.25) 0px 4px 6px, rgba(20, 21, 28, 0.1) 0px 5px 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-jinke-music-player .music-player-controller {
|
||||||
|
border: none;
|
||||||
|
box-shadow: rgba(20, 21, 28, 0.25) 0px 4px 6px, rgba(20, 21, 28, 0.1) 0px 5px 7px;
|
||||||
|
color: #bd93f9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-jinke-music-player .music-player-controller .music-player-controller-setting {
|
||||||
|
color: rgba(189, 147, 249, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mobile progress: green */
|
||||||
|
.react-jinke-music-player-mobile-progress .rc-slider-handle, .react-jinke-music-player-mobile-progress .rc-slider-track {
|
||||||
|
background-color: #50fa7b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-jinke-music-player-mobile-progress .rc-slider-handle {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
`
|
||||||
|
|
||||||
|
export default stylesheet
|
||||||
@@ -0,0 +1,397 @@
|
|||||||
|
import stylesheet from './dracula.css.js'
|
||||||
|
|
||||||
|
// Dracula color palette
|
||||||
|
const background = '#282a36'
|
||||||
|
const currentLine = '#44475a'
|
||||||
|
const foreground = '#f8f8f2'
|
||||||
|
const comment = '#6272a4'
|
||||||
|
const cyan = '#8be9fd'
|
||||||
|
const green = '#50fa7b'
|
||||||
|
const pink = '#ff79c6'
|
||||||
|
const purple = '#bd93f9'
|
||||||
|
const orange = '#ffb86c'
|
||||||
|
const red = '#ff5555'
|
||||||
|
const yellow = '#f1fa8c'
|
||||||
|
|
||||||
|
// Darker shade for surfaces
|
||||||
|
const surface = '#21222c'
|
||||||
|
|
||||||
|
// For Album, Playlist play button
|
||||||
|
const musicListActions = {
|
||||||
|
alignItems: 'center',
|
||||||
|
'@global': {
|
||||||
|
'button:first-child:not(:only-child)': {
|
||||||
|
'@media screen and (max-width: 720px)': {
|
||||||
|
transform: 'scale(1.5)',
|
||||||
|
margin: '1rem',
|
||||||
|
'&:hover': {
|
||||||
|
transform: 'scale(1.6) !important',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
transform: 'scale(2)',
|
||||||
|
margin: '1.5rem',
|
||||||
|
minWidth: 0,
|
||||||
|
padding: 5,
|
||||||
|
transition: 'transform .3s ease',
|
||||||
|
backgroundColor: `${green} !important`,
|
||||||
|
color: background,
|
||||||
|
borderRadius: 500,
|
||||||
|
border: 0,
|
||||||
|
'&:hover': {
|
||||||
|
transform: 'scale(2.1)',
|
||||||
|
backgroundColor: `${green} !important`,
|
||||||
|
border: 0,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'button:only-child': {
|
||||||
|
margin: '1.5rem',
|
||||||
|
},
|
||||||
|
'button:first-child>span:first-child': {
|
||||||
|
padding: 0,
|
||||||
|
},
|
||||||
|
'button:first-child>span:first-child>span': {
|
||||||
|
display: 'none',
|
||||||
|
},
|
||||||
|
'button>span:first-child>span, button:not(:first-child)>span:first-child>svg':
|
||||||
|
{
|
||||||
|
color: foreground,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
themeName: 'Dracula',
|
||||||
|
palette: {
|
||||||
|
primary: {
|
||||||
|
main: purple,
|
||||||
|
},
|
||||||
|
secondary: {
|
||||||
|
main: currentLine,
|
||||||
|
contrastText: foreground,
|
||||||
|
},
|
||||||
|
error: {
|
||||||
|
main: red,
|
||||||
|
},
|
||||||
|
type: 'dark',
|
||||||
|
background: {
|
||||||
|
default: background,
|
||||||
|
paper: surface,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
overrides: {
|
||||||
|
MuiPaper: {
|
||||||
|
root: {
|
||||||
|
color: foreground,
|
||||||
|
backgroundColor: surface,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiAppBar: {
|
||||||
|
positionFixed: {
|
||||||
|
backgroundColor: `${currentLine} !important`,
|
||||||
|
boxShadow:
|
||||||
|
'rgba(20, 21, 28, 0.25) 0px 4px 6px, rgba(20, 21, 28, 0.1) 0px 5px 7px',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiDrawer: {
|
||||||
|
root: {
|
||||||
|
background: background,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiButton: {
|
||||||
|
textPrimary: {
|
||||||
|
color: purple,
|
||||||
|
},
|
||||||
|
textSecondary: {
|
||||||
|
color: foreground,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiIconButton: {
|
||||||
|
root: {
|
||||||
|
color: foreground,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiChip: {
|
||||||
|
root: {
|
||||||
|
backgroundColor: currentLine,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiFormGroup: {
|
||||||
|
root: {
|
||||||
|
color: foreground,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiFormLabel: {
|
||||||
|
root: {
|
||||||
|
color: comment,
|
||||||
|
'&$focused': {
|
||||||
|
color: purple,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiToolbar: {
|
||||||
|
root: {
|
||||||
|
backgroundColor: `${surface} !important`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiOutlinedInput: {
|
||||||
|
root: {
|
||||||
|
'& $notchedOutline': {
|
||||||
|
borderColor: currentLine,
|
||||||
|
},
|
||||||
|
'&:hover $notchedOutline': {
|
||||||
|
borderColor: comment,
|
||||||
|
},
|
||||||
|
'&$focused $notchedOutline': {
|
||||||
|
borderColor: purple,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiFilledInput: {
|
||||||
|
root: {
|
||||||
|
backgroundColor: currentLine,
|
||||||
|
'&:hover': {
|
||||||
|
backgroundColor: comment,
|
||||||
|
},
|
||||||
|
'&$focused': {
|
||||||
|
backgroundColor: currentLine,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiTableRow: {
|
||||||
|
root: {
|
||||||
|
transition: 'background-color .3s ease',
|
||||||
|
'&:hover': {
|
||||||
|
backgroundColor: `${currentLine} !important`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiTableHead: {
|
||||||
|
root: {
|
||||||
|
color: foreground,
|
||||||
|
background: surface,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiTableCell: {
|
||||||
|
root: {
|
||||||
|
color: foreground,
|
||||||
|
background: `${surface} !important`,
|
||||||
|
borderBottom: `1px solid ${currentLine}`,
|
||||||
|
},
|
||||||
|
head: {
|
||||||
|
color: `${yellow} !important`,
|
||||||
|
background: `${currentLine} !important`,
|
||||||
|
},
|
||||||
|
body: {
|
||||||
|
color: `${foreground} !important`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiSwitch: {
|
||||||
|
colorSecondary: {
|
||||||
|
'&$checked': {
|
||||||
|
color: green,
|
||||||
|
},
|
||||||
|
'&$checked + $track': {
|
||||||
|
backgroundColor: green,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
NDAlbumGridView: {
|
||||||
|
albumName: {
|
||||||
|
marginTop: '0.5rem',
|
||||||
|
fontWeight: 700,
|
||||||
|
color: foreground,
|
||||||
|
},
|
||||||
|
albumSubtitle: {
|
||||||
|
color: comment,
|
||||||
|
},
|
||||||
|
albumContainer: {
|
||||||
|
backgroundColor: surface,
|
||||||
|
borderRadius: '8px',
|
||||||
|
padding: '.75rem',
|
||||||
|
transition: 'background-color .3s ease',
|
||||||
|
'&:hover': {
|
||||||
|
backgroundColor: currentLine,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
albumPlayButton: {
|
||||||
|
backgroundColor: green,
|
||||||
|
borderRadius: '50%',
|
||||||
|
boxShadow: '0 8px 8px rgb(0 0 0 / 30%)',
|
||||||
|
padding: '0.35rem',
|
||||||
|
transition: 'padding .3s ease',
|
||||||
|
'&:hover': {
|
||||||
|
background: `${green} !important`,
|
||||||
|
padding: '0.45rem',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
NDPlaylistDetails: {
|
||||||
|
container: {
|
||||||
|
background: `linear-gradient(${currentLine}, transparent)`,
|
||||||
|
borderRadius: 0,
|
||||||
|
paddingTop: '2.5rem !important',
|
||||||
|
boxShadow: 'none',
|
||||||
|
},
|
||||||
|
title: {
|
||||||
|
fontWeight: 700,
|
||||||
|
color: foreground,
|
||||||
|
},
|
||||||
|
details: {
|
||||||
|
fontSize: '.875rem',
|
||||||
|
color: comment,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
NDAlbumDetails: {
|
||||||
|
root: {
|
||||||
|
background: `linear-gradient(${currentLine}, transparent)`,
|
||||||
|
borderRadius: 0,
|
||||||
|
boxShadow: 'none',
|
||||||
|
},
|
||||||
|
cardContents: {
|
||||||
|
alignItems: 'center',
|
||||||
|
paddingTop: '1.5rem',
|
||||||
|
},
|
||||||
|
recordName: {
|
||||||
|
fontWeight: 700,
|
||||||
|
color: foreground,
|
||||||
|
},
|
||||||
|
recordArtist: {
|
||||||
|
fontSize: '.875rem',
|
||||||
|
fontWeight: 700,
|
||||||
|
color: pink,
|
||||||
|
},
|
||||||
|
recordMeta: {
|
||||||
|
fontSize: '.875rem',
|
||||||
|
color: comment,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
NDCollapsibleComment: {
|
||||||
|
commentBlock: {
|
||||||
|
fontSize: '.875rem',
|
||||||
|
color: comment,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
NDAlbumShow: {
|
||||||
|
albumActions: musicListActions,
|
||||||
|
},
|
||||||
|
NDPlaylistShow: {
|
||||||
|
playlistActions: musicListActions,
|
||||||
|
},
|
||||||
|
NDAudioPlayer: {
|
||||||
|
audioTitle: {
|
||||||
|
color: foreground,
|
||||||
|
fontSize: '0.875rem',
|
||||||
|
},
|
||||||
|
songTitle: {
|
||||||
|
fontWeight: 400,
|
||||||
|
},
|
||||||
|
songInfo: {
|
||||||
|
fontSize: '0.675rem',
|
||||||
|
color: comment,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
NDLogin: {
|
||||||
|
systemNameLink: {
|
||||||
|
color: purple,
|
||||||
|
},
|
||||||
|
welcome: {
|
||||||
|
color: foreground,
|
||||||
|
},
|
||||||
|
card: {
|
||||||
|
minWidth: 300,
|
||||||
|
background: background,
|
||||||
|
},
|
||||||
|
button: {
|
||||||
|
boxShadow: '3px 3px 5px #191a21',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
NDMobileArtistDetails: {
|
||||||
|
bgContainer: {
|
||||||
|
background: `linear-gradient(to bottom, rgba(40 42 54 / 72%), ${surface})!important`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
RaLayout: {
|
||||||
|
content: {
|
||||||
|
padding: '0 !important',
|
||||||
|
background: surface,
|
||||||
|
},
|
||||||
|
root: {
|
||||||
|
backgroundColor: background,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
RaList: {
|
||||||
|
content: {
|
||||||
|
backgroundColor: surface,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
RaListToolbar: {
|
||||||
|
toolbar: {
|
||||||
|
backgroundColor: background,
|
||||||
|
padding: '0 .55rem !important',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
RaSidebar: {
|
||||||
|
fixed: {
|
||||||
|
backgroundColor: background,
|
||||||
|
},
|
||||||
|
drawerPaper: {
|
||||||
|
backgroundColor: `${background} !important`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
MuiTableSortLabel: {
|
||||||
|
root: {
|
||||||
|
color: `${yellow} !important`,
|
||||||
|
'&:hover': {
|
||||||
|
color: `${orange} !important`,
|
||||||
|
},
|
||||||
|
'&$active': {
|
||||||
|
color: `${orange} !important`,
|
||||||
|
'&& $icon': {
|
||||||
|
color: `${orange} !important`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
RaMenuItemLink: {
|
||||||
|
root: {
|
||||||
|
color: foreground,
|
||||||
|
'&[aria-current="page"]': {
|
||||||
|
color: `${pink} !important`,
|
||||||
|
},
|
||||||
|
'&[aria-current="page"] .MuiListItemIcon-root': {
|
||||||
|
color: `${pink} !important`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
active: {
|
||||||
|
color: `${pink} !important`,
|
||||||
|
'& .MuiListItemIcon-root': {
|
||||||
|
color: `${pink} !important`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
RaLink: {
|
||||||
|
link: {
|
||||||
|
color: cyan,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
RaButton: {
|
||||||
|
button: {
|
||||||
|
margin: '0 5px 0 5px',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
RaPaginationActions: {
|
||||||
|
currentPageButton: {
|
||||||
|
border: `2px solid ${purple}`,
|
||||||
|
},
|
||||||
|
button: {
|
||||||
|
backgroundColor: currentLine,
|
||||||
|
minWidth: 48,
|
||||||
|
margin: '0 4px',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
player: {
|
||||||
|
theme: 'dark',
|
||||||
|
stylesheet,
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -9,6 +9,7 @@ import ElectricPurpleTheme from './electricPurple'
|
|||||||
import NordTheme from './nord'
|
import NordTheme from './nord'
|
||||||
import GruvboxDarkTheme from './gruvboxDark'
|
import GruvboxDarkTheme from './gruvboxDark'
|
||||||
import CatppuccinMacchiatoTheme from './catppuccinMacchiato'
|
import CatppuccinMacchiatoTheme from './catppuccinMacchiato'
|
||||||
|
import DraculaTheme from './dracula'
|
||||||
import NuclearTheme from './nuclear'
|
import NuclearTheme from './nuclear'
|
||||||
import AmusicTheme from './amusic'
|
import AmusicTheme from './amusic'
|
||||||
import SquiddiesGlassTheme from './SquiddiesGlass'
|
import SquiddiesGlassTheme from './SquiddiesGlass'
|
||||||
@@ -22,6 +23,7 @@ export default {
|
|||||||
// New themes should be added here, in alphabetic order
|
// New themes should be added here, in alphabetic order
|
||||||
AmusicTheme,
|
AmusicTheme,
|
||||||
CatppuccinMacchiatoTheme,
|
CatppuccinMacchiatoTheme,
|
||||||
|
DraculaTheme,
|
||||||
ElectricPurpleTheme,
|
ElectricPurpleTheme,
|
||||||
ExtraDarkTheme,
|
ExtraDarkTheme,
|
||||||
GreenTheme,
|
GreenTheme,
|
||||||
|
|||||||
Reference in New Issue
Block a user