17track.net - Dark Mode

17track.net - Dark Mode!

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

/* ==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;
	}
}