tampermonkey.net - Dark Mode

Dark mode theme for Tampermonkey

21.01.2025 itibariyledir. En son verisyonu görün.

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

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 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           tampermonkey.net - Dark Mode
@namespace      typpi.online
@version        1.0.5
@description    Dark mode theme for Tampermonkey
@author         Nick2bad4u
@license        UnLicense
@homepageURL    https://github.com/Nick2bad4u/UserStyles
@supportURL     https://github.com/Nick2bad4u/UserStyles/issues
==/UserStyle== */
@-moz-document domain("tampermonkey.net") {
	/* Invert colors except images and videos */
	:is(
		html:not(iframe),
		img,
		svg,
		video,
		.header,
		.mainnav,
		.col-full .row h1,
		.row.md iframe,
		.toc a,
		.changelog .changeset .header .version
	) {
		filter: invert(1) hue-rotate(180deg);
	}

	.header .icon .svg,
	.tab-label > svg,
	.changelog .changeset .header .browsers img {
		filter: unset !important;
	}

	.subnav .tab-label span {
		color: #000 !important;
	}

	.toc a {
		color: #1182a7;
	}
	.changelog .changeset .changes .change .fa,
	.col-full svg {
		fill: #cb8a3e;
	}
}