From 54488e1e87d052cb7326b09b864da60e99b69903 Mon Sep 17 00:00:00 2001 From: Fries Date: Sun, 11 Jun 2023 14:14:19 -0700 Subject: [PATCH] make the colors a bit better. --- src/styles/global.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/styles/global.css b/src/styles/global.css index d805941..554df36 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -1,17 +1,16 @@ @media (prefers-color-scheme: light) { :root { - --background-color: white; - --text-color: #black; + --background-color: #f6f5f4; + --text-color: black; --link-color: darkblue; } } @media (prefers-color-scheme: dark) { :root { - --background-color: black; - --text-color: white; + --background-color: #191919; + --text-color: #E9E9E9; --link-color: cyan; - } }