Skip to content

Commit

Permalink
Merge pull request #84 from uchicago-dsi/nross/fixing_dark_mode
Browse files Browse the repository at this point in the history
Fixing Dark Mode Rendering Bug
  • Loading branch information
NickRoss authored Sep 26, 2024
2 parents 0573d96 + 90304cc commit 150a40a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashboard/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
--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 150a40a

Please sign in to comment.