summaryrefslogtreecommitdiff
path: root/geshem/app/globals.css
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-09-23 09:18:05 +0200
committerYuval Adam <_@yuv.al>2024-09-23 09:18:05 +0200
commitbefc9ba3e4a9b24cdd0397663c04c98688d98d9b (patch)
treed000b369d8deef80454e65cead8f3401d2a9615f /geshem/app/globals.css
parent257c970be15e85e9f1bb200aadc82a9b98c57434 (diff)
Initial nextjs project generation
Diffstat (limited to 'geshem/app/globals.css')
-rw-r--r--geshem/app/globals.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/geshem/app/globals.css b/geshem/app/globals.css
new file mode 100644
index 0000000..13d40b8
--- /dev/null
+++ b/geshem/app/globals.css
@@ -0,0 +1,27 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+:root {
+ --background: #ffffff;
+ --foreground: #171717;
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --background: #0a0a0a;
+ --foreground: #ededed;
+ }
+}
+
+body {
+ color: var(--foreground);
+ background: var(--background);
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+@layer utilities {
+ .text-balance {
+ text-wrap: balance;
+ }
+}