Invert by NotWithering
Details
AuthorNotWithering
LicenseMIT License
Categoryglobal
Created
Updated
Size468 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 Invert
@version 20240701.19.49
@namespace https://userstyles.world/user/NotWithering
@description https://www.youtube.com/watch?v=JONzCyVXa60
@author NotWithering
@license MIT License
==/UserStyle== */
@-moz-document regexp(".*") {
:root {
--invert: 100%;
}
html {
filter: invert(var(--invert)) hue-rotate(180deg);
}
img, video, iframe {
filter: invert(var(--invert)) hue-rotate(180deg);
}
}