forked from Nick2bad4u/UserStyles
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path17track.net-DarkMode.user.css
More file actions
43 lines (38 loc) · 890 Bytes
/
17track.net-DarkMode.user.css
File metadata and controls
43 lines (38 loc) · 890 Bytes
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
/* ==UserStyle==
@name 17track.net - Dark Mode
@version 20241115.05.16
@namespace typpi.online
@description 17track.net - Dark Mode!
@homepageURL https://github.com/Nick2bad4u/UserStyles
@supportURL https://github.com/Nick2bad4u/UserStyles/issues
@author Nick2bad4u
@license UnLicense
@var color baseColor "Base Color" #ffffff
==/UserStyle== */
@-moz-document domain("17track.net") {
/* Use the variables for colors */
:root {
--baseColor: var(baseColor);
}
/* Base dark mode filter */
html {
filter: invert(1) hue-rotate(180deg) !important;
background: var(--baseColor);
}
img,
video,
trk-shared-icon > svg > use,
header > nav {
filter: invert(1) hue-rotate(180deg) !important;
}
.up-deals-img,
.up-deals,
.tracklist-details
> .yqcr-action
> .hidden-xs
> .up-deals,
.chart-gpt-text,
.chart-gpt-icon {
display: none;
}
}