summaryrefslogtreecommitdiff
path: root/dark.css
blob: 5774854d6d10da0169c197558c1c025e9ae318a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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;
    }
}