17track.net - Dark Mode

17track.net - Dark Mode!

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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