Files

20 lines
487 B
CSS
Raw Permalink Normal View History

2026-05-27 13:18:45 +02:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--foreground: #111827;
--background: #f9fafb;
}
body {
background: var(--background);
color: var(--foreground);
font-family: system-ui, -apple-system, sans-serif;
}
/* Bias badges */
.badge-bull { @apply bg-green-100 text-green-800 border border-green-200; }
.badge-bear { @apply bg-red-100 text-red-800 border border-red-200; }
.badge-neutral { @apply bg-gray-100 text-gray-700 border border-gray-200; }