From a43fe81d3fbe2ebb78f1ba0639a23665f297701b Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sun, 21 Aug 2022 09:26:23 -0700 Subject: [PATCH] webapps.pastebin: better dark mode --- extra/webapps/pastebin/pastebin.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/extra/webapps/pastebin/pastebin.css b/extra/webapps/pastebin/pastebin.css index 12c11aa4a5..e98b9ce8f6 100644 --- a/extra/webapps/pastebin/pastebin.css +++ b/extra/webapps/pastebin/pastebin.css @@ -14,7 +14,7 @@ pre.code { border-radius: 5px; background-color: #f7f7f7; padding: 5px; - color: #000000; + color: black; } table { @@ -47,4 +47,12 @@ table tr:hover { table tr:hover { background-color: #373e48; } + + pre.code { + filter: invert(80%); + } + + input, textarea, select { + filter: invert(80%); + } } -- 2.34.1