From ff846d80e5afd27717f73b79cfa89b5bce4b4c08 Mon Sep 17 00:00:00 2001 From: Jiwon Choi <81795729+Choi-Jiwon-38@users.noreply.github.com> Date: Fri, 4 Oct 2024 09:07:09 +0900 Subject: [PATCH] =?UTF-8?q?style:=20light=20=ED=85=8C=EB=A7=88=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=20=EA=B0=95=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/app/globals.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/globals.css b/frontend/src/app/globals.css index d10c337..7fd3c03 100644 --- a/frontend/src/app/globals.css +++ b/frontend/src/app/globals.css @@ -4,4 +4,11 @@ pre { font-family: inherit; -} \ No newline at end of file +} + +/* 다크 모드를 무시하고 항상 라이트 모드 적용 */ +@media (prefers-color-scheme: dark) { + :root { + color-scheme: light; + } +}