From 8fd446b932eef54a2571c297dea7c20fd727a3e6 Mon Sep 17 00:00:00 2001 From: Bryant Kelley Date: Thu, 24 Jul 2025 14:48:56 -0700 Subject: [PATCH] Add a filter to darken the map a little for users preferring a dark color scheme. --- css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css/style.css b/css/style.css index 395badf..f3775c8 100644 --- a/css/style.css +++ b/css/style.css @@ -27,6 +27,12 @@ dialog[open] { } #map { height: 100vh; } +@media (prefers-color-scheme: dark) { + #map { + filter: invert(1) hue-rotate(180deg) grayscale(0.1); + } +} + table.node-info { table-layout: fixed; width: 100%;