Skip to content

Commit

Permalink
cyberaula v2
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepndraw committed Apr 16, 2024
2 parents f4c6c87 + 177c85c commit 6704e72
Show file tree
Hide file tree
Showing 11 changed files with 1,697 additions and 50 deletions.
37 changes: 37 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
@tailwind base;
@tailwind components;
@tailwind utilities;


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

@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));
/*
background: linear-gradient(
to bottom,
transparent,
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));
*/
}

@layer utilities {
.text-balance {
text-wrap: balance;
}
}

Loading

0 comments on commit 6704e72

Please sign in to comment.