← back to Trademarks Copyright
src/app/globals.css
35 lines
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: light dark;
}
body {
@apply bg-parchment text-ink antialiased;
font-family: Georgia, "Libre Caslon Text", serif;
}
.card {
@apply rounded-lg border border-ink/10 bg-white/80 shadow-sm backdrop-blur;
}
.btn {
@apply inline-flex items-center gap-2 rounded-md border border-ink/20 bg-ledger px-3 py-1.5 text-sm font-medium text-parchment transition hover:bg-ink disabled:opacity-50;
}
.btn-ghost {
@apply inline-flex items-center gap-2 rounded-md border border-ink/20 bg-white px-3 py-1.5 text-sm text-ink transition hover:bg-ink/5 disabled:opacity-50;
}
.tag {
@apply inline-block rounded border border-ink/15 bg-white px-2 py-0.5 text-xs uppercase tracking-wide text-ink/70;
}
input, select, textarea {
@apply rounded-md border border-ink/20 bg-white px-2 py-1 text-sm;
}
table { border-collapse: collapse; }