diff options
author | RaindropsSys <raindrops@equestria.dev> | 2023-10-24 17:43:37 +0200 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2023-10-24 17:43:37 +0200 |
commit | ae187b6d75c8079da0be1dc288613bad8466fe61 (patch) | |
tree | 5ea0d34185a2270f29ffaa65e1f5258028d7d5d0 /assets/dark.css | |
download | mist-ae187b6d75c8079da0be1dc288613bad8466fe61.tar.gz mist-ae187b6d75c8079da0be1dc288613bad8466fe61.tar.bz2 mist-ae187b6d75c8079da0be1dc288613bad8466fe61.zip |
Initial commit
Diffstat (limited to 'assets/dark.css')
-rw-r--r-- | assets/dark.css | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/assets/dark.css b/assets/dark.css new file mode 100644 index 0000000..e969545 --- /dev/null +++ b/assets/dark.css @@ -0,0 +1,86 @@ +@media (prefers-color-scheme: dark) { + body.crossplatform, #loading { + background-color: black !important; + } + + body { + color: white !important; + } + + .icon { + filter: brightness(0%) invert(1) grayscale(1) !important; + } + + .navigation-item.active, .navigation-item:active { + background-color: rgba(255, 255, 255, .25) !important; + } + + .navigation-item:hover { + background-color: rgba(255, 255, 255, .1); + } + + .album:hover { + background-color: rgba(255, 255, 255, .1); + } + + #player.bg-white { + background-color: black !important; + } + + iframe#player { + border-bottom-color: rgba(255, 255, 255, .25) !important; + } + + .player-btn:hover { + background-color: rgba(255, 255, 255, .1); + } + + .player-btn:active { + background-color: rgba(255, 255, 255, .25); + } + + .desktop-player #album-art[src="/assets/nothing.svg"] { + filter: invert(1); + background-color: rgba(0, 0, 0, .1); + } + + .desktop-player #cover, .desktop-player #info { + border-color: rgba(255, 255, 255, .25) !important; + } + + .text-muted { + color: #666 !important; + } + + #filter, .list-group-item, .btn, .form-check-input, .link { + filter: invert(1) hue-rotate(180deg); + } + + .list-group-item img { + filter: invert(1) hue-rotate(180deg); + } + + .list-group-item .icon { + filter: none !important; + } + + .desktop-player #seekbar-container { + background-color: rgba(255, 255, 255, .1) !important; + } + + .desktop-player #seekbar { + background-color: rgba(255, 255, 255, .25) !important; + } + + #lyrics-synced-fade { + background-image: linear-gradient(rgba(0, 0, 0, 0) 25%, rgb(0, 0, 0) 100%) !important; + } + + #badge-hires .player-badge-desktop, #badge-cd .player-badge-desktop, #badge-lossy .player-badge-desktop { + background-color: black !important; + } + + #lyrics-outer #loading { + background-color: transparent !important; + } +}
\ No newline at end of file |