diff options
Diffstat (limited to 'frontend/app/globals.css')
| -rw-r--r-- | frontend/app/globals.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/frontend/app/globals.css b/frontend/app/globals.css new file mode 100644 index 0000000..a2dc41e --- /dev/null +++ b/frontend/app/globals.css | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | @import "tailwindcss"; | ||
| 2 | |||
| 3 | :root { | ||
| 4 | --background: #ffffff; | ||
| 5 | --foreground: #171717; | ||
| 6 | } | ||
| 7 | |||
| 8 | @theme inline { | ||
| 9 | --color-background: var(--background); | ||
| 10 | --color-foreground: var(--foreground); | ||
| 11 | --font-sans: var(--font-geist-sans); | ||
| 12 | --font-mono: var(--font-geist-mono); | ||
| 13 | } | ||
| 14 | |||
| 15 | @media (prefers-color-scheme: dark) { | ||
| 16 | :root { | ||
| 17 | --background: #0a0a0a; | ||
| 18 | --foreground: #ededed; | ||
| 19 | } | ||
| 20 | } | ||
| 21 | |||
| 22 | body { | ||
| 23 | background: var(--background); | ||
| 24 | color: var(--foreground); | ||
| 25 | font-family: Arial, Helvetica, sans-serif; | ||
| 26 | } | ||
