Skip to content

Commit

Permalink
feat(initialization): Global styling.
Browse files Browse the repository at this point in the history
Initializes global scope styling for page.
  • Loading branch information
mango-habanero committed Apr 18, 2024
1 parent f83443f commit af067e6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@tailwind base;
@tailwind components;
@tailwind utilities;


:root {
--color-primary: #16B8F3;
--foreground: #FAFAFA;
}

/*fill background with a grid of dots*/
body {
color: var(--foreground);
background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
background-size: 15px 15px;
}

0 comments on commit af067e6

Please sign in to comment.