diff options
| author | diogo464 <[email protected]> | 2025-08-11 11:51:39 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-08-11 11:51:39 +0100 |
| commit | 4af66f418b6837b6441b4e8eaf2d8ede585238b9 (patch) | |
| tree | 34a4e913a2848515166b2ac0489794419a33bfcc /frontend/app/globals.css | |
| parent | 0d3488a3811c8d58bd570af64cc29840df9ba439 (diff) | |
snapshot
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 | } | ||
