i've made a thing: https://xkcd.fyi/

it's an alternative frontend to https://xkcd.com/ with some important differences:
- title text shown in a more accessible way (instead of abusing alt text)
- transcript included for every comic (with newer ones sourced from explainxkcd)
- link to https://explainxkcd.com/ (for when you don't get the joke)
- dark mode!

xkcd.fyi

@mayank How are you converting the images to dark mode? It doesn't look like a total invert (blues stay blue) but just a value one (light blues become dark, darks become light), but I don't see what attribute might be doing that...
@mayank Oh wait, I see it now: `body { filter: invert(1) hue-rotate(180deg) }`. Very neat!