userscript.zone - Dark Mode

Dark theme for UserScript.zone

目前為 2024-12-25 提交的版本,檢視 最新版本

/* ==UserStyle==
@name           userscript.zone - Dark Mode
@namespace      typpi.online
@version        1.0.1
@description    Dark theme for UserScript.zone
@author         Nick2bad4u
@license        UnLicense
@homepageURL    https://github.com/Nick2bad4u/UserStyles
==/UserStyle== */
@-moz-document domain("userscript.zone") {
	/* Invert colors except images and videos */
	:is(
		html:not([stylus-iframe]),
		img,
		svg,
		video
	) {
		filter: invert(1) hue-rotate(180deg) !important;
		background: #fff;
		color: #000;
	}
}