From 600f6ac1d1ab712b31be2793f20c74236f3fcbdc Mon Sep 17 00:00:00 2001 From: AnNingUI Date: Thu, 14 Aug 2025 21:39:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E9=AB=98=E4=BA=AE=E8=83=8C=E6=99=AF=E4=B8=8E=E6=8A=BD=E5=A5=96?= =?UTF-8?q?=E8=83=8C=E6=99=AF=E8=89=B2=E5=85=AC=E7=94=A8=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend_nuxt/assets/global.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend_nuxt/assets/global.css b/frontend_nuxt/assets/global.css index 6ef5f63b2..4f2a7d6bb 100644 --- a/frontend_nuxt/assets/global.css +++ b/frontend_nuxt/assets/global.css @@ -17,6 +17,7 @@ --scroller-background-color: rgba(130, 175, 180, 0.5); --normal-background-color: rgb(241, 241, 241); --lottery-background-color: rgb(241, 241, 241); + --code-highlight-background-color: rgb(241, 241, 241); --login-background-color: rgb(248, 248, 248); --login-background-color-hover: #e0e0e0; --text-color: black; @@ -43,7 +44,8 @@ --menu-selected-background-color: rgba(255, 255, 255, 0.1); --menu-text-color: white; --normal-background-color: #000000; - --lottery-background-color: #262b35; + --lottery-background-color: #4e4e4e; + --code-highlight-background-color: #262b35; --login-background-color: #575757; --login-background-color-hover: #717171; --text-color: #eee; @@ -132,7 +134,7 @@ body { .info-content-text pre { display: flex; - background-color: var(--lottery-background-color); + background-color: var(--code-highlight-background-color); padding: 8px 12px; border-radius: 4px; line-height: 1.5; @@ -164,7 +166,7 @@ body { font-size: 13px; border-radius: 4px; white-space: no-wrap; - background-color: var(--lottery-background-color); + background-color: var(--code-highlight-background-color); color: var(--text-color); }