summaryrefslogtreecommitdiff
path: root/html/style.css
diff options
context:
space:
mode:
authorTaylan Kammer <taylan.kammer@gmail.com>2026-06-22 00:11:33 +0200
committerTaylan Kammer <taylan.kammer@gmail.com>2026-06-22 00:11:33 +0200
commit0245f1c238b232834a1a1b76d660aa3b626d832f (patch)
treec83dc7289b0b40d36f4f9af2ed8803824e9519bb /html/style.css
parentaf42ac0a082c90b6dfced76cd1ecdf5091e22c7e (diff)
dark theme
Diffstat (limited to 'html/style.css')
-rw-r--r--html/style.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/html/style.css b/html/style.css
index e21a94b..1e55997 100644
--- a/html/style.css
+++ b/html/style.css
@@ -51,3 +51,22 @@ td, th {
border: 1px solid black;
padding: 4px;
}
+
+@media (prefers-color-scheme: dark) {
+ body {
+ background: black;
+ color: #999;
+ }
+ table, td, th {
+ border-color: #999;
+ }
+ a {
+ color: #00aa00;
+ }
+ a:visited {
+ color: #007700;
+ }
+ .hljs {
+ filter: invert(100%);
+ }
+}