diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-10-02 14:40:26 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-10-02 14:40:26 -0400 |
| commit | 95280d67a415b31d99ac7e0ebe35c8440847fd90 (patch) | |
| tree | 31195292013b2cd717881837204a304ab2def9f2 /app/globals.css | |
| download | minepot-bnbmc-95280d67a415b31d99ac7e0ebe35c8440847fd90.tar.gz minepot-bnbmc-95280d67a415b31d99ac7e0ebe35c8440847fd90.tar.bz2 minepot-bnbmc-95280d67a415b31d99ac7e0ebe35c8440847fd90.zip | |
Initial commit from Create Next App
Diffstat (limited to 'app/globals.css')
| -rw-r--r-- | app/globals.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/globals.css b/app/globals.css new file mode 100644 index 0000000..fd81e88 --- /dev/null +++ b/app/globals.css @@ -0,0 +1,27 @@ +@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)); +} |
