Skip to content

Commit

Permalink
πŸ’„ style : Modify root style in global.css
Browse files Browse the repository at this point in the history
- 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#30
  • Loading branch information
dorimu0 committed Feb 19, 2024
1 parent e4cdf17 commit 9564e5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-start-rgb: 255, 255, 255;
--background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
/* @media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
--background-start-rgb: 0, 0, 0;
--background-end-rgb: 0, 0, 0;
}
}
} */

body {
color: rgb(var(--foreground-rgb));
Expand Down

0 comments on commit 9564e5f

Please sign in to comment.