prefer a dark mode
This commit is contained in:
parent
e6dd414af6
commit
9608a7429b
|
@ -1,3 +1,23 @@
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body {
|
||||||
|
background-color: #222;
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background-color: #222;
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
padding: 2em;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
<pre><code>
|
<pre><code>
|
||||||
<h1>Tokens for Testing</h1>
|
<h1>Tokens for Testing</h1>
|
||||||
Compatible with
|
Compatible with
|
||||||
|
@ -113,3 +133,6 @@ You shouldn't use it for automated testing, because it will change, but it looks
|
||||||
}
|
}
|
||||||
|
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue