From 73e957caaf661900f1712c4217a73bb4fcfaa34b Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 30 May 2025 11:41:19 -0400 Subject: Base website --- src/app/globals.css | 31 +++++++++++-------------------- 1 file changed, 11 insertions(+), 20 deletions(-) (limited to 'src/app/globals.css') diff --git a/src/app/globals.css b/src/app/globals.css index a2dc41e..e29be92 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,26 +1,17 @@ @import "tailwindcss"; :root { - --background: #ffffff; - --foreground: #171717; -} - -@theme inline { - --color-background: var(--background); - --color-foreground: var(--foreground); - --font-sans: var(--font-geist-sans); - --font-mono: var(--font-geist-mono); -} - -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } + --foreground-rgb: 255, 255, 255; + --background-start-rgb: 0, 0, 0; + --background-end-rgb: 0, 0, 0; } body { - background: var(--background); - color: var(--foreground); - font-family: Arial, Helvetica, sans-serif; -} + color: rgb(var(--foreground-rgb)); + background: linear-gradient( + to bottom, + transparent, + rgb(var(--background-end-rgb)) + ) + rgb(var(--background-start-rgb)); +} \ No newline at end of file -- cgit v1.2.3