From 226516aca48e97d3dc4e4df213bc2023e64b1afd Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 27 Mar 2022 21:29:24 +0200 Subject: Initial commit --- dark.css | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 dark.css (limited to 'dark.css') diff --git a/dark.css b/dark.css new file mode 100644 index 0000000..5774854 --- /dev/null +++ b/dark.css @@ -0,0 +1,62 @@ +@media (prefers-color-scheme: dark) { + body, html { + background: rgb(18, 18, 18) !important; + color: white !important; + } + + #frame-viewer-header { + background: rgba(28, 28, 28, 1) !important; + } + + #frame-viewer-header-play { + color: black !important; + } + + #frame-header, #navigation-outer, #player { + border-color: rgba(255, 255, 255, .25) !important; + } + + .frame-library-item, .frame-library-item-inner, .frame-library-item-set-song-cover, .frame-library-item-set-song-title, #frame-viewer-set, .navigation-item-icon, .player-button-icon, #frame-viewer-header-play, #frame-lyrics-none-icon, #frame-lyrics-play-icon { + filter: invert(1) !important; + } + + #player-seekbar { + background: #ffffff !important; + } + + #player-seekbar::-webkit-slider-thumb { + background: #aaaaaa !important; + } + + #player-seekbar::-moz-range-thumb { + background: #aaaaaa !important; + } + + #player-seekbar::-webkit-slider-thumb:hover { + background: #aaaaaabf !important; + } + + #player-seekbar::-moz-range-thumb:hover { + background: #aaaaaabf !important; + } + + #frame-header, #navigation-outer, #player { + background: rgb(32, 32, 32) !important; + } + + #frame-header:hover, #navigation-outer:hover, #player:hover { + background: rgb(48, 48, 48) !important; + } + + .frame-about-link, .frame-home-link { + filter: contrast(0.3) brightness(2) !important; + } + + #argon-loader { + background: rgb(48, 48, 48) !important; + } + + .loader-path { + stroke: white !important; + } +} \ No newline at end of file -- cgit