From ef6072fd279275e96dd4034c564408ed3d28c46b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Mart=C3=ADnez=20Portela?= Date: Fri, 22 Jul 2022 00:23:07 +0200 Subject: [PATCH] [minor] Fast styling touches to posts's dark mode. --- static/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/style.css b/static/style.css index a1ab463..5dae5df 100644 --- a/static/style.css +++ b/static/style.css @@ -93,17 +93,17 @@ article.post { /* Dark mode. */ @media (prefers-color-scheme: dark) { html { - background-color: #0f110e; + background-color: #111; color: #fafafe; } h2 a { color: #fafafe; } a { - color: #aaf; + color: #99f; } h1,h2,h3,h4,h5,h6 { margin-top: 0; - color: #adbac7; + color: #f7da4a; } }