mirror of
https://github.com/caty21/forex-dashboard.git
synced 2026-07-27 20:37:45 +00:00
20 lines
487 B
CSS
20 lines
487 B
CSS
@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; }
|