summaryrefslogtreecommitdiff
path: root/assets/dark.css
blob: 21ec30821d5e03a2ff6cfbf2b61ab1d27f61ead0 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
@media (prefers-color-scheme: dark) {
    body.web, body.navigation-body, #loading, div#player.bg-white {
        background-color: #222 !important;
    }

    body.native #lyrics-page {
        top: calc(65px + var(--android-status-bar)) !important;
        background-color: black !important;
    }

    iframe#lyrics-page.mobile-show {
        background-color: transparent !important;
    }

    .crossplatform {
        background-color: black !important;
    }

    .track:hover {
        background-color: #151515 !important;
    }

    body {
        color: white !important;
    }

    .icon {
        filter: brightness(0%) invert(1) grayscale(1) !important;
    }

    div.navigation-item.active, div.navigation-item:active {
        background-color: rgba(255, 255, 255, .25) !important;
    }

    .navigation-item:hover {
        background-color: rgba(255, 255, 255, .1) !important;
    }

    .album:hover {
        background-color: rgba(255, 255, 255, .1) !important;
    }

    #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) !important;
    }

    .player-btn:active {
        background-color: rgba(255, 255, 255, .25) !important;
    }

    .dropdown-menu {
        filter: invert(1) hue-rotate(180deg);
    }

    .dropdown-item:hover {
        background-color: rgba(0, 0, 0, .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: #aaa !important;
    }

    #favorites-user-select {
        filter: invert(1) !important;
    }

    #filter, #search, .btn, .form-check-input, .link, .btn-close {
        filter: invert(1) hue-rotate(180deg);
    }

    .list-group-item .icon {
        filter: invert(1) !important;
    }

    .list-group-item {
        background: #050505;
        color: white;
        border-color: #333;
    }

    .dropdown-menu.show {
        z-index: 999999 !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;
    }

    body.web {
        background-color: black !important;
    }

    .dropdown-item img {
        filter: none !important;
    }


    .modal-header {
        border-bottom: 1px solid #353738;
    }

    .modal-content {
        border: 1px solid rgba(255, 255, 255, .2);
        background-color: #111;
    }

    .list-group-item-action:hover {
        color: inherit;
        background-color: #151515;
    }

    .list-group-item-action:active {
        color: inherit;
        background-color: #252525;
    }

    #ui-navigation {
        background-color: rgba(0, 0, 0, .5) !important;
    }
}