Explore >> Select a destination


You are here

blog.miguelgrinberg.com
| | scastiel.dev
2.8 parsecs away

Travel
| | Thanks to a recent evolution in mobile and desktop operating systems, it is more and more common for users to expect two UI themes for apps and websites: a light one and a dark one. In this article we'll see how it is possible to offer two themes in your React application, using the one the user prefers by default.
| | tevonsb.com
4.1 parsecs away

Travel
| | A deep dive into building a modern, fast blog using Zola, custom styling with CSS variables, thoughtful JavaScript enhancements, and deploying to Cloudflare Pages.
| | alexmuraro.me
3.8 parsecs away

Travel
| | I have restyled my site slightly, and as you might have noticed, I added a theme selector in the top right corner. Using CSS variables, it is very easy to do and great fun too. Basically this works by setting a "root" with your default css variables :root { --background: #1B2B34; --text: #ffffff; } which [...]
| | www.vintasoftware.com
17.4 parsecs away

Travel
| Lambda expressions, also known as arrow functions, are a fundamental feature in JavaScript. Learn about the advantages of Javascript Lambda functions, examples and more.