diff options
| author | mihailo.vojinovic <mihailonvojinovic@gmail.com> | 2026-02-04 13:57:50 +0100 |
|---|---|---|
| committer | mihailo.vojinovic <mihailonvojinovic@gmail.com> | 2026-02-04 13:57:50 +0100 |
| commit | a7ba174c05e9743c03cdcdb26a5c196699939fc5 (patch) | |
| tree | dacdb80c3649643266e9341829dd45b2b68a9a83 /src/app/globals.css | |
| download | invoice-a7ba174c05e9743c03cdcdb26a5c196699939fc5.tar.gz invoice-a7ba174c05e9743c03cdcdb26a5c196699939fc5.zip | |
Initial commit from Create Next App
Diffstat (limited to 'src/app/globals.css')
| -rw-r--r-- | src/app/globals.css | 26 |
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; +} |
