-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6690350
commit fbd8ed4
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* ==UserStyle== | ||
@name New Yorker Simple Dark Mode | ||
@version 20241106.04.29 | ||
@namespace typpi.online | ||
@description Dark theme for New Yorker | ||
@author Nick2bad4u | ||
@license UnLicense | ||
==/UserStyle== */ | ||
|
||
@-moz-document domain("newyorker.com") { | ||
/* Invert colors except images and videos */ | ||
:is(html:not([stylus-iframe]), img, svg, video):not(z#z.z[z]) { | ||
filter: invert(1) hue-rotate(180deg) !important; | ||
} | ||
|
||
/* Ensure background images are not inverted */ | ||
:is(html:not([stylus-iframe]), img, svg, video):not(z#z.z[z]) { | ||
background-color: inherit !important; | ||
} | ||
|
||
} |