From 4ff3372220ca286971e5cceb42ef26ee06880091 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Fri, 6 Dec 2024 10:05:44 -0500 Subject: [PATCH] Update dark mode styling with proper design and support --- style.css | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index cf9f363..9157d57 100644 --- a/style.css +++ b/style.css @@ -231,9 +231,36 @@ footer p { background: black; } body { - filter: invert(0.85); + background: #2d2d2d; + color: white; } - img { - filter: invert(1); + h2.post { + color: white; + } + .post-time { + color: #ccc; + } + p code, li code { + color: black; + } + pre { + background: black; + border-color: white; + } + blockquote { + background: #1d1d1d; + } + table tr:nth-of-type(odd) td { + background: black; + } + table.members tbody tr td:first-child::before { + border-bottom: 1px solid #ccc; + color: #ccc; + } + .fame { + color: black; + } + .thanks { + background: black; } }