Gives all SVG inverted filter so they are always visible
Twitter/X invert SVGs by chordanlarock
Details
Authorchordanlarock
LicenseNo License
Categorytwitter.com
Created
Updated
Size446 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 Twitter/X invert SVGs
@version 0.0.0.1
@namespace https://userstyles.world/user/chordanlarock
@description Gives all SVG inverted filter so they are always visible
@author gfbagel
@license No License
==/UserStyle== */
@-moz-document domain("twitter.com"), domain("x.com") {
a>svg[class][viewBox]
{
mix-blend-mode: difference;
filter: drop-shadow(1px 1px 2px black) !important;
}
}