summaryrefslogtreecommitdiff
path: root/assets/dark.css
blob: e9695453fd3068eabba3bcb241078d995e6d0f4c (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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;
    }
}