Skip to content

Commit

Permalink
feat: Add global CSS styles
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroFnseca committed May 5, 2024
1 parent 0d30516 commit 0ddc2c3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

* {
margin: 0;
padding: 0;
}

:root {
--white: #f3f3f3;
--black: #333;
}

body {
font-family: "Inter", sans-serif;
background-color: var(--white);
color: var(--black);
}

@media (prefers-color-scheme: dark) {
body {
background-color: var(--black);
color: var(--white);
}
}

0 comments on commit 0ddc2c3

Please sign in to comment.