From 65e7041a3c88a5b2d1ae76e7023807537775cb1b Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Sat, 21 Sep 2024 13:15:44 +0200 Subject: Initial NextJS project creation with basic structure --- app/globals.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 app/globals.css (limited to 'app/globals.css') diff --git a/app/globals.css b/app/globals.css new file mode 100644 index 0000000..13d40b8 --- /dev/null +++ b/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; + } +} -- cgit v1.3.1