Skip to content

Commit

Permalink
fix: css
Browse files Browse the repository at this point in the history
  • Loading branch information
wkylin committed Jan 17, 2025
1 parent e688ebc commit 7ce5815
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/styles/reset.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
@tailwind components;
@tailwind utilities;

:root {
--background: #fff;
--foreground: #171717;
}

@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}

/* body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
} */

html,
body {
height: 100%;
Expand Down

0 comments on commit 7ce5815

Please sign in to comment.