From 649b1d4328a7ffc31cb5e9d47e2b3ddefcc66f16 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 24 Jul 2023 20:27:10 -0400 Subject: Initial rewrite to astro --- src/styles/globals.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/styles/globals.css (limited to 'src/styles') diff --git a/src/styles/globals.css b/src/styles/globals.css new file mode 100644 index 0000000..f8c09c8 --- /dev/null +++ b/src/styles/globals.css @@ -0,0 +1,20 @@ +@import '@fontsource-variable/exo'; +@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)); +} -- cgit v1.2.3