136 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			136 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!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>Supporting Basic Dark Mode</title>
 | 
						|
	<link href="https://barf.bt.ht/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
 | 
						|
	<style>
 | 
						|
		* {
 | 
						|
			box-sizing: border-box;
 | 
						|
		}
 | 
						|
		body {
 | 
						|
			font-family: sans-serif;
 | 
						|
			line-height: 1.45;
 | 
						|
			margin: 0 auto;
 | 
						|
			max-width: 45rem;
 | 
						|
			padding: 0 15px;
 | 
						|
		}
 | 
						|
		hr {
 | 
						|
			background-color: grey;
 | 
						|
			border: 0;
 | 
						|
			height: 1px;
 | 
						|
			margin: 2rem 0;
 | 
						|
		}
 | 
						|
		nav {
 | 
						|
			margin: 2rem 0 0;
 | 
						|
		}
 | 
						|
		main {
 | 
						|
			hyphens: auto;
 | 
						|
		}
 | 
						|
		main p {
 | 
						|
			margin: 1rem;
 | 
						|
		}
 | 
						|
		h1,h2,h3,h4 {
 | 
						|
			margin: 2rem 0 0;
 | 
						|
		}
 | 
						|
		h1 {
 | 
						|
			margin-bottom: 0.5rem;
 | 
						|
		}
 | 
						|
		h1 + p {
 | 
						|
			margin: 0 0 1rem;
 | 
						|
		}
 | 
						|
		span.created {
 | 
						|
			display: block;
 | 
						|
			margin: 4px 15px;
 | 
						|
		}
 | 
						|
		img {
 | 
						|
			border: 1px solid lightgrey;
 | 
						|
			height: auto;
 | 
						|
			max-width: 100%;
 | 
						|
			width: auto;
 | 
						|
		}
 | 
						|
		blockquote {
 | 
						|
			border: 1px solid;
 | 
						|
			border-left: 6px solid;
 | 
						|
			margin: 2rem 0;
 | 
						|
			padding: 10px;
 | 
						|
		}
 | 
						|
		blockquote p {
 | 
						|
			margin: 0;
 | 
						|
		}
 | 
						|
		figure {
 | 
						|
			margin: 2rem 0;
 | 
						|
		}
 | 
						|
		figcaption {
 | 
						|
			color: slategrey;
 | 
						|
		}
 | 
						|
		code {
 | 
						|
			border: 1px solid;
 | 
						|
			padding: 0.1rem 0.3rem;
 | 
						|
			tab-size: 4;
 | 
						|
		}
 | 
						|
		pre {
 | 
						|
			border: 1px solid;
 | 
						|
		}
 | 
						|
		pre code {
 | 
						|
			border: 0;
 | 
						|
			display: block;
 | 
						|
			overflow-x: auto;
 | 
						|
			padding: 0.3rem 0.6rem;
 | 
						|
		}
 | 
						|
		table {
 | 
						|
			border-collapse: collapse;
 | 
						|
			margin: 2rem 0;
 | 
						|
			text-align: left;
 | 
						|
			width: 100%;
 | 
						|
		}
 | 
						|
		tr {
 | 
						|
			border-bottom: 1px solid lightgrey;
 | 
						|
		}
 | 
						|
		tr:nth-of-type(odd) td {
 | 
						|
			background-color: #f8f8f8;
 | 
						|
		}
 | 
						|
		th,td {
 | 
						|
			padding: 6px;
 | 
						|
		}
 | 
						|
		footer {
 | 
						|
			border-top: 1px dashed grey;
 | 
						|
			margin: 2rem 0;
 | 
						|
			padding: 1rem 15px;
 | 
						|
		}
 | 
						|
		@supports (color-scheme: dark light) {
 | 
						|
			@media screen and (prefers-color-scheme: dark) {
 | 
						|
				a:link {color: #9e9eff;}
 | 
						|
				a:visited {color: #d0adf0;}
 | 
						|
				a:active {color: red;}
 | 
						|
			}
 | 
						|
		}
 | 
						|
	</style>
 | 
						|
</head>
 | 
						|
 | 
						|
<nav>
 | 
						|
	<a href="/">Home</a><span> | </span><a href="/about">About</a><span> | </span><a href="/websites">Websites</a><span> | </span><a href="https://git.sr.ht/~bt/barf">Source Code</a>
 | 
						|
</nav>
 | 
						|
 | 
						|
<main>
 | 
						|
<h1>Supporting Basic Dark Mode</h1>
 | 
						|
<p>2023-03-07</p>
 | 
						|
<p>The default <code>barf</code> site generator now supports basic dark mode functionality. This has been achieved by including the standard <code>color-scheme</code> meta tag in the core <code>header.html</code> file:</p>
 | 
						|
<pre><code><meta name="color-scheme" content="dark light">
 | 
						|
</code></pre>
 | 
						|
<p>This change also ships with some minor updates to the default <code>blockquote</code> design. You can see an example below:</p>
 | 
						|
<blockquote><p>This is a really <em>cool</em> blockquote</p>
 | 
						|
</blockquote>
 | 
						|
<h2>Minor Caveat</h2>
 | 
						|
<p>Unfortunately, Safari still has minor <code>ahref</code> / link color issue when defaulting to browser dark mode. If this is a problem for your own build of <code>barf</code>, take a look at a <a href="https://bt.ht/safari-default-dark-mode/">solution I wrote about here</a>.</p>
 | 
						|
<p>Personally, I can't be bothered to add that extra code to this project. The Safari team needs to get their shit together and fix such a simple bug. Plus, you shouldn't be using Safari anyway - it's proprietary garbage.</p>
 | 
						|
<footer role="contentinfo">
 | 
						|
    <span><a href="#">↑ Back to Top</a></span><br><br>
 | 
						|
    <small>
 | 
						|
        Built with <a href="https://git.sr.ht/~bt/barf">barf</a>. <br>
 | 
						|
        The <a href="https://git.sr.ht/~bt/barf">code for this site</a> is <a href="https://git.sr.ht/~bt/barf/tree/master/item/LICENSE">MIT</a>.
 | 
						|
    </small>
 | 
						|
</footer> |