From c12221dd9cbb1cae9b4fc17d179024a9af98ca3c Mon Sep 17 00:00:00 2001 From: Christian Lawson-Perfect Date: Sat, 22 Feb 2025 08:54:53 +0000 Subject: [PATCH] fix dark mode on the index page --- thinks/static/thinks/thinks.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/thinks/static/thinks/thinks.css b/thinks/static/thinks/thinks.css index cc4a11f..4cda138 100644 --- a/thinks/static/thinks/thinks.css +++ b/thinks/static/thinks/thinks.css @@ -8,8 +8,12 @@ } @media (prefers-color-scheme: dark) { + body { --background: hsl(70,100%,8%); + --default-background: black; --color: white; + --button-bg: #333; + } } * {