From 3c8584f2ce2def1efb543552b80d179e307c8525 Mon Sep 17 00:00:00 2001 From: nune <145225213+gigirassy@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:19:41 -0400 Subject: [PATCH] Update style.css --- style.css | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/style.css b/style.css index 0d3b6fa..59aaad2 100644 --- a/style.css +++ b/style.css @@ -1,15 +1,22 @@ @media (prefers-color-scheme: dark){ body { - background-color:#42; - color:#FF; - } + background:#000; + color: #FF; + } +} + +@media (prefers-color-scheme: light){ + body { + background:#FF; + color: #42; + } +} body { margin: 40px auto; max-width: 650px; - line-height: 1.6; + line-height: 1.2; font-family:"Segoe UI", Segoe, Tahoma, Geneva, sans-serif; font-size: 18px; - color: #42; padding: 0 8px; }