On a ✈️ back home, I decided to add Dark mode support to Henry. Having recently upgraded to Tailwind CSS 4.0, this was a piece of cake to do. I leverage the widely supported CSS @media prefers-color-scheme feature and Tailwind’s native dark-mode support. The implementation only required a few changes: 1. update main theme.css In my main theme.css file where I declare the existing colors, I add the CSS @media selector for the “dark” variable indicator. @theme { /* henry background */...