Skip to content

Commit b3ecbe7

Browse files
committed
💄 style : Modify root style in global.css
- Unify the root css background to white - We don't have plans to offer a dark mode at this time, so this will be a future fix. Related issue: YJU-OKURA#32
1 parent e4cdf17 commit b3ecbe7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎src/app/globals.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44

55
:root {
66
--foreground-rgb: 0, 0, 0;
7-
--background-start-rgb: 214, 219, 220;
7+
--background-start-rgb: 255, 255, 255;
88
--background-end-rgb: 255, 255, 255;
99
}
1010

11-
@media (prefers-color-scheme: dark) {
11+
/* @media (prefers-color-scheme: dark) {
1212
:root {
1313
--foreground-rgb: 255, 255, 255;
1414
--background-start-rgb: 0, 0, 0;
1515
--background-end-rgb: 0, 0, 0;
1616
}
17-
}
17+
} */
1818

1919
body {
2020
color: rgb(var(--foreground-rgb));

0 commit comments

Comments
 (0)