Inverts color of everything except for images
Wikipedia - Dark - Inverted by zoranravic
Details
Authorzoranravic
LicenseNo License
Categorywikipedia.org
Created
Updated
Size409 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 wikipedia.org - 4/14/2023, 5:54:02 PM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("wikipedia.org") {
:root {
filter: invert(1);
}
img:not(.mwe-math-fallback-image-display,.mwe-math-fallback-image-inline) {
filter: invert(1);
}
}