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
|
@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;
}
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: #666 !important;
}
#filter, .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;
}
}
|