From 62882e78d85ef978eb25681518e71a38c566974c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Cluseau?= Date: Tue, 8 Jul 2025 14:50:14 +0200 Subject: [PATCH] darken inputs in dark mode --- html/ui/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/html/ui/style.css b/html/ui/style.css index 70dc771..e3c7a74 100644 --- a/html/ui/style.css +++ b/html/ui/style.css @@ -51,6 +51,11 @@ th, tr:last-child > td { } .red { color: #c00; } + + textarea, input[type=text] { + background: #111; + color: #ddd; + } } header {