Spaces:
Running
Running
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap'); | |
| @import "tailwindcss"; | |
| @theme { | |
| --color-brand-50: #eff6ff; | |
| --color-brand-100: #dbeafe; | |
| --color-brand-500: #3b82f6; | |
| --color-brand-600: #2563eb; | |
| --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif; | |
| --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace; | |
| } | |
| body { | |
| font-family: var(--font-sans); | |
| background-color: #f1f5f9; /* slate-100 */ | |
| } | |
| /* Custom scrollbar for technical UI */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: transparent; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background-color: #cbd5e1; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background-color: #94a3b8; | |
| } | |