diff options
| author | yyamashita <yyamashita@mosquit.one> | 2026-05-08 23:37:51 +0900 |
|---|---|---|
| committer | yyamashita <yyamashita@mosquit.one> | 2026-05-08 23:37:51 +0900 |
| commit | d4d104cd604741ac0c308efe5050a0eec69bb389 (patch) | |
| tree | 4d9becba79e83e02ae93695f71e7fe4c908803e0 /app/app.css | |
Initial scaffold: React Router v7 + SQLite + Tailwind CSS v4
Diffstat (limited to 'app/app.css')
| -rw-r--r-- | app/app.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/app.css b/app/app.css new file mode 100644 index 0000000..99345d8 --- /dev/null +++ b/app/app.css @@ -0,0 +1,15 @@ +@import "tailwindcss"; + +@theme { + --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif, + "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +html, +body { + @apply bg-white dark:bg-gray-950; + + @media (prefers-color-scheme: dark) { + color-scheme: dark; + } +} |
