From ca155e20c250d94cf2da75892df99632d47759c6 Mon Sep 17 00:00:00 2001
From: NaitLee <naitlee@disroot.org>
Date: Mon, 2 Jun 2025 21:56:22 +0800
Subject: [PATCH] fix(css): better color

---
 junk.css | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/junk.css b/junk.css
index 2b48376..7ebfbd2 100644
--- a/junk.css
+++ b/junk.css
@@ -1,6 +1,6 @@
 :root {
-    --fore: #202020;
-    --back: #fdfdfd;
+    --fore: #101010;
+    --bottom: #f0f0f0;
 }
 
 * {
@@ -13,7 +13,7 @@ body {
     max-width: 100%;
     padding: 0 8px;
     line-height: 1.5;
-    background-color: var(--back);
+    background-color: var(--bottom);
     color: var(--fore);
 }
 
@@ -23,7 +23,7 @@ a:any-link {
 
 @media (prefers-color-scheme: dark) {
     :root {
-        --fore: #a0a0a0;
-        --back: #303030;
+        --fore: #d0d0d0;
+        --bottom: #181818;
     }
 }