benjdd.com - Dark Mode [Customizable]

Customizable Dark Mode for Benjdd.com

La data de 17-01-2025. Vezi ultima versiune.

You will need to install an extension such as Tampermonkey, Greasemonkey 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 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.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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           benjdd.com - Dark Mode [Customizable]
@namespace      typpi.online
@version        1.1.1
@description    Customizable Dark Mode for Benjdd.com
@author         Nick2bad4u
@license        UnLicense
@homepageURL    https://github.com/Nick2bad4u/UserStyles

@var color primary-color "Primary Color" #A52FDEB5
@var color background-color "Background Color" #000000
@var color benchmark-background "Benchmark Background" #000000
@var color header-color "Header Color" #bf1199cc
@var color list-color "List Color" #bd7a4d
@var color code-color "Code Color" #eaff00
@var color link-color "Link Color" #0062ff
==/UserStyle== */
@-moz-document domain("benjdd.com") {
	:root {
		--primary-color: var(primary-color);
		--background-color: var(background-color);
		--benchmark-background: var(
			benchmark-background
		);
		--header-color: var(header-color);
		--list-color: var(list-color);
		--code-color: var(code-color);
		--link-color: var(link-color);
	}

	html,
	#main-content,
	body > header {
		background: var(--background-color);
		color: var(--primary-color);
	}

	#loops {
		border: 1px dashed var(--primary-color);
	}

	#background-1,
	#latencySVGID > g > g > rect.background {
		fill: var(--benchmark-background) !important;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		color: var(--header-color);
	}

	li {
		color: var(--list-color);
	}

	pre {
		color: var(--code-color);
	}

	/* stylelint-disable selector-no-vendor-prefix -- Unneeded */
	a:-webkit-any-link {
		color: var(--link-color);
	}
}