Skip to content

Commit

Permalink
feat(client): added (OS-based) dark theme support for playlist and bl…
Browse files Browse the repository at this point in the history
…acklist managers

re #10
  • Loading branch information
will-moss committed Oct 26, 2024
1 parent 4023e7d commit b1b98d1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/BlacklistManager/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,11 @@
font-size: 18px;
color: white;
}
@media (prefers-color-scheme: dark) {
.blacklist-entry {
background: #222;
}
.blacklist-entry .left p {
color: #ddd;
}
}
9 changes: 9 additions & 0 deletions src/components/PlaylistViewer/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,12 @@
font-weight: 600;
height: 18px;
}

@media (prefers-color-scheme: dark) {
.playlists-viewer-entry {
background: #222;
}
.playlists-viewer-entry .left p {
color: #ddd;
}
}

0 comments on commit b1b98d1

Please sign in to comment.