How would you change the queue container background with custom CSS? In dark mode it’s this horrible light gray so I’m trying to change it to always be a dark colour in both light and dark mode.
Have tried the following but it’s not working:
.queue-container {
@apply bg-gray-900;
}
Normal CSS behaves the way you’d expect with the colour filter on.
.queue-container {
background: #000; /* white background in dark mode */
}