diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-07-14 11:42:42 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-07-14 11:42:42 -0400 |
| commit | 1a18c9a67bff181a0e69edbc8e5e9535d9ee791f (patch) | |
| tree | fd51b331b5eb47af5b3e392bcb09289c153e2994 /app/globals.css | |
| download | alure-website-1a18c9a67bff181a0e69edbc8e5e9535d9ee791f.tar.gz alure-website-1a18c9a67bff181a0e69edbc8e5e9535d9ee791f.tar.bz2 alure-website-1a18c9a67bff181a0e69edbc8e5e9535d9ee791f.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)); +} |
