papertrails.io - Dark Mode

Dark theme for PaperTrails.io

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 or Violentmonkey 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           papertrails.io - Dark Mode
@namespace      typpi.online
@version        1.0.4
@description    Dark theme for PaperTrails.io
@author         Nick2bad4u
@license        UnLicense
@homepageURL    https://github.com/Nick2bad4u/UserStyles
@supportURL     https://github.com/Nick2bad4u/UserStyles/issues

@var color background-color "Background Color" #000000
@var color text-color "Text Color" #ffffff
==/UserStyle== */
@-moz-document domain("papertrails.io") {
	:root {
		--background-color: var(background-color);
		--text-color: var(text-color);
	}

	html,
	.kzrxpN .print-container,
	#root,
	.kzrxpN .sc-cLQEGU,
	.kzrxpN .sc-dVhcbM,
	.kzrxpN .mobile-actions,
	.kzrxpN .map-actions,
	.kzrxpN .mobile-actions .sc-dliRfk,
	.kzrxpN .sc-hMFtBS .inner,
	button,
	.maYvJ,
	article,
	footer {
		background: var(--background-color) !important;
		color: var(--text-color) !important;
	}
	button {
		border-radius: 20px;
	}
}