aboutsummaryrefslogtreecommitdiff
path: root/build/posts/lazy-dev-dark-mode
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-06-10 09:41:25 -0400
committerBradley Taunt <bt@btxx.org>2024-06-10 09:41:25 -0400
commit07e4a2dafe248280b5610f8c7d09b0f30b530f54 (patch)
tree8a145d1d4d07e1278a837ff15dadccc322d27515 /build/posts/lazy-dev-dark-mode
parent16d28628aca9b2d356de31c319f5e7bc0f5b2b02 (diff)
Initial modifications to rebuilt only changed files based on mod date, performance updates
Diffstat (limited to 'build/posts/lazy-dev-dark-mode')
-rw-r--r--build/posts/lazy-dev-dark-mode/index.html62
1 files changed, 62 insertions, 0 deletions
diff --git a/build/posts/lazy-dev-dark-mode/index.html b/build/posts/lazy-dev-dark-mode/index.html
new file mode 100644
index 0000000..d24922d
--- /dev/null
+++ b/build/posts/lazy-dev-dark-mode/index.html
@@ -0,0 +1,62 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="color-scheme" content="dark light">
+ <link rel="icon" href="data:,">
+ <title>The Lazy Developer's Dark Mode</title>
+ <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
+ <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
+<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}blockquote{background:rgba(0,0,0,0.1);border-left:4px solid;padding-left:5px;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
+</head>
+
+<nav>
+ <a href="#menu">Menu &darr;</a>
+</nav>
+
+<main>
+<h1 id="the-lazy-developers-dark-mode">The Lazy Developer&#8217;s Dark Mode</h1>
+<p>2021-04-12</p>
+<p>After recently jumping back to Jekyll for my personal blog, I decided to take a closer look at how I was supporting <code>dark mode</code> for my visitors. I was using the proper CSS query to target those who had system-wide dark mode enabled, but I found that the code had far too many caveats and targeted too many custom classes.</p>
+<p>So I thought to myself, &#8220;There <em>has</em> to be a simpler way&#8230;&#8221;</p>
+<h2 id="introducing-dark-mode---the-lazy-way">Introducing Dark Mode - The Lazy Way</h2>
+<p>Here is the default dark mode for my current website in all it&#8217;s glory:</p>
+<pre><code>@media (prefers-color-scheme: dark) {
+ body{background:#2d2d2d;filter:invert(1);}
+ img,.cp_embed_wrapper,pre{filter:invert(1);}
+}
+</code></pre>
+<p>Not much to look at, eh? Well, let&#8217;s still break it down.</p>
+<p>First we set the <code>body</code> to use a nice dark background color (avoid using <code>#000000</code> directly since that can cause some minor eye strain). Next we tell the browser to invert all the child elements by using <code>filter:invert(1)</code>. At this point, you could consider your work done - but there are some edge case elements&#8230;</p>
+<h2 id="images-codepens-code---oh-my">Images, CodePens &#38; Code - Oh My!</h2>
+<p>Most of my articles on this site will include either an image(s), embedded CodePen examples or code snippets directly in the page. For these elements we probably <em>don&#8217;t</em> want to invert their color&#47;text etc. All we need to do is run the filter property on these a second time (<em>after</em> the main <code>body</code> attribute):</p>
+<pre><code>@media (prefers-color-scheme: dark) {
+ img,.cp_embed_wrapper,pre{filter:invert(1);}
+}
+</code></pre>
+<p>Of course, YMMV depending on what other custom elements you want to avoid inverting.</p>
+<h2 id="minor-caveats">Minor Caveats</h2>
+<p>I should mention that since my website doesn&#8217;t use any custom coloring for anchor links, inverting <code>ahref</code> elements works out of the box. Certain projects might still require some custom overrides if the inverted version of a certain custom color looks poor.</p>
+<p>That&#8217;s it - enjoy being lazy!</p>
+<footer role="contentinfo">
+ <h2>Menu Navigation</h2>
+ <ul id="menu">
+ <li><a href="/">Home</a></li>
+ <li><a href="/projects">Projects</a></li>
+ <li><a href="/uses">Uses</a></li>
+ <li><a href="/wiki">Wiki</a></li>
+ <li><a href="/resume">Resume</a></li>
+ <li><a href="/colophon">Colophon</a></li>
+ <li><a href="/now">Now</a></li>
+ <li><a href="/donate">Donate</a></li>
+ <li><a href="/atom.xml">RSS</a></li>
+ <li><a href="#top">&uarr; Top of the page</a></li>
+ </ul>
+ <small>
+ Built with <a href="https://git.sr.ht/~bt/barf">barf</a>. <br>
+ Maintained with ♥ for the web. <br>
+ Proud supporter of <a href="https://usefathom.com/ref/DKHJVX">Fathom</a> &amp; <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a>. <br>
+ The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/bt.ht">code for this site</a> is <a href="https://git.sr.ht/~bt/bt.ht/tree/master/item/LICENSE">MIT</a>.
+ </small>
+</footer> \ No newline at end of file