about summary refs log tree commit diff stats
path: root/themes
diff options
context:
space:
mode:
authorAlan Pearce2020-10-28 15:25:37 +0100
committerAlan Pearce2020-10-28 15:25:37 +0100
commitc6801bf514b48b5298aaf004f02fd1ec59ce6552 (patch)
treec6f8637c65724efddd33a7cabea0ab065e0ddf0d /themes
parent0d88380b9d4c0731c60739b262fd659bd6c211c8 (diff)
downloadwebsite-c6801bf514b48b5298aaf004f02fd1ec59ce6552.tar.xz
website-c6801bf514b48b5298aaf004f02fd1ec59ce6552.zip
Add basic dark-mode support
Diffstat (limited to 'themes')
-rw-r--r--themes/xmin/static/css/style.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/themes/xmin/static/css/style.css b/themes/xmin/static/css/style.css index efa871e..e605297 100644 --- a/themes/xmin/static/css/style.css +++ b/themes/xmin/static/css/style.css
@@ -52,3 +52,24 @@ table thead th { border-bottom: 1px solid #ddd; }
52th, td { padding: 5px; } 52th, td { padding: 5px; }
53thead, tfoot, tr:nth-child(even) { background: #eee; } 53thead, tfoot, tr:nth-child(even) { background: #eee; }
54.hl { background-color: #ffc; } 54.hl { background-color: #ffc; }
55
56@media (prefers-color-scheme: dark) {
57 body {
58 background-color: #111;
59 color: white;
60 }
61 article > header, nav > ul a {
62 background: #222;
63 }
64 a {
65 color: #C4D4EE;
66 }
67 a:visited {
68 color: #CEDEE0;
69 }
70 code { background-color: #444; }
71 thead, tfoot, tr:nth-child(even) { background: #222; }
72 .hl {
73 background-color: #555;
74 }
75}