mastodon.ar.al is one of the many independent Mastodon servers you can use to participate in the fediverse.
This is my personal fediverse server.

Administered by:

Server stats:

1
active users

@martijn
Kitten's fur coat becomes black in dark mode? So sweet 😹
@aral

Aral Balkan

@m0xee @martijn It’s just a very simple filter ;)

@media (prefers-color-scheme: dark) {
html {
background-color: white; /* Must specify for filter to work in (spit) Chrome. */
filter: invert() hue-rotate(180deg);
}
}

(That includes the fix for (spit) Chrome that @martijn kindly reported.)