aboutsummaryrefslogtreecommitdiff
path: root/src/app/globals.css
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-05-29 21:33:44 -0400
committerAndrew Lee <andrew@alee14.me>2025-05-29 21:33:44 -0400
commit4afdb7370dcc8df71c648eb76a7e126cb888e65c (patch)
tree70d90bf64f5efb19997f115ee6d9317005c34473 /src/app/globals.css
downloadalure-post-4afdb7370dcc8df71c648eb76a7e126cb888e65c.tar.gz
alure-post-4afdb7370dcc8df71c648eb76a7e126cb888e65c.tar.bz2
alure-post-4afdb7370dcc8df71c648eb76a7e126cb888e65c.zip
Initial commit from Create Next App
Diffstat (limited to 'src/app/globals.css')
-rw-r--r--src/app/globals.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/app/globals.css b/src/app/globals.css
new file mode 100644
index 0000000..a2dc41e
--- /dev/null
+++ b/src/app/globals.css
@@ -0,0 +1,26 @@
+@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;
+ }
+}
+
+body {
+ background: var(--background);
+ color: var(--foreground);
+ font-family: Arial, Helvetica, sans-serif;
+}