From c162897c416aef9ef57e417c05cf12824180457a Mon Sep 17 00:00:00 2001 From: bretello Date: Sat, 15 Jun 2024 12:50:20 +0200 Subject: [PATCH] css: add dark mode --- static/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/style.css b/static/style.css index 4c700e5..1797a31 100644 --- a/static/style.css +++ b/static/style.css @@ -13,6 +13,12 @@ body { font-size: 32px; } +@media (prefers-color-scheme: dark) { + body { + background-color: #556262; + } +} + #main { display: flex; align-items: center;