Silly CSS tip: Lazy dark mode. @media (prefers-color-scheme: dark) { body { background: #111; } body, img { filter: invert(1); } } Explanation: 1. Filter doesn't apply to background, so you have to set the color 2. Invert everything 3. Re-invert the images so they're not negatives
5 likes 1 replies
?