From f2302bff2a371d745c38384cbd3cade3660c96ff Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Fri, 6 Jan 2023 14:20:01 -0700 Subject: [PATCH] Real dark mode. I had used the wrong debug control to test it :\ --- static/dark.css | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/static/dark.css b/static/dark.css index 21c92fc..0c4610a 100644 --- a/static/dark.css +++ b/static/dark.css @@ -1,18 +1,25 @@ @media (prefers-color-scheme: dark) { html { background-color: black; - color: white; } .box { - color: #eee; /* Make this darker to make the on-screen lighter. I don't know why. */ + background-color: #222; + } + + .input, .button, .textarea, .select select { + background-color: #444; + } + + html, .box, .title, .label, .input, .button, .textarea, .select select { + color: white; } .button.is-primary { - background-color: #096; + background-color: #086; } input[type=range] { - accent-color: #096; + accent-color: #086; } } \ No newline at end of file