diff options
Diffstat (limited to 'app/globals.css')
| -rw-r--r-- | app/globals.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/globals.css b/app/globals.css new file mode 100644 index 0000000..e76e819 --- /dev/null +++ b/app/globals.css @@ -0,0 +1,19 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +: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)); +} |
