twit.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
The official Mastodon of the TWiT Podcast Network

Administered by:

Server stats:

1.4K
active users

Jari Pennanen

@hamatti @adactio My two favorites:

1. Invert colors and add sepia
2. "Normalize fonts" (forces font colors to black and Verdana family, don't ask why I just still like Verdana!)

@hamatti Invert colors:

javascript:(function() { var v = document.getElementsByTagName("html"); v[0].style.background = "white"; v[0].style.filter = "invert(90%) sepia(60%) brightness(70%)"; v[0].style.backgroundColor = "black"; document.getElementsByTagName("body")[0].style.background = "white"; })();

@hamatti

Normalize fonts:

javascript:(function () { const s = document.createElement("style"); s.textContent = "body * { font-family: 'Verdana' !important; font-size: 16px !important; line-height: 1.5 !important; font-weight: normal !important; letter-spacing: 0 !important; color: #000 !important; }"; document.head.append(s);})();