nzherald.co.nz quick and dirty dark mode
nzherald.co.nz quick and dirty dark mode by antidamage
Details
Authorantidamage
LicenseNo License
Categorynzherald.co.nz
Created
Updated
Size650 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name nzherald.co.nz quick and dirty dark mode
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Adeline (Antidamage)
==/UserStyle== */
@-moz-document domain("nzherald.co.nz") {
@media(prefers-color-scheme: dark) {
body {
filter: brightness(90%) invert(100%) hue-rotate(180deg) !important;
background-color: #222 !important;
}
main,
.latest-news,
.section-chain__heading {
filter: brightness(90%) invert(100%) hue-rotate(180deg) !important;
}
p {
color: #777;
}
.story-card__heading {
text-shadow: 1px 1px 4px #000;
}
}
}