Streams Black Night Mode

Black Mode for your streams

当前为 2024-12-15 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

/* ==UserStyle==
@name         Streams Black Night Mode
@version      20241116.05.46
@namespace    typpi.online
@description  Black Mode for your streams
@homepageURL  https://github.com/Nick2bad4u/UserStyles
@author       Nick2bad4u
@license      UnLicense
==/UserStyle== */

@-moz-document domain("streameast.gd"), domain("1stream.eu"), domain("methstreamer.com"), domain("chatango.com"), domain("methstreams.com") {
	/* General Inversion for Light Backgrounds */
	*,
	a {
		filter: invert(1) hue-rotate(180deg) !important;
		/* Invert and adjust hue */
	}

	/* Exclude Dark Mode Elements */
	*:not(
			[style*='background-color: #121212'],
			[style*='background-color: black']
		) {
		filter: none !important;
		/* Reset filter for dark backgrounds */
	}

	/* Specific Exclusions */
	body,
	#primaryNav,
	#primaryNav > div > div.primary-links > ul {
		background-color: #000 !important;
		/* Ensure body stays dark */
	}

	.dark-mode,
	[class*='dark'],
	[style*='background-color: #121212'],
	[style*='background-color: black'] {
		filter: none !important;
		/* Preserve dark mode elements */
	}
}