Add a filter to darken the map a little for users preferring a dark color scheme.

This commit is contained in:
Bryant Kelley 2025-07-24 14:48:56 -07:00
parent 2fbb9aab38
commit 8fd446b932

View file

@ -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%;